You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4673 lines
137KB

  1. #!/bin/sh
  2. #
  3. # Libav configure script
  4. #
  5. # Copyright (c) 2000-2002 Fabrice Bellard
  6. # Copyright (c) 2005-2008 Diego Biurrun
  7. # Copyright (c) 2005-2008 Mans Rullgard
  8. #
  9. # Prevent locale nonsense from breaking basic text processing.
  10. LC_ALL=C
  11. export LC_ALL
  12. # make sure we are running under a compatible shell
  13. # try to make this part work with most shells
  14. try_exec(){
  15. echo "Trying shell $1"
  16. type "$1" > /dev/null 2>&1 && exec "$@"
  17. }
  18. unset foo
  19. (: ${foo%%bar}) 2> /dev/null
  20. E1="$?"
  21. (: ${foo?}) 2> /dev/null
  22. E2="$?"
  23. if test "$E1" != 0 || test "$E2" = 0; then
  24. echo "Broken shell detected. Trying alternatives."
  25. export FF_CONF_EXEC
  26. if test "0$FF_CONF_EXEC" -lt 1; then
  27. FF_CONF_EXEC=1
  28. try_exec bash "$0" "$@"
  29. fi
  30. if test "0$FF_CONF_EXEC" -lt 2; then
  31. FF_CONF_EXEC=2
  32. try_exec ksh "$0" "$@"
  33. fi
  34. if test "0$FF_CONF_EXEC" -lt 3; then
  35. FF_CONF_EXEC=3
  36. try_exec /usr/xpg4/bin/sh "$0" "$@"
  37. fi
  38. echo "No compatible shell script interpreter found."
  39. echo "This configure script requires a POSIX-compatible shell"
  40. echo "such as bash or ksh."
  41. echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
  42. echo "Instead, install a working POSIX-compatible shell."
  43. echo "Disabling this configure test will create a broken Libav."
  44. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  45. echo "This bash version ($BASH_VERSION) is broken on your platform."
  46. echo "Upgrade to a later version if available."
  47. fi
  48. exit 1
  49. fi
  50. test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
  51. show_help(){
  52. cat <<EOF
  53. Usage: configure [options]
  54. Options: [defaults in brackets after descriptions]
  55. Help options:
  56. --help print this message
  57. --list-decoders show all available decoders
  58. --list-encoders show all available encoders
  59. --list-hwaccels show all available hardware accelerators
  60. --list-demuxers show all available demuxers
  61. --list-muxers show all available muxers
  62. --list-parsers show all available parsers
  63. --list-protocols show all available protocols
  64. --list-bsfs show all available bitstream filters
  65. --list-indevs show all available input devices
  66. --list-outdevs show all available output devices
  67. --list-filters show all available filters
  68. Standard options:
  69. --logfile=FILE log tests and output to FILE [config.log]
  70. --disable-logging do not log configure debug information
  71. --prefix=PREFIX install in PREFIX [$prefix]
  72. --bindir=DIR install binaries in DIR [PREFIX/bin]
  73. --datadir=DIR install data files in DIR [PREFIX/share/avconv]
  74. --docdir=DIR install documentation in DIR [PREFIX/share/doc/libav]
  75. --libdir=DIR install libs in DIR [PREFIX/lib]
  76. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  77. --incdir=DIR install includes in DIR [PREFIX/include]
  78. --mandir=DIR install man page in DIR [PREFIX/share/man]
  79. Licensing options:
  80. --enable-gpl allow use of GPL code, the resulting libs
  81. and binaries will be under GPL [no]
  82. --enable-version3 upgrade (L)GPL to version 3 [no]
  83. --enable-nonfree allow use of nonfree code, the resulting libs
  84. and binaries will be unredistributable [no]
  85. Configuration options:
  86. --disable-static do not build static libraries [no]
  87. --enable-shared build shared libraries [no]
  88. --enable-small optimize for size instead of speed
  89. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  90. --enable-gray enable full grayscale support (slower color)
  91. --disable-swscale-alpha disable alpha channel support in swscale
  92. --disable-all disable building components, libraries and programs
  93. Program options:
  94. --disable-programs do not build command line programs
  95. --disable-avconv disable avconv build
  96. --disable-avplay disable avplay build
  97. --disable-avprobe disable avprobe build
  98. --disable-avserver disable avserver build
  99. Component options:
  100. --disable-doc do not build documentation
  101. --disable-avdevice disable libavdevice build
  102. --disable-avcodec disable libavcodec build
  103. --disable-avformat disable libavformat build
  104. --disable-avutil disable libavutil build
  105. --disable-swscale disable libswscale build
  106. --disable-avfilter disable video filter support [no]
  107. --disable-avresample disable libavresample build [no]
  108. --disable-pthreads disable pthreads [auto]
  109. --disable-w32threads disable Win32 threads [auto]
  110. --disable-network disable network support [no]
  111. --disable-dct disable DCT code
  112. --disable-error-resilience disable error resilience code
  113. --disable-lsp disable LSP code
  114. --disable-lzo disable LZO decoder code
  115. --disable-mdct disable MDCT code
  116. --disable-rdft disable RDFT code
  117. --disable-fft disable FFT code
  118. Hardware accelerators:
  119. --enable-dxva2 enable DXVA2 code
  120. --enable-vaapi enable VAAPI code
  121. --enable-vda enable VDA code
  122. --enable-vdpau enable VDPAU code
  123. Individual component options:
  124. --disable-everything disable all components listed below
  125. --disable-encoder=NAME disable encoder NAME
  126. --enable-encoder=NAME enable encoder NAME
  127. --disable-encoders disable all encoders
  128. --disable-decoder=NAME disable decoder NAME
  129. --enable-decoder=NAME enable decoder NAME
  130. --disable-decoders disable all decoders
  131. --disable-hwaccel=NAME disable hwaccel NAME
  132. --enable-hwaccel=NAME enable hwaccel NAME
  133. --disable-hwaccels disable all hwaccels
  134. --disable-muxer=NAME disable muxer NAME
  135. --enable-muxer=NAME enable muxer NAME
  136. --disable-muxers disable all muxers
  137. --disable-demuxer=NAME disable demuxer NAME
  138. --enable-demuxer=NAME enable demuxer NAME
  139. --disable-demuxers disable all demuxers
  140. --enable-parser=NAME enable parser NAME
  141. --disable-parser=NAME disable parser NAME
  142. --disable-parsers disable all parsers
  143. --enable-bsf=NAME enable bitstream filter NAME
  144. --disable-bsf=NAME disable bitstream filter NAME
  145. --disable-bsfs disable all bitstream filters
  146. --enable-protocol=NAME enable protocol NAME
  147. --disable-protocol=NAME disable protocol NAME
  148. --disable-protocols disable all protocols
  149. --enable-indev=NAME enable input device NAME
  150. --disable-indev=NAME disable input device NAME
  151. --disable-indevs disable input devices
  152. --enable-outdev=NAME enable output device NAME
  153. --disable-outdev=NAME disable output device NAME
  154. --disable-outdevs disable output devices
  155. --disable-devices disable all devices
  156. --enable-filter=NAME enable filter NAME
  157. --disable-filter=NAME disable filter NAME
  158. --disable-filters disable all filters
  159. External library support:
  160. --enable-avisynth enable reading of AviSynth script files [no]
  161. --enable-bzlib enable bzlib [autodetect]
  162. --enable-frei0r enable frei0r video filtering
  163. --enable-gnutls enable gnutls [no]
  164. --enable-libcdio enable audio CD grabbing with libcdio
  165. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  166. and libraw1394 [no]
  167. --enable-libfaac enable AAC encoding via libfaac [no]
  168. --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
  169. --enable-libfreetype enable libfreetype [no]
  170. --enable-libgsm enable GSM de/encoding via libgsm [no]
  171. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  172. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  173. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  174. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  175. --enable-libopencv enable video filtering via libopencv [no]
  176. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  177. --enable-libopus enable Opus decoding via libopus [no]
  178. --enable-libpulse enable Pulseaudio input via libpulse [no]
  179. --enable-librtmp enable RTMP[E] support via librtmp [no]
  180. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  181. --enable-libspeex enable Speex de/encoding via libspeex [no]
  182. --enable-libtheora enable Theora encoding via libtheora [no]
  183. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  184. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  185. --enable-libvorbis enable Vorbis encoding via libvorbis [no]
  186. --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
  187. --enable-libwavpack enable wavpack encoding via libwavpack [no]
  188. --enable-libwebp enable WebP encoding via libwebp [no]
  189. --enable-libx264 enable H.264 encoding via x264 [no]
  190. --enable-libx265 enable HEVC encoding via x265 [no]
  191. --enable-libxavs enable AVS encoding via xavs [no]
  192. --enable-libxvid enable Xvid encoding via xvidcore,
  193. native MPEG-4/Xvid encoder exists [no]
  194. --enable-openssl enable openssl [no]
  195. --enable-x11grab enable X11 grabbing [no]
  196. --enable-zlib enable zlib [autodetect]
  197. Toolchain options:
  198. --arch=ARCH select architecture [$arch]
  199. --cpu=CPU select the minimum required CPU (affects
  200. instruction selection, may crash on older CPUs)
  201. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  202. --enable-cross-compile assume a cross-compiler is used
  203. --sysroot=PATH root of cross-build tree
  204. --sysinclude=PATH location of cross-build system headers
  205. --target-os=OS compiler targets OS [$target_os]
  206. --target-exec=CMD command to run executables on target
  207. --target-path=DIR path to view of build directory on target
  208. --target-samples=DIR path to samples directory on target
  209. --toolchain=NAME set tool defaults according to NAME
  210. --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
  211. --nm=NM use nm tool
  212. --ar=AR use archive tool AR [$ar_default]
  213. --as=AS use assembler AS [$as_default]
  214. --cc=CC use C compiler CC [$cc_default]
  215. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  216. --ld=LD use linker LD
  217. --pkg-config=PKGCONF use pkg-config PKGCONF [$pkg_config_default]
  218. --pkg-config-flags=FLAGS pass additional flags to pkgconf []
  219. --host-cc=HOSTCC use host C compiler HOSTCC
  220. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  221. --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
  222. --host-ld=HOSTLD use host linker HOSTLD
  223. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  224. --host-libs=HLIBS use libs HLIBS when linking for host
  225. --host-os=OS compiler host OS [$target_os]
  226. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  227. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  228. --extra-libs=ELIBS add ELIBS [$ELIBS]
  229. --extra-version=STRING version string suffix []
  230. --optflags=OPTFLAGS override optimization-related compiler flags
  231. --build-suffix=SUFFIX library name suffix []
  232. --enable-pic build position-independent code
  233. --enable-thumb compile for Thumb instruction set
  234. --enable-lto use link-time optimization
  235. Advanced options (experts only):
  236. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  237. --disable-symver disable symbol versioning
  238. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  239. --disable-safe-bitstream-reader
  240. disable buffer boundary checking in bitreaders
  241. (faster, but may crash)
  242. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  243. --enable-sram allow use of on-chip SRAM
  244. Optimization options (experts only):
  245. --disable-asm disable all assembler optimizations
  246. --disable-altivec disable AltiVec optimizations
  247. --disable-amd3dnow disable 3DNow! optimizations
  248. --disable-amd3dnowext disable 3DNow! extended optimizations
  249. --disable-mmx disable MMX optimizations
  250. --disable-mmxext disable MMXEXT optimizations
  251. --disable-sse disable SSE optimizations
  252. --disable-sse2 disable SSE2 optimizations
  253. --disable-sse3 disable SSE3 optimizations
  254. --disable-ssse3 disable SSSE3 optimizations
  255. --disable-sse4 disable SSE4 optimizations
  256. --disable-sse42 disable SSE4.2 optimizations
  257. --disable-avx disable AVX optimizations
  258. --disable-xop disable XOP optimizations
  259. --disable-fma3 disable FMA3 optimizations
  260. --disable-fma4 disable FMA4 optimizations
  261. --disable-avx2 disable AVX2 optimizations
  262. --disable-armv5te disable armv5te optimizations
  263. --disable-armv6 disable armv6 optimizations
  264. --disable-armv6t2 disable armv6t2 optimizations
  265. --disable-vfp disable VFP optimizations
  266. --disable-neon disable NEON optimizations
  267. --disable-inline-asm disable use of inline assembler
  268. --disable-yasm disable use of yasm assembler
  269. Developer options (useful when working on Libav itself):
  270. --disable-debug disable debugging symbols
  271. --enable-debug=LEVEL set the debug level [$debuglevel]
  272. --disable-optimizations disable compiler optimizations
  273. --enable-extra-warnings enable more compiler warnings
  274. --samples=PATH location of test samples for FATE, if not set use
  275. \$LIBAV_SAMPLES at make invocation time.
  276. --enable-neon-clobber-test check NEON registers for clobbering (should be
  277. used only for debugging purposes)
  278. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  279. should be used only for debugging purposes)
  280. --enable-random randomly enable/disable components
  281. --disable-random
  282. --enable-random=LIST randomly enable/disable specific components or
  283. --disable-random=LIST component groups. LIST is a comma-separated list
  284. of NAME[:PROB] entries where NAME is a component
  285. (group) and PROB the probability associated with
  286. NAME (default 0.5).
  287. --random-seed=VALUE seed value for --enable/disable-random
  288. NOTE: Object files are built at the place where configure is launched.
  289. EOF
  290. exit 0
  291. }
  292. quotes='""'
  293. log(){
  294. echo "$@" >> $logfile
  295. }
  296. log_file(){
  297. log BEGIN $1
  298. pr -n -t $1 >> $logfile
  299. log END $1
  300. }
  301. echolog(){
  302. log "$@"
  303. echo "$@"
  304. }
  305. warn(){
  306. log "WARNING: $*"
  307. WARNINGS="${WARNINGS}WARNING: $*\n"
  308. }
  309. die(){
  310. echolog "$@"
  311. cat <<EOF
  312. If you think configure made a mistake, make sure you are using the latest
  313. version from Git. If the latest version fails, report the problem to the
  314. libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
  315. EOF
  316. if disabled logging; then
  317. cat <<EOF
  318. Rerun configure with logging enabled (do not use --disable-logging), and
  319. include the log this produces with your report.
  320. EOF
  321. else
  322. cat <<EOF
  323. Include the log file "$logfile" produced by configure as this will help
  324. solving the problem.
  325. EOF
  326. fi
  327. exit 1
  328. }
  329. # Avoid locale weirdness, besides we really just want to translate ASCII.
  330. toupper(){
  331. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  332. }
  333. tolower(){
  334. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  335. }
  336. c_escape(){
  337. echo "$*" | sed 's/["\\]/\\\0/g'
  338. }
  339. sh_quote(){
  340. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  341. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  342. echo "$v"
  343. }
  344. cleanws(){
  345. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  346. }
  347. filter(){
  348. pat=$1
  349. shift
  350. for v; do
  351. eval "case $v in $pat) echo $v ;; esac"
  352. done
  353. }
  354. filter_out(){
  355. pat=$1
  356. shift
  357. for v; do
  358. eval "case $v in $pat) ;; *) echo $v ;; esac"
  359. done
  360. }
  361. map(){
  362. m=$1
  363. shift
  364. for v; do eval $m; done
  365. }
  366. add_suffix(){
  367. suffix=$1
  368. shift
  369. for v; do echo ${v}${suffix}; done
  370. }
  371. set_all(){
  372. value=$1
  373. shift
  374. for var in $*; do
  375. eval $var=$value
  376. done
  377. }
  378. set_weak(){
  379. value=$1
  380. shift
  381. for var; do
  382. eval : \${$var:=$value}
  383. done
  384. }
  385. sanitize_var_name(){
  386. echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
  387. }
  388. set_safe(){
  389. var=$1
  390. shift
  391. eval $(sanitize_var_name "$var")='$*'
  392. }
  393. get_safe(){
  394. eval echo \$$(sanitize_var_name "$1")
  395. }
  396. pushvar(){
  397. for pvar in $*; do
  398. eval level=\${${pvar}_level:=0}
  399. eval ${pvar}_${level}="\$$pvar"
  400. eval ${pvar}_level=$(($level+1))
  401. done
  402. }
  403. popvar(){
  404. for pvar in $*; do
  405. eval level=\${${pvar}_level:-0}
  406. test $level = 0 && continue
  407. eval level=$(($level-1))
  408. eval $pvar="\${${pvar}_${level}}"
  409. eval ${pvar}_level=$level
  410. eval unset ${pvar}_${level}
  411. done
  412. }
  413. enable(){
  414. set_all yes $*
  415. }
  416. disable(){
  417. set_all no $*
  418. }
  419. enable_weak(){
  420. set_weak yes $*
  421. }
  422. disable_weak(){
  423. set_weak no $*
  424. }
  425. enable_safe(){
  426. for var; do
  427. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  428. done
  429. }
  430. disable_safe(){
  431. for var; do
  432. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  433. done
  434. }
  435. do_enable_deep(){
  436. for var; do
  437. enabled $var && continue
  438. eval sel="\$${var}_select"
  439. eval sgs="\$${var}_suggest"
  440. pushvar var sgs
  441. enable_deep $sel
  442. popvar sgs
  443. enable_deep_weak $sgs
  444. popvar var
  445. done
  446. }
  447. enable_deep(){
  448. do_enable_deep $*
  449. enable $*
  450. }
  451. enable_deep_weak(){
  452. for var; do
  453. disabled $var && continue
  454. pushvar var
  455. do_enable_deep $var
  456. popvar var
  457. enable_weak $var
  458. done
  459. }
  460. enabled(){
  461. test "${1#!}" = "$1" && op== || op=!=
  462. eval test "x\$${1#!}" $op "xyes"
  463. }
  464. disabled(){
  465. test "${1#!}" = "$1" && op== || op=!=
  466. eval test "x\$${1#!}" $op "xno"
  467. }
  468. enabled_all(){
  469. for opt; do
  470. enabled $opt || return 1
  471. done
  472. }
  473. disabled_all(){
  474. for opt; do
  475. disabled $opt || return 1
  476. done
  477. }
  478. enabled_any(){
  479. for opt; do
  480. enabled $opt && return 0
  481. done
  482. }
  483. disabled_any(){
  484. for opt; do
  485. disabled $opt && return 0
  486. done
  487. return 1
  488. }
  489. set_default(){
  490. for opt; do
  491. eval : \${$opt:=\$${opt}_default}
  492. done
  493. }
  494. is_in(){
  495. value=$1
  496. shift
  497. for var in $*; do
  498. [ $var = $value ] && return 0
  499. done
  500. return 1
  501. }
  502. do_check_deps(){
  503. for cfg; do
  504. cfg="${cfg#!}"
  505. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  506. disabled ${cfg}_checking && continue
  507. enable ${cfg}_checking
  508. append allopts $cfg
  509. eval dep_all="\$${cfg}_deps"
  510. eval dep_any="\$${cfg}_deps_any"
  511. eval dep_sel="\$${cfg}_select"
  512. eval dep_sgs="\$${cfg}_suggest"
  513. eval dep_ifa="\$${cfg}_if"
  514. eval dep_ifn="\$${cfg}_if_any"
  515. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  516. do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  517. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  518. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  519. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  520. enabled_all $dep_all || disable $cfg
  521. enabled_any $dep_any || disable $cfg
  522. disabled_any $dep_sel && disable $cfg
  523. if enabled $cfg; then
  524. enable_deep $dep_sel
  525. enable_deep_weak $dep_sgs
  526. fi
  527. disable ${cfg}_checking
  528. done
  529. }
  530. check_deps(){
  531. unset allopts
  532. do_check_deps "$@"
  533. for cfg in $allopts; do
  534. enabled $cfg || continue
  535. eval dep_extralibs="\$${cfg}_extralibs"
  536. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  537. done
  538. }
  539. print_config(){
  540. pfx=$1
  541. files=$2
  542. shift 2
  543. map 'eval echo "$v \${$v:-no}"' "$@" |
  544. awk "BEGIN { split(\"$files\", files) }
  545. {
  546. c = \"$pfx\" toupper(\$1);
  547. v = \$2;
  548. sub(/yes/, 1, v);
  549. sub(/no/, 0, v);
  550. for (f in files) {
  551. file = files[f];
  552. if (file ~ /\\.h\$/) {
  553. printf(\"#define %s %d\\n\", c, v) >>file;
  554. } else if (file ~ /\\.asm\$/) {
  555. printf(\"%%define %s %d\\n\", c, v) >>file;
  556. } else if (file ~ /\\.mak\$/) {
  557. n = -v ? \"\" : \"!\";
  558. printf(\"%s%s=yes\\n\", n, c) >>file;
  559. }
  560. }
  561. }"
  562. }
  563. print_enabled(){
  564. suf=$1
  565. shift
  566. for v; do
  567. enabled $v && printf "%s\n" ${v%$suf};
  568. done
  569. }
  570. append(){
  571. var=$1
  572. shift
  573. eval "$var=\"\$$var $*\""
  574. }
  575. prepend(){
  576. var=$1
  577. shift
  578. eval "$var=\"$* \$$var\""
  579. }
  580. add_cppflags(){
  581. append CPPFLAGS "$@"
  582. }
  583. add_cflags(){
  584. append CFLAGS $($cflags_filter "$@")
  585. }
  586. add_asflags(){
  587. append ASFLAGS $($asflags_filter "$@")
  588. }
  589. add_ldflags(){
  590. append LDFLAGS $($ldflags_filter "$@")
  591. }
  592. add_stripflags(){
  593. append STRIPFLAGS "$@"
  594. }
  595. add_extralibs(){
  596. prepend extralibs $($ldflags_filter "$@")
  597. }
  598. add_host_cppflags(){
  599. append host_cppflags "$@"
  600. }
  601. add_host_cflags(){
  602. append host_cflags $($host_cflags_filter "$@")
  603. }
  604. add_host_ldflags(){
  605. append host_ldflags $($host_ldflags_filter "$@")
  606. }
  607. add_compat(){
  608. append compat_objs $1
  609. shift
  610. map 'add_cppflags -D$v' "$@"
  611. }
  612. check_cmd(){
  613. log "$@"
  614. "$@" >> $logfile 2>&1
  615. }
  616. cc_o(){
  617. eval printf '%s\\n' $CC_O
  618. }
  619. cc_e(){
  620. eval printf '%s\\n' $CC_E
  621. }
  622. check_cc(){
  623. log check_cc "$@"
  624. cat > $TMPC
  625. log_file $TMPC
  626. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  627. }
  628. check_cpp(){
  629. log check_cpp "$@"
  630. cat > $TMPC
  631. log_file $TMPC
  632. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  633. }
  634. as_o(){
  635. eval printf '%s\\n' $AS_O
  636. }
  637. check_as(){
  638. log check_as "$@"
  639. cat > $TMPS
  640. log_file $TMPS
  641. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
  642. }
  643. check_inline_asm(){
  644. log check_inline_asm "$@"
  645. name="$1"
  646. code="$2"
  647. shift 2
  648. disable $name
  649. check_cc "$@" <<EOF && enable $name
  650. void foo(void){ __asm__ volatile($code); }
  651. EOF
  652. }
  653. check_insn(){
  654. log check_insn "$@"
  655. check_inline_asm ${1}_inline "\"$2\""
  656. echo "$2" | check_as && enable ${1}_external || disable ${1}_external
  657. }
  658. check_yasm(){
  659. log check_yasm "$@"
  660. echo "$1" > $TMPS
  661. log_file $TMPS
  662. shift 1
  663. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  664. }
  665. ld_o(){
  666. eval printf '%s\\n' $LD_O
  667. }
  668. check_ld(){
  669. log check_ld "$@"
  670. flags=$(filter_out '-l*' "$@")
  671. libs=$(filter '-l*' "$@")
  672. check_cc $($cflags_filter $flags) || return
  673. flags=$($ldflags_filter $flags)
  674. libs=$($ldflags_filter $libs)
  675. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  676. }
  677. print_include(){
  678. hdr=$1
  679. test "${hdr%.h}" = "${hdr}" &&
  680. echo "#include $hdr" ||
  681. echo "#include <$hdr>"
  682. }
  683. check_code(){
  684. log check_code "$@"
  685. check=$1
  686. headers=$2
  687. code=$3
  688. shift 3
  689. {
  690. for hdr in $headers; do
  691. print_include $hdr
  692. done
  693. echo "int main(void) { $code; return 0; }"
  694. } | check_$check "$@"
  695. }
  696. check_cppflags(){
  697. log check_cppflags "$@"
  698. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  699. int x;
  700. EOF
  701. }
  702. test_cflags(){
  703. log test_cflags "$@"
  704. set -- $($cflags_filter "$@")
  705. check_cc "$@" <<EOF
  706. int x;
  707. EOF
  708. }
  709. check_cflags(){
  710. log check_cflags "$@"
  711. test_cflags "$@" && add_cflags "$@"
  712. }
  713. test_ldflags(){
  714. log test_ldflags "$@"
  715. check_ld "$@" <<EOF
  716. int main(void){ return 0; }
  717. EOF
  718. }
  719. check_ldflags(){
  720. log check_ldflags "$@"
  721. test_ldflags "$@" && add_ldflags "$@"
  722. }
  723. test_stripflags(){
  724. log test_stripflags "$@"
  725. # call check_cc to get a fresh TMPO
  726. check_cc <<EOF
  727. int main(void) { return 0; }
  728. EOF
  729. check_cmd $strip $STRIPFLAGS "$@" $TMPO
  730. }
  731. check_stripflags(){
  732. log check_stripflags "$@"
  733. test_stripflags "$@" && add_stripflags "$@"
  734. }
  735. check_header(){
  736. log check_header "$@"
  737. header=$1
  738. shift
  739. disable_safe $header
  740. check_cpp "$@" <<EOF && enable_safe $header
  741. #include <$header>
  742. int x;
  743. EOF
  744. }
  745. check_func(){
  746. log check_func "$@"
  747. func=$1
  748. shift
  749. disable $func
  750. check_ld "$@" <<EOF && enable $func
  751. extern int $func();
  752. int main(void){ $func(); }
  753. EOF
  754. }
  755. check_mathfunc(){
  756. log check_mathfunc "$@"
  757. func=$1
  758. narg=$2
  759. shift 2
  760. test $narg = 2 && args="f, g" || args="f"
  761. disable $func
  762. check_ld "$@" <<EOF && enable $func
  763. #include <math.h>
  764. float foo(float f, float g) { return $func($args); }
  765. int main(void){ return 0; }
  766. EOF
  767. }
  768. check_func_headers(){
  769. log check_func_headers "$@"
  770. headers=$1
  771. funcs=$2
  772. shift 2
  773. {
  774. for hdr in $headers; do
  775. print_include $hdr
  776. done
  777. for func in $funcs; do
  778. echo "long check_$func(void) { return (long) $func; }"
  779. done
  780. echo "int main(void) { return 0; }"
  781. } | check_ld "$@" && enable $funcs && enable_safe $headers
  782. }
  783. check_cpp_condition(){
  784. log check_cpp_condition "$@"
  785. header=$1
  786. condition=$2
  787. shift 2
  788. check_cpp "$@" <<EOF
  789. #include <$header>
  790. #if !($condition)
  791. #error "unsatisfied condition: $condition"
  792. #endif
  793. EOF
  794. }
  795. check_lib(){
  796. log check_lib "$@"
  797. header="$1"
  798. func="$2"
  799. shift 2
  800. check_header $header && check_func $func "$@" && add_extralibs "$@"
  801. }
  802. check_lib2(){
  803. log check_lib2 "$@"
  804. headers="$1"
  805. funcs="$2"
  806. shift 2
  807. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  808. }
  809. check_pkg_config(){
  810. log check_pkg_config "$@"
  811. pkg="$1"
  812. headers="$2"
  813. funcs="$3"
  814. shift 3
  815. check_cmd $pkg_config --exists --print-errors $pkg || return
  816. pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
  817. pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
  818. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  819. set_safe ${pkg}_cflags $pkg_cflags &&
  820. set_safe ${pkg}_libs $pkg_libs
  821. }
  822. check_exec(){
  823. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  824. }
  825. check_exec_crash(){
  826. code=$(cat)
  827. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  828. # are safe but may not be available everywhere. Thus we use
  829. # raise(SIGTERM) instead. The check is run in a subshell so we
  830. # can redirect the "Terminated" message from the shell. SIGBUS
  831. # is not defined by standard C so it is used conditionally.
  832. (check_exec "$@") >> $logfile 2>&1 <<EOF
  833. #include <signal.h>
  834. static void sighandler(int sig){
  835. raise(SIGTERM);
  836. }
  837. int foo(void){
  838. $code
  839. }
  840. int (*func_ptr)(void) = foo;
  841. int main(void){
  842. signal(SIGILL, sighandler);
  843. signal(SIGFPE, sighandler);
  844. signal(SIGSEGV, sighandler);
  845. #ifdef SIGBUS
  846. signal(SIGBUS, sighandler);
  847. #endif
  848. return func_ptr();
  849. }
  850. EOF
  851. }
  852. check_type(){
  853. log check_type "$@"
  854. headers=$1
  855. type=$2
  856. shift 2
  857. disable_safe "$type"
  858. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  859. }
  860. check_struct(){
  861. log check_struct "$@"
  862. headers=$1
  863. struct=$2
  864. member=$3
  865. shift 3
  866. disable_safe "${struct}_${member}"
  867. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  868. enable_safe "${struct}_${member}"
  869. }
  870. check_builtin(){
  871. log check_builtin "$@"
  872. name=$1
  873. headers=$2
  874. builtin=$3
  875. shift 3
  876. disable "$name"
  877. check_code ld "$headers" "$builtin" "$@" && enable "$name"
  878. }
  879. check_compile_assert(){
  880. log check_compile_assert "$@"
  881. name=$1
  882. headers=$2
  883. condition=$3
  884. shift 3
  885. disable "$name"
  886. check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
  887. }
  888. require(){
  889. name="$1"
  890. header="$2"
  891. func="$3"
  892. shift 3
  893. check_lib $header $func "$@" || die "ERROR: $name not found"
  894. }
  895. require2(){
  896. name="$1"
  897. headers="$2"
  898. func="$3"
  899. shift 3
  900. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  901. }
  902. require_pkg_config(){
  903. pkg="$1"
  904. check_pkg_config "$@" || die "ERROR: $pkg not found"
  905. add_cflags $(get_safe ${pkg}_cflags)
  906. add_extralibs $(get_safe ${pkg}_libs)
  907. }
  908. hostcc_e(){
  909. eval printf '%s\\n' $HOSTCC_E
  910. }
  911. hostcc_o(){
  912. eval printf '%s\\n' $HOSTCC_O
  913. }
  914. check_host_cc(){
  915. log check_host_cc "$@"
  916. cat > $TMPC
  917. log_file $TMPC
  918. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  919. }
  920. check_host_cpp(){
  921. log check_host_cpp "$@"
  922. cat > $TMPC
  923. log_file $TMPC
  924. check_cmd $host_cc $HOSTCPPFLAGS $HOSTCFLAGS "$@" $(hostcc_e $TMPO) $TMPC
  925. }
  926. check_host_cppflags(){
  927. log check_host_cppflags "$@"
  928. check_host_cc "$@" <<EOF && append host_cppflags "$@"
  929. int x;
  930. EOF
  931. }
  932. check_host_cflags(){
  933. log check_host_cflags "$@"
  934. set -- $($host_cflags_filter "$@")
  935. check_host_cc "$@" <<EOF && append host_cflags "$@"
  936. int x;
  937. EOF
  938. }
  939. check_host_cpp_condition(){
  940. log check_host_cpp_condition "$@"
  941. header=$1
  942. condition=$2
  943. shift 2
  944. check_host_cpp "$@" <<EOF
  945. #include <$header>
  946. #if !($condition)
  947. #error "unsatisfied condition: $condition"
  948. #endif
  949. EOF
  950. }
  951. apply(){
  952. file=$1
  953. shift
  954. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  955. }
  956. cp_if_changed(){
  957. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  958. mkdir -p "$(dirname $2)"
  959. $cp_f "$1" "$2"
  960. }
  961. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  962. # system-dependent things.
  963. COMPONENT_LIST="
  964. bsfs
  965. decoders
  966. demuxers
  967. encoders
  968. filters
  969. hwaccels
  970. indevs
  971. muxers
  972. outdevs
  973. parsers
  974. protocols
  975. "
  976. EXAMPLE_LIST="
  977. avcodec_example
  978. filter_audio_example
  979. metadata_example
  980. output_example
  981. transcode_aac_example
  982. "
  983. EXTERNAL_LIBRARY_LIST="
  984. avisynth
  985. bzlib
  986. frei0r
  987. gnutls
  988. libcdio
  989. libdc1394
  990. libfaac
  991. libfdk_aac
  992. libfreetype
  993. libgsm
  994. libilbc
  995. libmp3lame
  996. libopencore_amrnb
  997. libopencore_amrwb
  998. libopencv
  999. libopenjpeg
  1000. libopus
  1001. libpulse
  1002. librtmp
  1003. libschroedinger
  1004. libspeex
  1005. libtheora
  1006. libvo_aacenc
  1007. libvo_amrwbenc
  1008. libvorbis
  1009. libvpx
  1010. libwavpack
  1011. libwebp
  1012. libx264
  1013. libx265
  1014. libxavs
  1015. libxvid
  1016. openssl
  1017. x11grab
  1018. zlib
  1019. "
  1020. FEATURE_LIST="
  1021. gray
  1022. hardcoded_tables
  1023. runtime_cpudetect
  1024. safe_bitstream_reader
  1025. shared
  1026. small
  1027. sram
  1028. static
  1029. swscale_alpha
  1030. "
  1031. HWACCEL_LIST="
  1032. dxva2
  1033. vaapi
  1034. vda
  1035. vdpau
  1036. "
  1037. LIBRARY_LIST="
  1038. avcodec
  1039. avdevice
  1040. avfilter
  1041. avformat
  1042. avresample
  1043. avutil
  1044. swscale
  1045. "
  1046. LICENSE_LIST="
  1047. gpl
  1048. nonfree
  1049. version3
  1050. "
  1051. PROGRAM_LIST="
  1052. avconv
  1053. avplay
  1054. avprobe
  1055. avserver
  1056. "
  1057. SUBSYSTEM_LIST="
  1058. dct
  1059. doc
  1060. error_resilience
  1061. fft
  1062. lsp
  1063. lzo
  1064. mdct
  1065. network
  1066. rdft
  1067. "
  1068. CONFIG_LIST="
  1069. $COMPONENT_LIST
  1070. $EXAMPLE_LIST
  1071. $EXTERNAL_LIBRARY_LIST
  1072. $FEATURE_LIST
  1073. $HWACCEL_LIST
  1074. $LICENSE_LIST
  1075. $LIBRARY_LIST
  1076. $PROGRAM_LIST
  1077. $SUBSYSTEM_LIST
  1078. memalign_hack
  1079. neon_clobber_test
  1080. pic
  1081. pod2man
  1082. texi2html
  1083. thumb
  1084. xmm_clobber_test
  1085. "
  1086. THREADS_LIST="
  1087. pthreads
  1088. w32threads
  1089. "
  1090. ATOMICS_LIST="
  1091. atomics_gcc
  1092. atomics_suncc
  1093. atomics_win32
  1094. "
  1095. ARCH_LIST="
  1096. aarch64
  1097. alpha
  1098. arm
  1099. avr32
  1100. avr32_ap
  1101. avr32_uc
  1102. bfin
  1103. ia64
  1104. m68k
  1105. mips
  1106. mips64
  1107. parisc
  1108. ppc
  1109. ppc64
  1110. s390
  1111. sh4
  1112. sparc
  1113. sparc64
  1114. tilegx
  1115. tilepro
  1116. tomi
  1117. x86
  1118. x86_32
  1119. x86_64
  1120. "
  1121. ARCH_EXT_LIST_ARM="
  1122. armv5te
  1123. armv6
  1124. armv6t2
  1125. armv8
  1126. neon
  1127. vfp
  1128. vfpv3
  1129. "
  1130. ARCH_EXT_LIST_X86_SIMD="
  1131. amd3dnow
  1132. amd3dnowext
  1133. avx
  1134. avx2
  1135. fma3
  1136. fma4
  1137. mmx
  1138. mmxext
  1139. sse
  1140. sse2
  1141. sse3
  1142. sse4
  1143. sse42
  1144. ssse3
  1145. xop
  1146. "
  1147. ARCH_EXT_LIST_PPC="
  1148. altivec
  1149. dcbzl
  1150. ldbrx
  1151. ppc4xx
  1152. "
  1153. ARCH_EXT_LIST_X86="
  1154. $ARCH_EXT_LIST_X86_SIMD
  1155. cpunop
  1156. i686
  1157. "
  1158. ARCH_EXT_LIST="
  1159. $ARCH_EXT_LIST_ARM
  1160. $ARCH_EXT_LIST_PPC
  1161. $ARCH_EXT_LIST_X86
  1162. loongson
  1163. vis
  1164. "
  1165. ARCH_FEATURES="
  1166. aligned_stack
  1167. fast_64bit
  1168. fast_clz
  1169. fast_cmov
  1170. local_aligned_8
  1171. local_aligned_16
  1172. "
  1173. BUILTIN_LIST="
  1174. atomic_cas_ptr
  1175. machine_rw_barrier
  1176. MemoryBarrier
  1177. mm_empty
  1178. rdtsc
  1179. sync_val_compare_and_swap
  1180. "
  1181. HAVE_LIST_CMDLINE="
  1182. inline_asm
  1183. symver
  1184. yasm
  1185. "
  1186. HAVE_LIST_PUB="
  1187. bigendian
  1188. fast_unaligned
  1189. "
  1190. HEADERS_LIST="
  1191. alsa_asoundlib_h
  1192. altivec_h
  1193. arpa_inet_h
  1194. cdio_paranoia_h
  1195. cdio_paranoia_paranoia_h
  1196. dev_bktr_ioctl_bt848_h
  1197. dev_bktr_ioctl_meteor_h
  1198. dev_ic_bt8xx_h
  1199. dev_video_bktr_ioctl_bt848_h
  1200. dev_video_meteor_ioctl_meteor_h
  1201. direct_h
  1202. dlfcn_h
  1203. dxva_h
  1204. gsm_h
  1205. io_h
  1206. mach_mach_time_h
  1207. machine_ioctl_bt848_h
  1208. machine_ioctl_meteor_h
  1209. malloc_h
  1210. poll_h
  1211. sndio_h
  1212. soundcard_h
  1213. sys_mman_h
  1214. sys_param_h
  1215. sys_resource_h
  1216. sys_select_h
  1217. sys_soundcard_h
  1218. sys_time_h
  1219. sys_un_h
  1220. sys_videoio_h
  1221. unistd_h
  1222. windows_h
  1223. winsock2_h
  1224. "
  1225. MATH_FUNCS="
  1226. atanf
  1227. atan2f
  1228. cbrtf
  1229. cosf
  1230. exp2
  1231. exp2f
  1232. expf
  1233. isinf
  1234. isnan
  1235. ldexpf
  1236. llrint
  1237. llrintf
  1238. log2
  1239. log2f
  1240. log10f
  1241. lrint
  1242. lrintf
  1243. powf
  1244. rint
  1245. round
  1246. roundf
  1247. sinf
  1248. trunc
  1249. truncf
  1250. "
  1251. SYSTEM_FUNCS="
  1252. aligned_malloc
  1253. closesocket
  1254. CommandLineToArgvW
  1255. CryptGenRandom
  1256. dlopen
  1257. fcntl
  1258. flt_lim
  1259. fork
  1260. getaddrinfo
  1261. gethrtime
  1262. getopt
  1263. GetProcessAffinityMask
  1264. GetProcessMemoryInfo
  1265. GetProcessTimes
  1266. getrusage
  1267. getservbyport
  1268. GetSystemTimeAsFileTime
  1269. gettimeofday
  1270. inet_aton
  1271. isatty
  1272. jack_port_get_latency_range
  1273. localtime_r
  1274. mach_absolute_time
  1275. MapViewOfFile
  1276. memalign
  1277. mkstemp
  1278. mmap
  1279. mprotect
  1280. nanosleep
  1281. posix_memalign
  1282. sched_getaffinity
  1283. SetConsoleTextAttribute
  1284. setmode
  1285. setrlimit
  1286. Sleep
  1287. strerror_r
  1288. strptime
  1289. sysconf
  1290. sysctl
  1291. usleep
  1292. VirtualAlloc
  1293. "
  1294. TOOLCHAIN_FEATURES="
  1295. asm_mod_q
  1296. attribute_may_alias
  1297. attribute_packed
  1298. ebp_available
  1299. ebx_available
  1300. gnu_as
  1301. ibm_asm
  1302. inline_asm_labels
  1303. pragma_deprecated
  1304. symver_asm_label
  1305. symver_gnu_asm
  1306. vfp_args
  1307. xform_asm
  1308. xmm_clobbers
  1309. "
  1310. TYPES_LIST="
  1311. socklen_t
  1312. struct_addrinfo
  1313. struct_group_source_req
  1314. struct_ip_mreq_source
  1315. struct_ipv6_mreq
  1316. struct_pollfd
  1317. struct_rusage_ru_maxrss
  1318. struct_sockaddr_in6
  1319. struct_sockaddr_sa_len
  1320. struct_sockaddr_storage
  1321. struct_v4l2_frmivalenum_discrete
  1322. "
  1323. HAVE_LIST="
  1324. $ARCH_EXT_LIST
  1325. $(add_suffix _external $ARCH_EXT_LIST)
  1326. $(add_suffix _inline $ARCH_EXT_LIST)
  1327. $ARCH_FEATURES
  1328. $ATOMICS_LIST
  1329. $BUILTIN_LIST
  1330. $HAVE_LIST_CMDLINE
  1331. $HAVE_LIST_PUB
  1332. $HEADERS_LIST
  1333. $MATH_FUNCS
  1334. $SYSTEM_FUNCS
  1335. $THREADS_LIST
  1336. $TOOLCHAIN_FEATURES
  1337. $TYPES_LIST
  1338. atomics_native
  1339. dos_paths
  1340. libc_msvcrt
  1341. libdc1394_1
  1342. libdc1394_2
  1343. sdl
  1344. threads
  1345. vdpau_x11
  1346. xlib
  1347. "
  1348. # options emitted with CONFIG_ prefix but not available on the command line
  1349. CONFIG_EXTRA="
  1350. aandcttables
  1351. ac3dsp
  1352. audio_frame_queue
  1353. cabac
  1354. dsputil
  1355. gcrypt
  1356. golomb
  1357. gplv3
  1358. h263dsp
  1359. h264chroma
  1360. h264dsp
  1361. h264pred
  1362. h264qpel
  1363. hpeldsp
  1364. huffman
  1365. intrax8
  1366. lgplv3
  1367. lpc
  1368. mpegaudio
  1369. mpegaudiodsp
  1370. mpegvideo
  1371. mpegvideoenc
  1372. nettle
  1373. rangecoder
  1374. riffdec
  1375. riffenc
  1376. rtpdec
  1377. rtpenc_chain
  1378. sinewin
  1379. tpeldsp
  1380. videodsp
  1381. vp3dsp
  1382. "
  1383. CMDLINE_SELECT="
  1384. $ARCH_EXT_LIST
  1385. $CONFIG_LIST
  1386. $HAVE_LIST_CMDLINE
  1387. $THREADS_LIST
  1388. asm
  1389. cross_compile
  1390. debug
  1391. extra_warnings
  1392. logging
  1393. lto
  1394. optimizations
  1395. "
  1396. PATHS_LIST="
  1397. bindir
  1398. datadir
  1399. docdir
  1400. incdir
  1401. libdir
  1402. mandir
  1403. prefix
  1404. shlibdir
  1405. "
  1406. CMDLINE_SET="
  1407. $PATHS_LIST
  1408. ar
  1409. arch
  1410. as
  1411. build_suffix
  1412. cc
  1413. cpu
  1414. cross_prefix
  1415. dep_cc
  1416. extra_version
  1417. host_cc
  1418. host_cflags
  1419. host_ld
  1420. host_ldflags
  1421. host_libs
  1422. host_os
  1423. ld
  1424. logfile
  1425. malloc_prefix
  1426. nm
  1427. optflags
  1428. pkg_config
  1429. pkg_config_flags
  1430. random_seed
  1431. samples
  1432. sysinclude
  1433. sysroot
  1434. target_exec
  1435. target_os
  1436. target_path
  1437. target_samples
  1438. toolchain
  1439. "
  1440. CMDLINE_APPEND="
  1441. extra_cflags
  1442. host_cppflags
  1443. "
  1444. # code dependency declarations
  1445. # architecture extensions
  1446. armv5te_deps="arm"
  1447. armv6_deps="arm"
  1448. armv6t2_deps="arm"
  1449. armv8_deps="aarch64"
  1450. neon_deps_any="aarch64 arm"
  1451. vfp_deps_any="aarch64 arm"
  1452. vfpv3_deps="vfp"
  1453. map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
  1454. altivec_deps="ppc"
  1455. ppc4xx_deps="ppc"
  1456. cpunop_deps="i686"
  1457. x86_64_select="i686"
  1458. x86_64_suggest="fast_cmov"
  1459. amd3dnow_deps="mmx"
  1460. amd3dnowext_deps="amd3dnow"
  1461. i686_deps="x86"
  1462. mmx_deps="x86"
  1463. mmxext_deps="mmx"
  1464. sse_deps="mmxext"
  1465. sse2_deps="sse"
  1466. sse3_deps="sse2"
  1467. ssse3_deps="sse3"
  1468. sse4_deps="ssse3"
  1469. sse42_deps="sse4"
  1470. avx_deps="sse42"
  1471. xop_deps="avx"
  1472. fma3_deps="avx"
  1473. fma4_deps="avx"
  1474. avx2_deps="avx"
  1475. mmx_external_deps="yasm"
  1476. mmx_inline_deps="inline_asm"
  1477. mmx_suggest="mmx_external mmx_inline"
  1478. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
  1479. eval dep=\$${ext}_deps
  1480. eval ${ext}_external_deps='"${dep}_external"'
  1481. eval ${ext}_inline_deps='"${dep}_inline"'
  1482. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1483. done
  1484. aligned_stack_if_any="aarch64 ppc x86"
  1485. fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1486. fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
  1487. fast_unaligned_if_any="aarch64 ppc x86"
  1488. need_memalign="altivec neon sse"
  1489. # system capabilities
  1490. log2_deps="!libc_msvcrt"
  1491. symver_if_any="symver_asm_label symver_gnu_asm"
  1492. # threading support
  1493. atomics_gcc_if="sync_val_compare_and_swap"
  1494. atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
  1495. atomics_win32_if="MemoryBarrier"
  1496. atomics_native_if_any="$ATOMICS_LIST"
  1497. w32threads_deps="atomics_native"
  1498. threads_if_any="$THREADS_LIST"
  1499. # subsystems
  1500. dct_select="rdft"
  1501. error_resilience_select="dsputil"
  1502. mdct_select="fft"
  1503. rdft_select="fft"
  1504. mpegaudio_select="mpegaudiodsp"
  1505. mpegaudiodsp_select="dct"
  1506. mpegvideo_select="dsputil hpeldsp videodsp"
  1507. mpegvideoenc_select="dsputil mpegvideo"
  1508. # decoders / encoders
  1509. aac_decoder_select="mdct sinewin"
  1510. aac_encoder_select="audio_frame_queue mdct sinewin"
  1511. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1512. ac3_decoder_select="mdct ac3dsp ac3_parser dsputil"
  1513. ac3_encoder_select="mdct ac3dsp dsputil"
  1514. ac3_fixed_encoder_select="mdct ac3dsp dsputil"
  1515. aic_decoder_select="dsputil golomb"
  1516. alac_encoder_select="lpc"
  1517. als_decoder_select="dsputil"
  1518. amrnb_decoder_select="lsp"
  1519. amrwb_decoder_select="lsp"
  1520. amv_decoder_select="sp5x_decoder"
  1521. ape_decoder_select="dsputil"
  1522. asv1_decoder_select="dsputil"
  1523. asv1_encoder_select="dsputil"
  1524. asv2_decoder_select="dsputil"
  1525. asv2_encoder_select="dsputil"
  1526. atrac1_decoder_select="mdct sinewin"
  1527. atrac3_decoder_select="mdct"
  1528. atrac3p_decoder_select="mdct sinewin"
  1529. bink_decoder_select="dsputil hpeldsp"
  1530. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1531. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1532. cavs_decoder_select="dsputil golomb h264chroma videodsp"
  1533. cllc_decoder_select="dsputil"
  1534. comfortnoise_encoder_select="lpc"
  1535. cook_decoder_select="dsputil mdct sinewin"
  1536. cscd_decoder_select="lzo"
  1537. cscd_decoder_suggest="zlib"
  1538. dca_decoder_select="mdct"
  1539. dnxhd_decoder_select="dsputil"
  1540. dnxhd_encoder_select="aandcttables dsputil mpegvideoenc"
  1541. dvvideo_decoder_select="dsputil"
  1542. dvvideo_encoder_select="dsputil"
  1543. dxa_decoder_deps="zlib"
  1544. eac3_decoder_select="ac3_decoder"
  1545. eac3_encoder_select="ac3_encoder"
  1546. eamad_decoder_select="aandcttables dsputil mpegvideo"
  1547. eatgq_decoder_select="aandcttables dsputil"
  1548. eatqi_decoder_select="aandcttables dsputil error_resilience mpegvideo"
  1549. exr_decoder_deps="zlib"
  1550. ffv1_decoder_select="golomb rangecoder"
  1551. ffv1_encoder_select="rangecoder"
  1552. ffvhuff_decoder_select="huffyuv_decoder"
  1553. ffvhuff_encoder_select="huffyuv_encoder"
  1554. fic_decoder_select="dsputil golomb"
  1555. flac_decoder_select="golomb"
  1556. flac_encoder_select="dsputil golomb lpc"
  1557. flashsv_decoder_deps="zlib"
  1558. flashsv_encoder_deps="zlib"
  1559. flashsv2_decoder_deps="zlib"
  1560. flv_decoder_select="h263_decoder"
  1561. flv_encoder_select="h263_encoder"
  1562. fourxm_decoder_select="dsputil"
  1563. fraps_decoder_select="dsputil huffman"
  1564. g2m_decoder_deps="zlib"
  1565. g2m_decoder_select="dsputil"
  1566. h261_decoder_select="error_resilience mpegvideo"
  1567. h261_encoder_select="aandcttables mpegvideoenc"
  1568. h263_decoder_select="error_resilience h263_parser h263dsp mpegvideo"
  1569. h263_encoder_select="aandcttables h263dsp mpegvideoenc"
  1570. h263i_decoder_select="h263_decoder"
  1571. h263p_encoder_select="h263_encoder"
  1572. h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel videodsp"
  1573. h264_decoder_suggest="error_resilience"
  1574. hevc_decoder_select="cabac dsputil golomb videodsp"
  1575. huffyuv_decoder_select="dsputil"
  1576. huffyuv_encoder_select="dsputil huffman"
  1577. iac_decoder_select="imc_decoder"
  1578. imc_decoder_select="dsputil fft mdct sinewin"
  1579. indeo3_decoder_select="hpeldsp"
  1580. interplay_video_decoder_select="hpeldsp"
  1581. jpegls_decoder_select="golomb mjpeg_decoder"
  1582. jpegls_encoder_select="golomb"
  1583. jv_decoder_select="dsputil"
  1584. lagarith_decoder_select="dsputil"
  1585. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1586. loco_decoder_select="golomb"
  1587. mdec_decoder_select="dsputil error_resilience mpegvideo"
  1588. metasound_decoder_select="lsp mdct sinewin"
  1589. mimic_decoder_select="dsputil hpeldsp"
  1590. mjpeg_decoder_select="dsputil hpeldsp"
  1591. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1592. mjpegb_decoder_select="mjpeg_decoder"
  1593. mlp_decoder_select="mlp_parser"
  1594. motionpixels_decoder_select="dsputil"
  1595. mp1_decoder_select="mpegaudio"
  1596. mp1float_decoder_select="mpegaudio"
  1597. mp2_decoder_select="mpegaudio"
  1598. mp2float_decoder_select="mpegaudio"
  1599. mp3_decoder_select="mpegaudio"
  1600. mp3adu_decoder_select="mpegaudio"
  1601. mp3adufloat_decoder_select="mpegaudio"
  1602. mp3float_decoder_select="mpegaudio"
  1603. mp3on4_decoder_select="mpegaudio"
  1604. mp3on4float_decoder_select="mpegaudio"
  1605. mpc7_decoder_select="dsputil mpegaudiodsp"
  1606. mpc8_decoder_select="mpegaudiodsp"
  1607. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1608. mpeg_xvmc_decoder_select="mpeg2video_decoder"
  1609. mpeg1video_decoder_select="error_resilience mpegvideo"
  1610. mpeg1video_encoder_select="aandcttables mpegvideoenc"
  1611. mpeg2video_decoder_select="error_resilience mpegvideo"
  1612. mpeg2video_encoder_select="aandcttables mpegvideoenc"
  1613. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1614. mpeg4_encoder_select="h263_encoder"
  1615. msmpeg4v1_decoder_select="h263_decoder"
  1616. msmpeg4v2_decoder_select="h263_decoder"
  1617. msmpeg4v2_encoder_select="h263_encoder"
  1618. msmpeg4v3_decoder_select="h263_decoder"
  1619. msmpeg4v3_encoder_select="h263_encoder"
  1620. mss2_decoder_select="error_resilience vc1_decoder"
  1621. mxpeg_decoder_select="mjpeg_decoder"
  1622. nellymoser_decoder_select="mdct sinewin"
  1623. nellymoser_encoder_select="audio_frame_queue mdct sinewin"
  1624. nuv_decoder_select="dsputil lzo"
  1625. png_decoder_deps="zlib"
  1626. png_encoder_deps="zlib"
  1627. png_encoder_select="dsputil"
  1628. prores_decoder_select="dsputil"
  1629. prores_encoder_select="dsputil"
  1630. qcelp_decoder_select="lsp"
  1631. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1632. ra_144_encoder_select="audio_frame_queue lpc"
  1633. ralf_decoder_select="golomb"
  1634. rv10_decoder_select="error_resilience h263_decoder h263dsp"
  1635. rv10_encoder_select="h263_encoder"
  1636. rv20_decoder_select="error_resilience h263_decoder h263dsp"
  1637. rv20_encoder_select="h263_encoder"
  1638. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
  1639. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
  1640. shorten_decoder_select="golomb"
  1641. sipr_decoder_select="lsp"
  1642. sp5x_decoder_select="mjpeg_decoder"
  1643. svq1_decoder_select="hpeldsp"
  1644. svq1_encoder_select="aandcttables dsputil hpeldsp mpegvideoenc"
  1645. svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
  1646. svq3_decoder_suggest="zlib"
  1647. tak_decoder_select="dsputil"
  1648. theora_decoder_select="vp3_decoder"
  1649. thp_decoder_select="mjpeg_decoder"
  1650. tiff_decoder_suggest="zlib"
  1651. tiff_encoder_suggest="zlib"
  1652. truehd_decoder_select="mlp_decoder"
  1653. truemotion2_decoder_select="dsputil"
  1654. truespeech_decoder_select="dsputil"
  1655. tscc_decoder_deps="zlib"
  1656. twinvq_decoder_select="mdct lsp sinewin"
  1657. utvideo_decoder_select="dsputil"
  1658. utvideo_encoder_select="dsputil huffman"
  1659. vble_decoder_select="dsputil"
  1660. vc1_decoder_select="error_resilience h263_decoder h264chroma h264qpel intrax8"
  1661. vc1image_decoder_select="vc1_decoder"
  1662. vorbis_decoder_select="mdct"
  1663. vorbis_encoder_select="mdct"
  1664. vp3_decoder_select="hpeldsp vp3dsp videodsp"
  1665. vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
  1666. vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
  1667. vp6a_decoder_select="vp6_decoder"
  1668. vp6f_decoder_select="vp6_decoder"
  1669. vp7_decoder_select="h264pred videodsp"
  1670. vp8_decoder_select="h264pred videodsp"
  1671. vp9_decoder_select="videodsp"
  1672. webp_decoder_select="vp8_decoder"
  1673. wmapro_decoder_select="mdct sinewin"
  1674. wmav1_decoder_select="mdct sinewin"
  1675. wmav1_encoder_select="mdct sinewin"
  1676. wmav2_decoder_select="mdct sinewin"
  1677. wmav2_encoder_select="mdct sinewin"
  1678. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1679. wmv1_decoder_select="h263_decoder"
  1680. wmv1_encoder_select="h263_encoder"
  1681. wmv2_decoder_select="h263_decoder intrax8 videodsp"
  1682. wmv2_encoder_select="h263_encoder"
  1683. wmv3_decoder_select="vc1_decoder"
  1684. wmv3image_decoder_select="wmv3_decoder"
  1685. zerocodec_decoder_deps="zlib"
  1686. zlib_decoder_deps="zlib"
  1687. zlib_encoder_deps="zlib"
  1688. zmbv_decoder_deps="zlib"
  1689. zmbv_encoder_deps="zlib"
  1690. # hardware accelerators
  1691. dxva2_deps="dxva2api_h"
  1692. vaapi_deps="va_va_h"
  1693. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1694. vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
  1695. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1696. h263_vaapi_hwaccel_deps="vaapi"
  1697. h263_vaapi_hwaccel_select="h263_decoder"
  1698. h263_vdpau_hwaccel_deps="vdpau"
  1699. h263_vdpau_hwaccel_select="h263_decoder"
  1700. h264_dxva2_hwaccel_deps="dxva2"
  1701. h264_dxva2_hwaccel_select="h264_decoder"
  1702. h264_vaapi_hwaccel_deps="vaapi"
  1703. h264_vaapi_hwaccel_select="h264_decoder"
  1704. h264_vda_hwaccel_deps="vda"
  1705. h264_vda_hwaccel_select="h264_decoder"
  1706. h264_vdpau_hwaccel_deps="vdpau"
  1707. h264_vdpau_hwaccel_select="h264_decoder"
  1708. mpeg1_vdpau_hwaccel_deps="vdpau"
  1709. mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
  1710. mpeg2_dxva2_hwaccel_deps="dxva2"
  1711. mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
  1712. mpeg2_vaapi_hwaccel_deps="vaapi"
  1713. mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
  1714. mpeg2_vdpau_hwaccel_deps="vdpau"
  1715. mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
  1716. mpeg4_vaapi_hwaccel_deps="vaapi"
  1717. mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
  1718. mpeg4_vdpau_hwaccel_deps="vdpau"
  1719. mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
  1720. vc1_dxva2_hwaccel_deps="dxva2"
  1721. vc1_dxva2_hwaccel_select="vc1_decoder"
  1722. vc1_vaapi_hwaccel_deps="vaapi"
  1723. vc1_vaapi_hwaccel_select="vc1_decoder"
  1724. vc1_vdpau_hwaccel_deps="vdpau"
  1725. vc1_vdpau_hwaccel_select="vc1_decoder"
  1726. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1727. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1728. wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
  1729. # parsers
  1730. h264_parser_select="h264_decoder"
  1731. mpeg4video_parser_select="error_resilience h263dsp mpegvideo"
  1732. mpegvideo_parser_select="error_resilience mpegvideo"
  1733. vc1_parser_select="mpegvideo"
  1734. # external libraries
  1735. libfaac_encoder_deps="libfaac"
  1736. libfaac_encoder_select="audio_frame_queue"
  1737. libfdk_aac_decoder_deps="libfdk_aac"
  1738. libfdk_aac_encoder_deps="libfdk_aac"
  1739. libfdk_aac_encoder_select="audio_frame_queue"
  1740. libgsm_decoder_deps="libgsm"
  1741. libgsm_encoder_deps="libgsm"
  1742. libgsm_ms_decoder_deps="libgsm"
  1743. libgsm_ms_encoder_deps="libgsm"
  1744. libilbc_decoder_deps="libilbc"
  1745. libilbc_encoder_deps="libilbc"
  1746. libmp3lame_encoder_deps="libmp3lame"
  1747. libmp3lame_encoder_select="audio_frame_queue"
  1748. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1749. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1750. libopencore_amrnb_encoder_select="audio_frame_queue"
  1751. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1752. libopenjpeg_decoder_deps="libopenjpeg"
  1753. libopenjpeg_encoder_deps="libopenjpeg"
  1754. libopus_decoder_deps="libopus"
  1755. libopus_encoder_deps="libopus"
  1756. libopus_encoder_select="audio_frame_queue"
  1757. libschroedinger_decoder_deps="libschroedinger"
  1758. libschroedinger_encoder_deps="libschroedinger"
  1759. libspeex_decoder_deps="libspeex"
  1760. libspeex_encoder_deps="libspeex"
  1761. libspeex_encoder_select="audio_frame_queue"
  1762. libtheora_encoder_deps="libtheora"
  1763. libvo_aacenc_encoder_deps="libvo_aacenc"
  1764. libvo_aacenc_encoder_select="audio_frame_queue"
  1765. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1766. libvorbis_encoder_deps="libvorbis"
  1767. libvorbis_encoder_select="audio_frame_queue"
  1768. libvpx_vp8_decoder_deps="libvpx"
  1769. libvpx_vp8_encoder_deps="libvpx"
  1770. libvpx_vp9_decoder_deps="libvpx"
  1771. libvpx_vp9_encoder_deps="libvpx"
  1772. libwavpack_encoder_deps="libwavpack"
  1773. libwebp_encoder_deps="libwebp"
  1774. libx264_encoder_deps="libx264"
  1775. libx265_encoder_deps="libx265"
  1776. libxavs_encoder_deps="libxavs"
  1777. libxvid_encoder_deps="libxvid"
  1778. # demuxers / muxers
  1779. ac3_demuxer_select="ac3_parser"
  1780. asf_demuxer_select="riffdec"
  1781. asf_muxer_select="riffenc"
  1782. asf_stream_muxer_select="asf_muxer"
  1783. avi_demuxer_select="riffdec"
  1784. avi_muxer_select="riffenc"
  1785. avisynth_demuxer_deps="avisynth"
  1786. avisynth_demuxer_select="riffdec"
  1787. caf_demuxer_select="riffdec"
  1788. dirac_demuxer_select="dirac_parser"
  1789. dxa_demuxer_select="riffdec"
  1790. eac3_demuxer_select="ac3_parser"
  1791. f4v_muxer_select="mov_muxer"
  1792. flac_demuxer_select="flac_parser"
  1793. hds_muxer_select="flv_muxer"
  1794. hls_muxer_select="mpegts_muxer"
  1795. ipod_muxer_select="mov_muxer"
  1796. ismv_muxer_select="mov_muxer"
  1797. matroska_audio_muxer_select="matroska_muxer"
  1798. matroska_demuxer_select="riffdec"
  1799. matroska_demuxer_suggest="bzlib lzo zlib"
  1800. matroska_muxer_select="riffenc"
  1801. mmf_muxer_select="riffenc"
  1802. mov_demuxer_select="riffdec"
  1803. mov_demuxer_suggest="zlib"
  1804. mov_muxer_select="riffenc rtpenc_chain"
  1805. mp3_demuxer_select="mpegaudio_parser"
  1806. mp4_muxer_select="mov_muxer"
  1807. mpegts_muxer_select="adts_muxer latm_muxer"
  1808. mpegtsraw_demuxer_select="mpegts_demuxer"
  1809. mxf_d10_muxer_select="mxf_muxer"
  1810. nut_muxer_select="riffenc"
  1811. nuv_demuxer_select="riffdec"
  1812. ogg_demuxer_select="golomb"
  1813. psp_muxer_select="mov_muxer"
  1814. rtp_demuxer_select="sdp_demuxer"
  1815. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1816. rtsp_demuxer_select="http_protocol rtpdec"
  1817. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
  1818. sap_demuxer_select="sdp_demuxer"
  1819. sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
  1820. sdp_demuxer_select="rtpdec"
  1821. smoothstreaming_muxer_select="ismv_muxer"
  1822. spdif_muxer_select="aac_parser"
  1823. tak_demuxer_select="tak_parser"
  1824. tg2_muxer_select="mov_muxer"
  1825. tgp_muxer_select="mov_muxer"
  1826. w64_demuxer_select="wav_demuxer"
  1827. wav_demuxer_select="riffdec"
  1828. wav_muxer_select="riffenc"
  1829. webm_muxer_select="riffenc"
  1830. wtv_demuxer_select="riffdec"
  1831. xmv_demuxer_select="riffdec"
  1832. xwma_demuxer_select="riffdec"
  1833. # indevs / outdevs
  1834. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1835. alsa_outdev_deps="alsa_asoundlib_h"
  1836. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1837. dv1394_indev_deps="dv1394"
  1838. dv1394_indev_select="dv_demuxer"
  1839. fbdev_indev_deps="linux_fb_h"
  1840. jack_indev_deps="jack_jack_h pthreads"
  1841. libcdio_indev_deps="libcdio"
  1842. libdc1394_indev_deps="libdc1394"
  1843. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1844. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1845. pulse_indev_deps="libpulse"
  1846. sndio_indev_deps="sndio_h"
  1847. sndio_outdev_deps="sndio_h"
  1848. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1849. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1850. vfwcap_indev_extralibs="-lavicap32"
  1851. x11grab_indev_deps="x11grab XShmCreateImage"
  1852. # protocols
  1853. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1854. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1855. ffrtmpcrypt_protocol_select="tcp_protocol"
  1856. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1857. ffrtmphttp_protocol_select="http_protocol"
  1858. gopher_protocol_select="network"
  1859. http_protocol_select="tcp_protocol"
  1860. httpproxy_protocol_select="tcp_protocol"
  1861. https_protocol_select="tls_protocol"
  1862. librtmp_protocol_deps="librtmp"
  1863. librtmpe_protocol_deps="librtmp"
  1864. librtmps_protocol_deps="librtmp"
  1865. librtmpt_protocol_deps="librtmp"
  1866. librtmpte_protocol_deps="librtmp"
  1867. mmsh_protocol_select="http_protocol"
  1868. mmst_protocol_select="network"
  1869. rtmp_protocol_deps="!librtmp_protocol"
  1870. rtmp_protocol_select="tcp_protocol"
  1871. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1872. rtmps_protocol_deps="!librtmp_protocol"
  1873. rtmps_protocol_select="tls_protocol"
  1874. rtmpt_protocol_select="ffrtmphttp_protocol"
  1875. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1876. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1877. rtp_protocol_select="udp_protocol"
  1878. sctp_protocol_deps="struct_sctp_event_subscribe"
  1879. sctp_protocol_select="network"
  1880. srtp_protocol_select="rtp_protocol"
  1881. tcp_protocol_select="network"
  1882. tls_protocol_deps_any="openssl gnutls"
  1883. tls_protocol_select="tcp_protocol"
  1884. udp_protocol_select="network"
  1885. unix_protocol_deps="sys_un_h"
  1886. unix_protocol_select="network"
  1887. # filters
  1888. blackframe_filter_deps="gpl"
  1889. boxblur_filter_deps="gpl"
  1890. cropdetect_filter_deps="gpl"
  1891. delogo_filter_deps="gpl"
  1892. drawtext_filter_deps="libfreetype"
  1893. frei0r_filter_deps="frei0r dlopen"
  1894. frei0r_filter_extralibs='$ldl'
  1895. frei0r_src_filter_deps="frei0r dlopen"
  1896. frei0r_src_filter_extralibs='$ldl'
  1897. hqdn3d_filter_deps="gpl"
  1898. interlace_filter_deps="gpl"
  1899. ocv_filter_deps="libopencv"
  1900. resample_filter_deps="avresample"
  1901. scale_filter_deps="swscale"
  1902. # examples
  1903. avcodec_example_deps="avcodec avutil"
  1904. filter_audio_example_deps="avfilter avutil"
  1905. metadata_example_deps="avformat avutil"
  1906. output_example_deps="avcodec avformat avutil swscale"
  1907. transcode_aac_example_deps="avcodec avformat avresample"
  1908. # libraries
  1909. avcodec_deps="avutil"
  1910. avdevice_deps="avutil avcodec avformat"
  1911. avfilter_deps="avutil"
  1912. avformat_deps="avutil avcodec"
  1913. avresample_deps="avutil"
  1914. swscale_deps="avutil"
  1915. # programs
  1916. avconv_deps="avcodec avfilter avformat avresample swscale"
  1917. avconv_select="aformat_filter anull_filter asyncts_filter atrim_filter format_filter
  1918. fps_filter null_filter resample_filter scale_filter
  1919. setpts_filter trim_filter"
  1920. avplay_deps="avcodec avformat avresample swscale sdl"
  1921. avplay_libs='$sdl_libs'
  1922. avplay_select="rdft"
  1923. avprobe_deps="avcodec avformat"
  1924. avserver_deps="avformat fork !shared"
  1925. avserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
  1926. # documentation
  1927. pod2man_deps="doc"
  1928. texi2html_deps="doc"
  1929. # default parameters
  1930. logfile="config.log"
  1931. # installation paths
  1932. prefix_default="/usr/local"
  1933. bindir_default='${prefix}/bin'
  1934. datadir_default='${prefix}/share/avconv'
  1935. docdir_default='${prefix}/share/doc/libav'
  1936. incdir_default='${prefix}/include'
  1937. libdir_default='${prefix}/lib'
  1938. mandir_default='${prefix}/share/man'
  1939. shlibdir_default="$libdir_default"
  1940. # toolchain
  1941. ar_default="ar"
  1942. cc_default="gcc"
  1943. host_cc_default="gcc"
  1944. cp_f="cp -f"
  1945. ln_s="ln -s -f"
  1946. nm_default="nm -g"
  1947. objformat="elf"
  1948. pkg_config_default=pkg-config
  1949. ranlib="ranlib"
  1950. strip="strip"
  1951. yasmexe="yasm"
  1952. nogas=":"
  1953. # machine
  1954. arch_default=$(uname -m)
  1955. cpu="generic"
  1956. # OS
  1957. target_os_default=$(tolower $(uname -s))
  1958. host_os=$target_os_default
  1959. # configurable options
  1960. enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST
  1961. enable asm
  1962. enable debug
  1963. enable doc
  1964. enable optimizations
  1965. enable safe_bitstream_reader
  1966. enable static
  1967. enable swscale_alpha
  1968. # By default, enable only those hwaccels that have no external dependencies.
  1969. enable dxva2 vdpau
  1970. # build settings
  1971. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1972. LIBPREF="lib"
  1973. LIBSUF=".a"
  1974. FULLNAME='$(NAME)$(BUILDSUF)'
  1975. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1976. SLIBPREF="lib"
  1977. SLIBSUF=".so"
  1978. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1979. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1980. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1981. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1982. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1983. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1984. asflags_filter=echo
  1985. cflags_filter=echo
  1986. ldflags_filter=echo
  1987. AS_C='-c'
  1988. AS_O='-o $@'
  1989. CC_C='-c'
  1990. CC_E='-E -o $@'
  1991. CC_O='-o $@'
  1992. LD_O='-o $@'
  1993. LD_LIB='-l%'
  1994. LD_PATH='-L'
  1995. HOSTCC_C='-c'
  1996. HOSTCC_E='-E -o $@'
  1997. HOSTCC_O='-o $@'
  1998. HOSTLD_O='-o $@'
  1999. host_libs='-lm'
  2000. host_cflags_filter=echo
  2001. host_ldflags_filter=echo
  2002. target_path='$(CURDIR)'
  2003. # since the object filename is not given with the -MM flag, the compiler
  2004. # is only able to print the basename, and we must add the path ourselves
  2005. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  2006. DEPFLAGS='-MM'
  2007. # find source path
  2008. if test -f configure; then
  2009. source_path=.
  2010. else
  2011. source_path=$(cd $(dirname "$0"); pwd)
  2012. echo "$source_path" | grep -q '[[:blank:]]' &&
  2013. die "Out of tree builds are impossible with whitespace in source path."
  2014. test -e "$source_path/config.h" &&
  2015. die "Out of tree builds are impossible with config.h in source dir."
  2016. fi
  2017. for v in "$@"; do
  2018. r=${v#*=}
  2019. l=${v%"$r"}
  2020. r=$(sh_quote "$r")
  2021. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  2022. done
  2023. find_things(){
  2024. thing=$1
  2025. pattern=$2
  2026. file=$source_path/$3
  2027. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  2028. }
  2029. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  2030. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  2031. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  2032. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  2033. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  2034. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  2035. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  2036. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  2037. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  2038. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  2039. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  2040. ALL_COMPONENTS="
  2041. $BSF_LIST
  2042. $DECODER_LIST
  2043. $DEMUXER_LIST
  2044. $ENCODER_LIST
  2045. $FILTER_LIST
  2046. $HWACCEL_LIST
  2047. $INDEV_LIST
  2048. $MUXER_LIST
  2049. $OUTDEV_LIST
  2050. $PARSER_LIST
  2051. $PROTOCOL_LIST
  2052. "
  2053. for n in $COMPONENT_LIST; do
  2054. v=$(toupper ${n%s})_LIST
  2055. eval enable \$$v
  2056. eval ${n}_if_any="\$$v"
  2057. done
  2058. enable $ARCH_EXT_LIST
  2059. die_unknown(){
  2060. echo "Unknown option \"$1\"."
  2061. echo "See $0 --help for available options."
  2062. exit 1
  2063. }
  2064. print_3_columns() {
  2065. cat | tr ' ' '\n' | sort | pr -r -3 -t
  2066. }
  2067. show_list() {
  2068. suffix=_$1
  2069. shift
  2070. echo $* | sed s/$suffix//g | print_3_columns
  2071. exit 0
  2072. }
  2073. rand_list(){
  2074. IFS=', '
  2075. set -- $*
  2076. unset IFS
  2077. for thing; do
  2078. comp=${thing%:*}
  2079. prob=${thing#$comp}
  2080. prob=${prob#:}
  2081. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  2082. echo "prob ${prob:-0.5}"
  2083. printf '%s\n' $comp
  2084. done
  2085. }
  2086. do_random(){
  2087. action=$1
  2088. shift
  2089. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  2090. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  2091. }
  2092. for opt do
  2093. optval="${opt#*=}"
  2094. case "$opt" in
  2095. --extra-ldflags=*)
  2096. add_ldflags $optval
  2097. ;;
  2098. --extra-libs=*)
  2099. add_extralibs $optval
  2100. ;;
  2101. --disable-devices)
  2102. disable $INDEV_LIST $OUTDEV_LIST
  2103. ;;
  2104. --enable-debug=*)
  2105. debuglevel="$optval"
  2106. ;;
  2107. --disable-programs)
  2108. disable $PROGRAM_LIST
  2109. ;;
  2110. --disable-everything)
  2111. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2112. ;;
  2113. --disable-all)
  2114. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2115. disable $LIBRARY_LIST $PROGRAM_LIST doc
  2116. ;;
  2117. --enable-random|--disable-random)
  2118. action=${opt%%-random}
  2119. do_random ${action#--} $COMPONENT_LIST
  2120. ;;
  2121. --enable-random=*|--disable-random=*)
  2122. action=${opt%%-random=*}
  2123. do_random ${action#--} $optval
  2124. ;;
  2125. --enable-*=*|--disable-*=*)
  2126. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  2127. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  2128. eval list=\$$(toupper $thing)_LIST
  2129. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  2130. $action $(filter "$name" $list)
  2131. ;;
  2132. --enable-?*|--disable-?*)
  2133. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  2134. if is_in $option $COMPONENT_LIST; then
  2135. test $action = disable && action=unset
  2136. eval $action \$$(toupper ${option%s})_LIST
  2137. elif is_in $option $CMDLINE_SELECT; then
  2138. $action $option
  2139. else
  2140. die_unknown $opt
  2141. fi
  2142. ;;
  2143. --list-*)
  2144. NAME="${opt#--list-}"
  2145. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  2146. NAME=${NAME%s}
  2147. eval show_list $NAME \$$(toupper $NAME)_LIST
  2148. ;;
  2149. --help|-h) show_help
  2150. ;;
  2151. *)
  2152. optname="${opt%%=*}"
  2153. optname="${optname#--}"
  2154. optname=$(echo "$optname" | sed 's/-/_/g')
  2155. if is_in $optname $CMDLINE_SET; then
  2156. eval $optname='$optval'
  2157. elif is_in $optname $CMDLINE_APPEND; then
  2158. append $optname "$optval"
  2159. else
  2160. die_unknown $opt
  2161. fi
  2162. ;;
  2163. esac
  2164. done
  2165. disabled logging && logfile=/dev/null
  2166. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  2167. set >> $logfile
  2168. test -n "$cross_prefix" && enable cross_compile
  2169. if enabled cross_compile; then
  2170. test -n "$arch" && test -n "$target_os" ||
  2171. die "Must specify target arch and OS when cross-compiling"
  2172. fi
  2173. ar_default="${cross_prefix}${ar_default}"
  2174. cc_default="${cross_prefix}${cc_default}"
  2175. nm_default="${cross_prefix}${nm_default}"
  2176. pkg_config_default="${cross_prefix}${pkg_config_default}"
  2177. ranlib="${cross_prefix}${ranlib}"
  2178. strip="${cross_prefix}${strip}"
  2179. sysinclude_default="${sysroot}/usr/include"
  2180. case "$toolchain" in
  2181. clang-asan)
  2182. cc_default="clang"
  2183. add_cflags -fsanitize=address
  2184. add_ldflags -fsanitize=address
  2185. ;;
  2186. clang-tsan)
  2187. cc_default="clang"
  2188. add_cflags -fsanitize=thread -pie
  2189. add_ldflags -fsanitize=thread -pie
  2190. ;;
  2191. clang-usan)
  2192. cc_default="clang"
  2193. add_cflags -fsanitize=undefined
  2194. add_ldflags -fsanitize=undefined
  2195. ;;
  2196. gcc-asan)
  2197. cc_default="gcc"
  2198. add_cflags -fsanitize=address
  2199. add_ldflags -fsanitize=address
  2200. ;;
  2201. gcc-tsan)
  2202. cc_default="gcc"
  2203. add_cflags -fsanitize=thread -pie -fPIC
  2204. add_ldflags -fsanitize=thread -pie -fPIC
  2205. ;;
  2206. gcc-usan)
  2207. cc_default="gcc"
  2208. add_cflags -fsanitize=undefined
  2209. add_ldflags -fsanitize=undefined
  2210. ;;
  2211. valgrind-massif)
  2212. target_exec_default="valgrind"
  2213. target_exec_args="--alloc-fn=av_malloc --alloc-fn=av_mallocz"
  2214. ;;
  2215. valgrind-memcheck)
  2216. target_exec_default="valgrind"
  2217. target_exec_args="--track-origins=yes --leak-check=full"
  2218. ;;
  2219. msvc)
  2220. # Check whether the current MSVC version needs the C99 converter.
  2221. # From MSVC 2013 (compiler major version 18) onwards, it does actually
  2222. # support enough of C99 to build libav. Default to the new
  2223. # behaviour if the regexp was unable to match anything, since this
  2224. # successfully parses the version number of existing supported
  2225. # versions that require the converter (MSVC 2010 and 2012).
  2226. cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
  2227. if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
  2228. cc_default="cl"
  2229. else
  2230. cc_default="c99wrap cl"
  2231. fi
  2232. ld_default="link"
  2233. nm_default="dumpbin -symbols"
  2234. ar_default="lib"
  2235. target_os_default="win32"
  2236. # Use a relative path for TMPDIR. This makes sure all the
  2237. # ffconf temp files are written with a relative path, avoiding
  2238. # issues with msys/win32 path conversion for MSVC parameters
  2239. # such as -Fo<file> or -out:<file>.
  2240. TMPDIR=.
  2241. ;;
  2242. icl)
  2243. cc_default="icl"
  2244. ld_default="xilink"
  2245. nm_default="dumpbin -symbols"
  2246. ar_default="xilib"
  2247. target_os_default="win32"
  2248. TMPDIR=.
  2249. ;;
  2250. gcov)
  2251. add_cflags -fprofile-arcs -ftest-coverage
  2252. add_ldflags -fprofile-arcs -ftest-coverage
  2253. ;;
  2254. hardened)
  2255. add_cflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all
  2256. add_ldflags -Wl,-z,relro -Wl,-z,now
  2257. ;;
  2258. ?*)
  2259. die "Unknown toolchain $toolchain"
  2260. ;;
  2261. esac
  2262. set_default arch cc pkg_config sysinclude target_exec target_os
  2263. enabled cross_compile || host_cc_default=$cc
  2264. set_default host_cc
  2265. if ! $pkg_config --version >/dev/null 2>&1; then
  2266. warn "$pkg_config not found, library detection may fail."
  2267. pkg_config=false
  2268. fi
  2269. exesuf() {
  2270. case $1 in
  2271. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  2272. esac
  2273. }
  2274. EXESUF=$(exesuf $target_os)
  2275. HOSTEXESUF=$(exesuf $host_os)
  2276. # set temporary file name
  2277. : ${TMPDIR:=$TEMPDIR}
  2278. : ${TMPDIR:=$TMP}
  2279. : ${TMPDIR:=/tmp}
  2280. if ! check_cmd mktemp -u XXXXXX; then
  2281. # simple replacement for missing mktemp
  2282. # NOT SAFE FOR GENERAL USE
  2283. mktemp(){
  2284. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  2285. }
  2286. fi
  2287. tmpfile(){
  2288. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  2289. (set -C; exec > $tmp) 2>/dev/null ||
  2290. die "Unable to create temporary file in $TMPDIR."
  2291. append TMPFILES $tmp
  2292. eval $1=$tmp
  2293. }
  2294. trap 'rm -f -- $TMPFILES' EXIT
  2295. tmpfile TMPASM .asm
  2296. tmpfile TMPC .c
  2297. tmpfile TMPE $EXESUF
  2298. tmpfile TMPH .h
  2299. tmpfile TMPO .o
  2300. tmpfile TMPS .S
  2301. tmpfile TMPSH .sh
  2302. tmpfile TMPV .ver
  2303. unset -f mktemp
  2304. chmod +x $TMPE
  2305. # make sure we can execute files in $TMPDIR
  2306. cat > $TMPSH 2>> $logfile <<EOF
  2307. #! /bin/sh
  2308. EOF
  2309. chmod +x $TMPSH >> $logfile 2>&1
  2310. if ! $TMPSH >> $logfile 2>&1; then
  2311. cat <<EOF
  2312. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2313. variable to another directory and make sure that it is not mounted noexec.
  2314. EOF
  2315. die "Sanity test failed."
  2316. fi
  2317. ccc_flags(){
  2318. for flag; do
  2319. case $flag in
  2320. -std=c99) echo -c99 ;;
  2321. -mcpu=*) echo -arch ${flag#*=} ;;
  2322. -mieee) echo -ieee ;;
  2323. -O*|-fast) echo $flag ;;
  2324. -fno-math-errno) echo -assume nomath_errno ;;
  2325. -g) echo -g3 ;;
  2326. -Wall) echo -msg_enable level2 ;;
  2327. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  2328. -Wl,*) echo $flag ;;
  2329. -f*|-W*) ;;
  2330. *) echo $flag ;;
  2331. esac
  2332. done
  2333. }
  2334. cparser_flags(){
  2335. for flag; do
  2336. case $flag in
  2337. -Wno-switch) echo -Wno-switch-enum ;;
  2338. -Wno-format-zero-length) ;;
  2339. -Wdisabled-optimization) ;;
  2340. -Wno-pointer-sign) echo -Wno-other ;;
  2341. *) echo $flag ;;
  2342. esac
  2343. done
  2344. }
  2345. msvc_common_flags(){
  2346. for flag; do
  2347. case $flag in
  2348. # In addition to specifying certain flags under the compiler
  2349. # specific filters, they must be specified here as well or else the
  2350. # generic catch all at the bottom will print the original flag.
  2351. -Wall) ;;
  2352. -std=c99) ;;
  2353. # Common flags
  2354. -fomit-frame-pointer) ;;
  2355. -g) echo -Z7 ;;
  2356. -fno-math-errno) ;;
  2357. -fno-common) ;;
  2358. -fno-signed-zeros) ;;
  2359. -fPIC) ;;
  2360. -mthumb) ;;
  2361. -march=*) ;;
  2362. -lz) echo zlib.lib ;;
  2363. -lavifil32) echo vfw32.lib ;;
  2364. -lavicap32) echo vfw32.lib user32.lib ;;
  2365. -l*) echo ${flag#-l}.lib ;;
  2366. *) echo $flag ;;
  2367. esac
  2368. done
  2369. }
  2370. msvc_flags(){
  2371. msvc_common_flags "$@"
  2372. for flag; do
  2373. case $flag in
  2374. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2375. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2376. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2377. -wd4273 ;;
  2378. esac
  2379. done
  2380. }
  2381. icl_flags(){
  2382. msvc_common_flags "$@"
  2383. for flag; do
  2384. case $flag in
  2385. # Despite what Intel's documentation says -Wall, which is supported
  2386. # on Windows, does enable remarks so disable them here.
  2387. -Wall) echo $flag -Qdiag-disable:remark ;;
  2388. -std=c99) echo -Qstd=c99 ;;
  2389. esac
  2390. done
  2391. }
  2392. pgi_flags(){
  2393. for flag; do
  2394. case $flag in
  2395. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  2396. -fomit-frame-pointer) echo -Mnoframe ;;
  2397. -g) echo -gopt ;;
  2398. *) echo $flag ;;
  2399. esac
  2400. done
  2401. }
  2402. suncc_flags(){
  2403. for flag; do
  2404. case $flag in
  2405. -march=*|-mcpu=*)
  2406. case "${flag#*=}" in
  2407. native) echo -xtarget=native ;;
  2408. v9|niagara) echo -xarch=sparc ;;
  2409. ultrasparc) echo -xarch=sparcvis ;;
  2410. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2411. i586|pentium) echo -xchip=pentium ;;
  2412. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2413. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2414. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2415. pentium4*) echo -xtarget=pentium4 ;;
  2416. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2417. *-sse3) echo -xarch=sse3 ;;
  2418. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2419. corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
  2420. corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
  2421. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2422. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2423. k8|opteron|athlon64|athlon-fx)
  2424. echo -xarch=sse2a ;;
  2425. athlon*) echo -xarch=pentium_proa ;;
  2426. esac
  2427. ;;
  2428. -std=c99) echo -xc99 ;;
  2429. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2430. -fPIC) echo -KPIC -xcode=pic32 ;;
  2431. -W*,*) echo $flag ;;
  2432. -f*-*|-W*|-mimpure-text) ;;
  2433. -shared) echo -G ;;
  2434. *) echo $flag ;;
  2435. esac
  2436. done
  2437. }
  2438. tms470_flags(){
  2439. for flag; do
  2440. case $flag in
  2441. -march=*|-mcpu=*)
  2442. case "${flag#*=}" in
  2443. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2444. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2445. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2446. armv6*|arm11*) echo -mv=6 ;;
  2447. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2448. echo -mv=5e ;;
  2449. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2450. esac
  2451. ;;
  2452. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2453. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2454. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2455. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2456. -msoft-float) echo --float_support=vfplib ;;
  2457. -O[0-3]|-mf=*) echo $flag ;;
  2458. -g) echo -g -mn ;;
  2459. -pds=*) echo $flag ;;
  2460. -D*|-I*) echo $flag ;;
  2461. --gcc|--abi=*) echo $flag ;;
  2462. -me) echo $flag ;;
  2463. esac
  2464. done
  2465. }
  2466. probe_cc(){
  2467. pfx=$1
  2468. _cc=$2
  2469. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2470. unset _ld_o _ldflags _ld_lib _ld_path
  2471. unset _depflags _DEPCMD _DEPFLAGS
  2472. _flags_filter=echo
  2473. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2474. _type=llvm_gcc
  2475. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2476. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2477. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2478. _cflags_speed='-O3'
  2479. _cflags_size='-Os'
  2480. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2481. _type=gcc
  2482. gcc_version=$($_cc --version | head -n1)
  2483. gcc_basever=$($_cc -dumpversion)
  2484. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2485. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2486. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2487. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2488. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2489. fi
  2490. _cflags_speed='-O3'
  2491. _cflags_size='-Os'
  2492. elif $_cc --version 2>/dev/null | grep -q ^icc; then
  2493. _type=icc
  2494. _ident=$($_cc --version | head -n1)
  2495. _depflags='-MMD'
  2496. _cflags_speed='-O3'
  2497. _cflags_size='-Os'
  2498. _cflags_noopt='-O1'
  2499. elif $_cc -v 2>&1 | grep -q xlc; then
  2500. _type=xlc
  2501. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2502. _cflags_speed='-O5'
  2503. _cflags_size='-O5 -qcompact'
  2504. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2505. _type=ccc
  2506. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2507. _DEPFLAGS='-M'
  2508. _cflags_speed='-fast'
  2509. _cflags_size='-O1'
  2510. _flags_filter=ccc_flags
  2511. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2512. test -d "$sysroot" || die "No valid sysroot specified."
  2513. _type=armcc
  2514. _ident=$($_cc --vsn | head -n1)
  2515. armcc_conf="$PWD/armcc.conf"
  2516. $_cc --arm_linux_configure \
  2517. --arm_linux_config_file="$armcc_conf" \
  2518. --configure_sysroot="$sysroot" \
  2519. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2520. die "Error creating armcc configuration file."
  2521. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2522. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2523. as_default="${cross_prefix}gcc"
  2524. _depflags='-MMD'
  2525. _cflags_speed='-O3'
  2526. _cflags_size='-Os'
  2527. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2528. _type=tms470
  2529. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2530. _flags='--gcc --abi=eabi -me'
  2531. _cc_e='-ppl -fe=$@'
  2532. _cc_o='-fe=$@'
  2533. _depflags='-ppa -ppd=$(@:.o=.d)'
  2534. _cflags_speed='-O3 -mf=5'
  2535. _cflags_size='-O3 -mf=2'
  2536. _flags_filter=tms470_flags
  2537. elif $_cc -v 2>&1 | grep -q clang; then
  2538. _type=clang
  2539. _ident=$($_cc --version | head -n1)
  2540. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2541. _cflags_speed='-O3'
  2542. _cflags_size='-Os'
  2543. elif $_cc -V 2>&1 | grep -q Sun; then
  2544. _type=suncc
  2545. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2546. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2547. _DEPFLAGS='-xM1 -xc99'
  2548. _ldflags='-std=c99'
  2549. _cflags_speed='-O5'
  2550. _cflags_size='-O5 -xspace'
  2551. _flags_filter=suncc_flags
  2552. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2553. _type=pathscale
  2554. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2555. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2556. _cflags_speed='-O2'
  2557. _cflags_size='-Os'
  2558. _flags_filter='filter_out -Wdisabled-optimization'
  2559. elif $_cc -v 2>&1 | grep -q Open64; then
  2560. _type=open64
  2561. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2562. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2563. _cflags_speed='-O2'
  2564. _cflags_size='-Os'
  2565. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2566. elif $_cc -V 2>&1 | grep -q Portland; then
  2567. _type=pgi
  2568. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2569. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2570. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2571. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2572. _cflags_noopt="-O1"
  2573. _flags_filter=pgi_flags
  2574. elif $_cc 2>&1 | grep -q Microsoft; then
  2575. _type=msvc
  2576. _ident=$($cc 2>&1 | head -n1)
  2577. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2578. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2579. _cflags_speed="-O2"
  2580. _cflags_size="-O1"
  2581. if $_cc 2>&1 | grep -q Linker; then
  2582. _ld_o='-out:$@'
  2583. else
  2584. _ld_o='-Fe$@'
  2585. fi
  2586. _cc_o='-Fo$@'
  2587. _cc_e='-P -Fi$@'
  2588. _flags_filter=msvc_flags
  2589. _ld_lib='lib%.a'
  2590. _ld_path='-libpath:'
  2591. _flags='-nologo'
  2592. _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2593. if [ $pfx = hostcc ]; then
  2594. append _cflags -Dsnprintf=_snprintf
  2595. fi
  2596. elif $_cc 2>&1 | grep -q Intel; then
  2597. _type=icl
  2598. _ident=$($cc 2>&1 | head -n1)
  2599. _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
  2600. # Not only is O3 broken on 13.x+ but it is slower on all previous
  2601. # versions (tested) as well.
  2602. _cflags_speed="-O2"
  2603. _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
  2604. if $_cc 2>&1 | grep -q Linker; then
  2605. _ld_o='-out:$@'
  2606. else
  2607. _ld_o='-Fe$@'
  2608. fi
  2609. _cc_o='-Fo$@'
  2610. _cc_e='-P'
  2611. _flags_filter=icl_flags
  2612. _ld_lib='lib%.a'
  2613. _ld_path='-libpath:'
  2614. # -Qdiag-error to make icl error when seeing certain unknown arguments
  2615. _flags='-nologo -Qdiag-error:4044,10157'
  2616. # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
  2617. # with MSVC which enables it by default.
  2618. _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS'
  2619. if [ $pfx = hostcc ]; then
  2620. append _cflags -Dsnprintf=_snprintf
  2621. fi
  2622. elif $_cc --version 2>/dev/null | grep -q ^cparser; then
  2623. _type=cparser
  2624. _ident=$($_cc --version | head -n1)
  2625. _depflags='-MMD'
  2626. _cflags_speed='-O4'
  2627. _cflags_size='-O2'
  2628. _flags_filter=cparser_flags
  2629. fi
  2630. eval ${pfx}_type=\$_type
  2631. eval ${pfx}_ident=\$_ident
  2632. }
  2633. set_ccvars(){
  2634. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2635. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2636. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2637. if [ -n "$_depflags" ]; then
  2638. eval ${1}_DEPFLAGS=\$_depflags
  2639. else
  2640. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2641. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2642. eval DEP${1}FLAGS=\$_flags
  2643. fi
  2644. }
  2645. probe_cc cc "$cc"
  2646. cflags_filter=$_flags_filter
  2647. cflags_speed=$_cflags_speed
  2648. cflags_size=$_cflags_size
  2649. cflags_noopt=$_cflags_noopt
  2650. add_cflags $_flags $_cflags
  2651. cc_ldflags=$_ldflags
  2652. set_ccvars CC
  2653. probe_cc hostcc "$host_cc"
  2654. host_cflags_filter=$_flags_filter
  2655. add_host_cflags $_flags $_cflags
  2656. set_ccvars HOSTCC
  2657. test -n "$cc_type" && enable $cc_type ||
  2658. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2659. : ${as_default:=$cc}
  2660. : ${dep_cc_default:=$cc}
  2661. : ${ld_default:=$cc}
  2662. : ${host_ld_default:=$host_cc}
  2663. set_default ar as dep_cc ld host_ld
  2664. probe_cc as "$as"
  2665. asflags_filter=$_flags_filter
  2666. add_asflags $_flags $_cflags
  2667. set_ccvars AS
  2668. probe_cc ld "$ld"
  2669. ldflags_filter=$_flags_filter
  2670. add_ldflags $_flags $_ldflags
  2671. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2672. LD_O=${_ld_o-$LD_O}
  2673. LD_LIB=${_ld_lib-$LD_LIB}
  2674. LD_PATH=${_ld_path-$LD_PATH}
  2675. probe_cc hostld "$host_ld"
  2676. host_ldflags_filter=$_flags_filter
  2677. add_host_ldflags $_flags $_ldflags
  2678. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2679. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2680. probe_cc depcc "$dep_cc"
  2681. CCDEP=${_DEPCMD:-$DEPCMD}
  2682. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2683. DEPCCFLAGS=$_flags
  2684. fi
  2685. if $ar 2>&1 | grep -q Microsoft; then
  2686. arflags="-nologo"
  2687. ar_o='-out:$@'
  2688. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2689. arflags="rq"
  2690. ar_o='$@'
  2691. elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
  2692. arflags='-Xany -r -c'
  2693. ar_o='$@'
  2694. else
  2695. arflags="rc"
  2696. ar_o='$@'
  2697. fi
  2698. add_cflags $extra_cflags
  2699. add_asflags $extra_cflags
  2700. if test -n "$sysroot"; then
  2701. case "$cc_type" in
  2702. gcc|llvm_gcc|clang)
  2703. add_cppflags --sysroot="$sysroot"
  2704. add_ldflags --sysroot="$sysroot"
  2705. ;;
  2706. tms470)
  2707. add_cppflags -I"$sysinclude"
  2708. add_ldflags --sysroot="$sysroot"
  2709. ;;
  2710. esac
  2711. fi
  2712. if test "$cpu" = host; then
  2713. enabled cross_compile &&
  2714. die "--cpu=host makes no sense when cross-compiling."
  2715. case "$cc_type" in
  2716. gcc|llvm_gcc)
  2717. check_native(){
  2718. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2719. sed -n "/cc1.*$1=/{
  2720. s/.*$1=\\([^ ]*\\).*/\\1/
  2721. p
  2722. q
  2723. }" $TMPE
  2724. }
  2725. cpu=$(check_native -march || check_native -mcpu)
  2726. ;;
  2727. esac
  2728. test "${cpu:-host}" = host &&
  2729. die "--cpu=host not supported with compiler $cc"
  2730. fi
  2731. # Deal with common $arch aliases
  2732. case "$arch" in
  2733. aarch64|arm64)
  2734. arch="aarch64"
  2735. ;;
  2736. arm*)
  2737. arch="arm"
  2738. ;;
  2739. mips*|IP*)
  2740. arch="mips"
  2741. ;;
  2742. parisc*|hppa*)
  2743. arch="parisc"
  2744. ;;
  2745. "Power Macintosh"|ppc*|powerpc*)
  2746. arch="ppc"
  2747. ;;
  2748. s390|s390x)
  2749. arch="s390"
  2750. ;;
  2751. sh4|sh)
  2752. arch="sh4"
  2753. ;;
  2754. sun4u|sparc*)
  2755. arch="sparc"
  2756. ;;
  2757. tilegx|tile-gx)
  2758. arch="tilegx"
  2759. ;;
  2760. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  2761. arch="x86"
  2762. ;;
  2763. esac
  2764. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2765. enable $arch
  2766. # Add processor-specific flags
  2767. if enabled aarch64; then
  2768. case $cpu in
  2769. armv*)
  2770. cpuflags="-march=$cpu"
  2771. ;;
  2772. *)
  2773. cpuflags="-mcpu=$cpu"
  2774. ;;
  2775. esac
  2776. elif enabled alpha; then
  2777. cpuflags="-mcpu=$cpu"
  2778. elif enabled arm; then
  2779. check_arm_arch() {
  2780. check_cpp_condition stddef.h \
  2781. "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
  2782. $cpuflags
  2783. }
  2784. probe_arm_arch() {
  2785. if check_arm_arch 4; then echo armv4;
  2786. elif check_arm_arch 4T; then echo armv4t;
  2787. elif check_arm_arch 5; then echo armv5;
  2788. elif check_arm_arch 5E; then echo armv5e;
  2789. elif check_arm_arch 5T; then echo armv5t;
  2790. elif check_arm_arch 5TE; then echo armv5te;
  2791. elif check_arm_arch 5TEJ; then echo armv5te;
  2792. elif check_arm_arch 6; then echo armv6;
  2793. elif check_arm_arch 6J; then echo armv6j;
  2794. elif check_arm_arch 6K; then echo armv6k;
  2795. elif check_arm_arch 6Z; then echo armv6z;
  2796. elif check_arm_arch 6ZK; then echo armv6zk;
  2797. elif check_arm_arch 6T2; then echo armv6t2;
  2798. elif check_arm_arch 7; then echo armv7;
  2799. elif check_arm_arch 7A 7_A; then echo armv7-a;
  2800. elif check_arm_arch 7R 7_R; then echo armv7-r;
  2801. elif check_arm_arch 7M 7_M; then echo armv7-m;
  2802. elif check_arm_arch 7EM 7E_M; then echo armv7-m;
  2803. elif check_arm_arch 8A 8_A; then echo armv8-a;
  2804. fi
  2805. }
  2806. [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
  2807. case $cpu in
  2808. armv*)
  2809. cpuflags="-march=$cpu"
  2810. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2811. ;;
  2812. *)
  2813. cpuflags="-mcpu=$cpu"
  2814. case $cpu in
  2815. cortex-a*) subarch=armv7a ;;
  2816. cortex-r*) subarch=armv7r ;;
  2817. cortex-m*) enable thumb; subarch=armv7m ;;
  2818. arm11*) subarch=armv6 ;;
  2819. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2820. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2821. *) subarch=$(probe_arm_arch) ;;
  2822. esac
  2823. ;;
  2824. esac
  2825. case "$subarch" in
  2826. armv5t*) enable fast_clz ;;
  2827. armv[6-8]*) enable fast_clz fast_unaligned ;;
  2828. esac
  2829. elif enabled avr32; then
  2830. case $cpu in
  2831. ap7[02]0[0-2])
  2832. subarch="avr32_ap"
  2833. cpuflags="-mpart=$cpu"
  2834. ;;
  2835. ap)
  2836. subarch="avr32_ap"
  2837. cpuflags="-march=$cpu"
  2838. ;;
  2839. uc3[ab]*)
  2840. subarch="avr32_uc"
  2841. cpuflags="-mcpu=$cpu"
  2842. ;;
  2843. uc)
  2844. subarch="avr32_uc"
  2845. cpuflags="-march=$cpu"
  2846. ;;
  2847. esac
  2848. elif enabled bfin; then
  2849. cpuflags="-mcpu=$cpu"
  2850. elif enabled mips; then
  2851. cpuflags="-march=$cpu"
  2852. elif enabled ppc; then
  2853. disable ldbrx
  2854. case $(tolower $cpu) in
  2855. 601|ppc601|powerpc601)
  2856. cpuflags="-mcpu=601"
  2857. disable altivec
  2858. ;;
  2859. 603*|ppc603*|powerpc603*)
  2860. cpuflags="-mcpu=603"
  2861. disable altivec
  2862. ;;
  2863. 604*|ppc604*|powerpc604*)
  2864. cpuflags="-mcpu=604"
  2865. disable altivec
  2866. ;;
  2867. g3|75*|ppc75*|powerpc75*)
  2868. cpuflags="-mcpu=750"
  2869. disable altivec
  2870. ;;
  2871. g4|745*|ppc745*|powerpc745*)
  2872. cpuflags="-mcpu=7450"
  2873. ;;
  2874. 74*|ppc74*|powerpc74*)
  2875. cpuflags="-mcpu=7400"
  2876. ;;
  2877. g5|970|ppc970|powerpc970)
  2878. cpuflags="-mcpu=970"
  2879. ;;
  2880. power[3-7]*)
  2881. cpuflags="-mcpu=$cpu"
  2882. ;;
  2883. cell)
  2884. cpuflags="-mcpu=cell"
  2885. enable ldbrx
  2886. ;;
  2887. e500mc)
  2888. cpuflags="-mcpu=e500mc"
  2889. disable altivec
  2890. ;;
  2891. e500v2)
  2892. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2893. disable altivec
  2894. disable dcbzl
  2895. ;;
  2896. e500)
  2897. cpuflags="-mcpu=8540 -mhard-float"
  2898. disable altivec
  2899. disable dcbzl
  2900. ;;
  2901. esac
  2902. elif enabled sparc; then
  2903. case $cpu in
  2904. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  2905. cpuflags="-mcpu=$cpu"
  2906. ;;
  2907. ultrasparc*|niagara[234])
  2908. cpuflags="-mcpu=$cpu"
  2909. ;;
  2910. esac
  2911. elif enabled x86; then
  2912. case $cpu in
  2913. i[345]86|pentium)
  2914. cpuflags="-march=$cpu"
  2915. disable mmx
  2916. ;;
  2917. # targets that do NOT support nopl and conditional mov (cmov)
  2918. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2919. cpuflags="-march=$cpu"
  2920. disable i686
  2921. ;;
  2922. # targets that do support nopl and conditional mov (cmov)
  2923. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
  2924. cpuflags="-march=$cpu"
  2925. enable i686
  2926. enable fast_cmov
  2927. ;;
  2928. # targets that do support conditional mov but on which it's slow
  2929. pentium4|pentium4m|prescott|nocona)
  2930. cpuflags="-march=$cpu"
  2931. enable i686
  2932. disable fast_cmov
  2933. ;;
  2934. esac
  2935. fi
  2936. if [ "$cpu" != generic ]; then
  2937. add_cflags $cpuflags
  2938. add_asflags $cpuflags
  2939. fi
  2940. # compiler sanity check
  2941. check_exec <<EOF
  2942. int main(void){ return 0; }
  2943. EOF
  2944. if test "$?" != 0; then
  2945. echo "$cc is unable to create an executable file."
  2946. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2947. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2948. echo "Only do this if you know what cross compiling means."
  2949. fi
  2950. die "C compiler test failed."
  2951. fi
  2952. add_cppflags -D_ISOC99_SOURCE
  2953. check_cflags -std=c99
  2954. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2955. #include <stdlib.h>
  2956. EOF
  2957. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2958. #include <stdlib.h>
  2959. EOF
  2960. add_host_cppflags -D_ISOC99_SOURCE
  2961. check_host_cflags -std=c99
  2962. check_host_cflags -Wall
  2963. check_host_cflags -O3
  2964. check_64bit(){
  2965. arch32=$1
  2966. arch64=$2
  2967. expr=$3
  2968. check_code cc "" "int test[2*($expr) - 1]" &&
  2969. subarch=$arch64 || subarch=$arch32
  2970. }
  2971. case "$arch" in
  2972. aarch64|alpha|ia64)
  2973. spic=$shared
  2974. ;;
  2975. mips)
  2976. check_64bit mips mips64 '_MIPS_SIM > 1'
  2977. spic=$shared
  2978. ;;
  2979. parisc)
  2980. check_64bit parisc parisc64 'sizeof(void *) > 4'
  2981. spic=$shared
  2982. ;;
  2983. ppc)
  2984. check_64bit ppc ppc64 'sizeof(void *) > 4'
  2985. spic=$shared
  2986. ;;
  2987. s390)
  2988. check_64bit s390 s390x 'sizeof(void *) > 4'
  2989. spic=$shared
  2990. ;;
  2991. sparc)
  2992. check_64bit sparc sparc64 'sizeof(void *) > 4'
  2993. spic=$shared
  2994. ;;
  2995. x86)
  2996. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  2997. if test "$subarch" = "x86_64"; then
  2998. spic=$shared
  2999. fi
  3000. ;;
  3001. esac
  3002. enable $subarch
  3003. enabled spic && enable_weak pic
  3004. # OS specific
  3005. case $target_os in
  3006. aix)
  3007. SHFLAGS=-shared
  3008. add_cppflags '-I\$(SRC_PATH)/compat/aix'
  3009. enabled shared && add_ldflags -Wl,-brtl
  3010. ;;
  3011. haiku)
  3012. prefix_default="/boot/common"
  3013. network_extralibs="-lnetwork"
  3014. host_libs=
  3015. ;;
  3016. sunos)
  3017. SHFLAGS='-shared -Wl,-h,$$(@F)'
  3018. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  3019. network_extralibs="-lsocket -lnsl"
  3020. # When using suncc to build, the Solaris linker will mark
  3021. # an executable with each instruction set encountered by
  3022. # the Solaris assembler. As our libraries contain their own
  3023. # guards for processor-specific code, instead suppress
  3024. # generation of the HWCAPS ELF section on Solaris x86 only.
  3025. enabled_all suncc x86 &&
  3026. echo "hwcap_1 = OVERRIDE;" > mapfile &&
  3027. add_ldflags -Wl,-M,mapfile
  3028. nm_default='nm -P -g'
  3029. ;;
  3030. netbsd)
  3031. disable symver
  3032. oss_indev_extralibs="-lossaudio"
  3033. oss_outdev_extralibs="-lossaudio"
  3034. ;;
  3035. openbsd|bitrig)
  3036. disable symver
  3037. SHFLAGS='-shared'
  3038. SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
  3039. SLIB_INSTALL_LINKS=
  3040. oss_indev_extralibs="-lossaudio"
  3041. oss_outdev_extralibs="-lossaudio"
  3042. ;;
  3043. dragonfly)
  3044. disable symver
  3045. ;;
  3046. freebsd)
  3047. ;;
  3048. bsd/os)
  3049. add_extralibs -lpoll -lgnugetopt
  3050. ;;
  3051. darwin)
  3052. gas="gas-preprocessor.pl $cc"
  3053. enabled ppc && add_asflags -force_cpusubtype_ALL
  3054. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  3055. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  3056. add_ldflags -Wl,-dynamic,-search_paths_first
  3057. SLIBSUF=".dylib"
  3058. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  3059. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  3060. objformat="macho"
  3061. enabled x86_64 && objformat="macho64"
  3062. enabled_any pic shared ||
  3063. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  3064. ;;
  3065. mingw32*)
  3066. if test $target_os = "mingw32ce"; then
  3067. disable network
  3068. else
  3069. target_os=mingw32
  3070. fi
  3071. LIBTARGET=i386
  3072. if enabled x86_64; then
  3073. LIBTARGET="i386:x86-64"
  3074. elif enabled arm; then
  3075. LIBTARGET=arm-wince
  3076. fi
  3077. check_ldflags -Wl,--nxcompat
  3078. check_ldflags -Wl,--dynamicbase
  3079. shlibdir_default="$bindir_default"
  3080. SLIBPREF=""
  3081. SLIBSUF=".dll"
  3082. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3083. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3084. SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  3085. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3086. SLIB_INSTALL_LINKS=
  3087. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3088. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3089. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  3090. objformat="win32"
  3091. dlltool="${cross_prefix}dlltool"
  3092. ranlib=:
  3093. enable dos_paths
  3094. ;;
  3095. win32|win64)
  3096. disable symver
  3097. if enabled shared; then
  3098. # Link to the import library instead of the normal static library
  3099. # for shared libs.
  3100. LD_LIB='%.lib'
  3101. # Cannot build both shared and static libs with MSVC or icl.
  3102. disable static
  3103. fi
  3104. shlibdir_default="$bindir_default"
  3105. SLIBPREF=""
  3106. SLIBSUF=".dll"
  3107. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3108. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3109. SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  3110. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3111. SLIB_INSTALL_LINKS=
  3112. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3113. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3114. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  3115. objformat="win32"
  3116. ranlib=:
  3117. enable dos_paths
  3118. ;;
  3119. cygwin*)
  3120. target_os=cygwin
  3121. shlibdir_default="$bindir_default"
  3122. SLIBPREF="cyg"
  3123. SLIBSUF=".dll"
  3124. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3125. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3126. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3127. SLIB_INSTALL_LINKS=
  3128. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  3129. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  3130. objformat="win32"
  3131. enable dos_paths
  3132. ;;
  3133. *-dos|freedos|opendos)
  3134. network_extralibs="-lsocket"
  3135. objformat="coff"
  3136. enable dos_paths
  3137. add_cppflags -U__STRICT_ANSI__
  3138. ;;
  3139. linux)
  3140. enable dv1394
  3141. ;;
  3142. irix*)
  3143. target_os=irix
  3144. ranlib="echo ignoring ranlib"
  3145. ;;
  3146. os/2*)
  3147. ln_s="cp -f"
  3148. objformat="aout"
  3149. add_cppflags -D_GNU_SOURCE
  3150. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  3151. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  3152. LIBSUF="_s.a"
  3153. SLIBPREF=""
  3154. SLIBSUF=".dll"
  3155. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3156. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  3157. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  3158. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  3159. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  3160. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  3161. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  3162. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  3163. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  3164. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  3165. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  3166. enable dos_paths
  3167. ;;
  3168. gnu/kfreebsd)
  3169. add_cppflags -D_BSD_SOURCE
  3170. ;;
  3171. gnu)
  3172. ;;
  3173. qnx)
  3174. add_cppflags -D_QNX_SOURCE
  3175. network_extralibs="-lsocket"
  3176. ;;
  3177. symbian)
  3178. SLIBSUF=".dll"
  3179. enable dos_paths
  3180. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  3181. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  3182. add_ldflags -Wl,--target1-abs,--no-undefined \
  3183. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  3184. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  3185. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  3186. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  3187. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  3188. ;;
  3189. osf1)
  3190. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  3191. ;;
  3192. minix)
  3193. ;;
  3194. plan9)
  3195. add_cppflags -D_C99_SNPRINTF_EXTENSION \
  3196. -D_REENTRANT_SOURCE \
  3197. -D_RESEARCH_SOURCE \
  3198. -DFD_SETSIZE=96 \
  3199. -DHAVE_SOCK_OPTS
  3200. add_compat strtod.o strtod=avpriv_strtod
  3201. network_extralibs='-lbsd'
  3202. exeobjs=compat/plan9/main.o
  3203. disable avserver
  3204. cp_f='cp'
  3205. ;;
  3206. none)
  3207. ;;
  3208. *)
  3209. die "Unknown OS '$target_os'."
  3210. ;;
  3211. esac
  3212. # determine libc flavour
  3213. probe_libc(){
  3214. pfx=$1
  3215. pfx_no_=${pfx%_}
  3216. # uclibc defines __GLIBC__, so it needs to be checked before glibc.
  3217. if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
  3218. eval ${pfx}libc_type=uclibc
  3219. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3220. elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
  3221. eval ${pfx}libc_type=glibc
  3222. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3223. # MinGW headers can be installed on Cygwin, so check for newlib first.
  3224. elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  3225. eval ${pfx}libc_type=newlib
  3226. add_${pfx}cppflags -U__STRICT_ANSI__
  3227. # MinGW64 is backwards compatible with MinGW32, so check for it first.
  3228. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
  3229. eval ${pfx}libc_type=mingw64
  3230. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3231. eval test \$${pfx_no_}cc_type = "gcc" &&
  3232. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3233. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
  3234. check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
  3235. eval ${pfx}libc_type=mingw32
  3236. check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
  3237. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  3238. die "ERROR: MinGW32 runtime version must be >= 3.15."
  3239. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3240. eval test \$${pfx_no_}cc_type = "gcc" &&
  3241. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3242. elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
  3243. eval ${pfx}libc_type=msvcrt
  3244. # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
  3245. # 0x601 by default unless something else is set by the user.
  3246. # This can easily lead to us detecting functions only present
  3247. # in such new versions and producing binaries requiring windows 7.0.
  3248. # Therefore explicitly set the default to XP unless the user has
  3249. # set something else on the command line.
  3250. check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
  3251. add_${pfx}cppflags -D_WIN32_WINNT=0x0502
  3252. elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
  3253. eval ${pfx}libc_type=klibc
  3254. elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
  3255. eval ${pfx}libc_type=bionic
  3256. elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
  3257. eval ${pfx}libc_type=solaris
  3258. add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  3259. fi
  3260. }
  3261. probe_libc
  3262. test -n "$libc_type" && enable libc_$libc_type
  3263. probe_libc host_
  3264. test -n "$host_libc_type" && enable host_libc_$host_libc_type
  3265. case $libc_type in
  3266. bionic)
  3267. add_compat strtod.o strtod=avpriv_strtod
  3268. ;;
  3269. msvcrt)
  3270. add_compat strtod.o strtod=avpriv_strtod
  3271. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  3272. _snprintf=avpriv_snprintf \
  3273. vsnprintf=avpriv_vsnprintf
  3274. ;;
  3275. esac
  3276. # hacks for compiler/libc/os combinations
  3277. if enabled_all tms470 libc_glibc; then
  3278. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  3279. add_cppflags -D__USER_LABEL_PREFIX__=
  3280. add_cppflags -D__builtin_memset=memset
  3281. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  3282. add_cflags -pds=48 # incompatible redefinition of macro
  3283. fi
  3284. if enabled_all ccc libc_glibc; then
  3285. add_ldflags -Wl,-z,now # calls to libots crash without this
  3286. fi
  3287. check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
  3288. add_cppflags '-I\$(SRC_PATH)/compat/float'
  3289. esc(){
  3290. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  3291. }
  3292. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
  3293. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
  3294. set_default $PATHS_LIST
  3295. set_default nm
  3296. # we need to build at least one lib type
  3297. if ! enabled_any static shared; then
  3298. cat <<EOF
  3299. At least one library type must be built.
  3300. Specify --enable-static to build the static libraries or --enable-shared to
  3301. build the shared libraries as well. To only build the shared libraries specify
  3302. --disable-static in addition to --enable-shared.
  3303. EOF
  3304. exit 1;
  3305. fi
  3306. die_license_disabled() {
  3307. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  3308. }
  3309. die_license_disabled gpl libcdio
  3310. die_license_disabled gpl libx264
  3311. die_license_disabled gpl libx265
  3312. die_license_disabled gpl libxavs
  3313. die_license_disabled gpl libxvid
  3314. die_license_disabled gpl x11grab
  3315. die_license_disabled nonfree libfaac
  3316. die_license_disabled nonfree libfdk_aac
  3317. die_license_disabled nonfree openssl
  3318. die_license_disabled version3 libopencore_amrnb
  3319. die_license_disabled version3 libopencore_amrwb
  3320. die_license_disabled version3 libvo_aacenc
  3321. die_license_disabled version3 libvo_amrwbenc
  3322. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  3323. disabled optimizations || check_cflags -fomit-frame-pointer
  3324. enable_weak_pic() {
  3325. disabled pic && return
  3326. enable pic
  3327. add_cppflags -DPIC
  3328. case "$target_os" in
  3329. mingw*|cygwin*)
  3330. ;;
  3331. *)
  3332. add_cflags -fPIC
  3333. ;;
  3334. esac
  3335. add_asflags -fPIC
  3336. }
  3337. enabled pic && enable_weak_pic
  3338. check_cc <<EOF || die "Symbol mangling check failed."
  3339. int ff_extern;
  3340. EOF
  3341. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  3342. extern_prefix=${sym%%ff_extern*}
  3343. check_cc <<EOF && enable_weak inline_asm
  3344. void foo(void) { __asm__ volatile ("" ::); }
  3345. EOF
  3346. _restrict=
  3347. for restrict_keyword in restrict __restrict__ __restrict; do
  3348. check_cc <<EOF && _restrict=$restrict_keyword && break
  3349. void foo(char * $restrict_keyword p);
  3350. EOF
  3351. done
  3352. check_cc <<EOF && enable pragma_deprecated
  3353. void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
  3354. EOF
  3355. check_cc <<EOF && enable attribute_packed
  3356. struct { int x; } __attribute__((packed)) x;
  3357. EOF
  3358. check_cc <<EOF && enable attribute_may_alias
  3359. union { int x; } __attribute__((may_alias)) x;
  3360. EOF
  3361. check_cc <<EOF || die "endian test failed"
  3362. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  3363. EOF
  3364. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  3365. check_inline_asm inline_asm_labels '"1:\n"'
  3366. if enabled aarch64; then
  3367. enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
  3368. # internal assembler in clang 3.3 does not support this instruction
  3369. enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
  3370. enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
  3371. map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
  3372. elif enabled alpha; then
  3373. check_cflags -mieee
  3374. elif enabled arm; then
  3375. check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb
  3376. enabled thumb && check_cflags -mthumb || check_cflags -marm
  3377. nogas=die
  3378. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  3379. enable vfp_args
  3380. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  3381. case "${cross_prefix:-$cc}" in
  3382. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  3383. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  3384. __asm__ (".eabi_attribute 28, 1");
  3385. int main(void) { return 0; }
  3386. EOF
  3387. esac
  3388. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  3389. fi
  3390. enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
  3391. enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
  3392. enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
  3393. enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
  3394. enabled vfp && check_insn vfp 'fadds s0, s0, s0'
  3395. enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
  3396. [ $target_os = linux ] ||
  3397. map 'enabled_any ${v}_external ${v}_inline || disable $v' \
  3398. $ARCH_EXT_LIST_ARM
  3399. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  3400. [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
  3401. elif enabled mips; then
  3402. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  3403. elif enabled parisc; then
  3404. if enabled gcc; then
  3405. case $($cc -dumpversion) in
  3406. 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
  3407. esac
  3408. fi
  3409. elif enabled ppc; then
  3410. enable local_aligned_8 local_aligned_16
  3411. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  3412. check_inline_asm ibm_asm '"add 0, 0, 0"'
  3413. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  3414. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  3415. # AltiVec flags: The FSF version of GCC differs from the Apple version
  3416. if enabled altivec; then
  3417. nogas=warn
  3418. check_cflags -maltivec -mabi=altivec &&
  3419. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  3420. check_cflags -faltivec
  3421. # check if our compiler supports Motorola AltiVec C API
  3422. check_cc <<EOF || disable altivec
  3423. $inc_altivec_h
  3424. int main(void) {
  3425. vector signed int v1 = (vector signed int) { 0 };
  3426. vector signed int v2 = (vector signed int) { 1 };
  3427. v1 = vec_add(v1, v2);
  3428. return 0;
  3429. }
  3430. EOF
  3431. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  3432. fi
  3433. elif enabled x86; then
  3434. check_builtin rdtsc intrin.h "__rdtsc()"
  3435. check_builtin mm_empty mmintrin.h "_mm_empty()"
  3436. enable local_aligned_8 local_aligned_16
  3437. # check whether EBP is available on x86
  3438. # As 'i' is stored on the stack, this program will crash
  3439. # if the base pointer is used to access it because the
  3440. # base pointer is cleared in the inline assembly code.
  3441. check_exec_crash <<EOF && enable ebp_available
  3442. volatile int i=0;
  3443. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  3444. return i;
  3445. EOF
  3446. # check whether EBX is available on x86
  3447. check_inline_asm ebx_available '""::"b"(0)' &&
  3448. check_inline_asm ebx_available '"":::"%ebx"'
  3449. # check whether xmm clobbers are supported
  3450. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  3451. # check whether binutils is new enough to compile SSSE3/MMXEXT
  3452. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  3453. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  3454. if ! disabled_any asm mmx yasm; then
  3455. if check_cmd $yasmexe --version; then
  3456. enabled x86_64 && yasm_extra="-m amd64"
  3457. yasm_debug="-g dwarf2"
  3458. elif check_cmd nasm -v; then
  3459. yasmexe=nasm
  3460. yasm_debug="-g -F dwarf"
  3461. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  3462. fi
  3463. YASMFLAGS="-f $objformat $yasm_extra"
  3464. enabled pic && append YASMFLAGS "-DPIC"
  3465. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  3466. case "$objformat" in
  3467. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  3468. esac
  3469. check_yasm "movbe ecx, [5]" && enable yasm ||
  3470. die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
  3471. check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
  3472. check_yasm "vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external
  3473. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  3474. check_yasm "CPU amdnop" || disable cpunop
  3475. fi
  3476. case "$cpu" in
  3477. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  3478. disable fast_clz
  3479. ;;
  3480. esac
  3481. fi
  3482. if enabled asm; then
  3483. as=${gas:=$as}
  3484. check_as <<EOF && enable gnu_as || \
  3485. $nogas "GNU assembler not found, install gas-preprocessor"
  3486. .macro m n
  3487. \n: .int 0
  3488. .endm
  3489. m x
  3490. EOF
  3491. fi
  3492. check_ldflags -Wl,--as-needed
  3493. if check_func dlopen; then
  3494. ldl=
  3495. elif check_func dlopen -ldl; then
  3496. ldl=-ldl
  3497. fi
  3498. if ! disabled network; then
  3499. check_func getaddrinfo $network_extralibs
  3500. check_func getservbyport $network_extralibs
  3501. check_func inet_aton $network_extralibs
  3502. check_type netdb.h "struct addrinfo"
  3503. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  3504. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  3505. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  3506. check_type poll.h "struct pollfd"
  3507. check_type netinet/sctp.h "struct sctp_event_subscribe"
  3508. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  3509. check_type netinet/in.h "struct sockaddr_in6"
  3510. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  3511. check_type "sys/types.h sys/socket.h" socklen_t
  3512. # Prefer arpa/inet.h over winsock2
  3513. if check_header arpa/inet.h ; then
  3514. check_func closesocket
  3515. elif check_header winsock2.h ; then
  3516. check_func_headers winsock2.h closesocket -lws2 &&
  3517. network_extralibs="-lws2" ||
  3518. { check_func_headers winsock2.h closesocket -lws2_32 &&
  3519. network_extralibs="-lws2_32"; } || disable winsock2_h network
  3520. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  3521. check_type ws2tcpip.h socklen_t
  3522. check_type ws2tcpip.h "struct addrinfo"
  3523. check_type ws2tcpip.h "struct group_source_req"
  3524. check_type ws2tcpip.h "struct ip_mreq_source"
  3525. check_type ws2tcpip.h "struct ipv6_mreq"
  3526. check_type winsock2.h "struct pollfd"
  3527. check_struct winsock2.h "struct sockaddr" sa_len
  3528. check_type ws2tcpip.h "struct sockaddr_in6"
  3529. check_type ws2tcpip.h "struct sockaddr_storage"
  3530. else
  3531. disable network
  3532. fi
  3533. fi
  3534. check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
  3535. check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
  3536. check_builtin MemoryBarrier windows.h "MemoryBarrier()"
  3537. check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
  3538. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  3539. check_func ${malloc_prefix}memalign && enable memalign
  3540. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  3541. check_func fcntl
  3542. check_func fork
  3543. check_func gethrtime
  3544. check_func getopt
  3545. check_func getrusage
  3546. check_func gettimeofday
  3547. check_func isatty
  3548. check_func localtime_r
  3549. check_func mach_absolute_time
  3550. check_func mkstemp
  3551. check_func mmap
  3552. check_func mprotect
  3553. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  3554. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  3555. check_func sched_getaffinity
  3556. check_func setrlimit
  3557. check_func strerror_r
  3558. check_func strptime
  3559. check_func sysconf
  3560. check_func sysctl
  3561. check_func usleep
  3562. check_func_headers io.h setmode
  3563. check_func_headers stdlib.h getenv
  3564. check_func_headers windows.h GetProcessAffinityMask
  3565. check_func_headers windows.h GetProcessTimes
  3566. check_func_headers windows.h GetSystemTimeAsFileTime
  3567. check_func_headers windows.h MapViewOfFile
  3568. check_func_headers windows.h SetConsoleTextAttribute
  3569. check_func_headers windows.h Sleep
  3570. check_func_headers windows.h VirtualAlloc
  3571. check_header direct.h
  3572. check_header dlfcn.h
  3573. check_header dxva.h
  3574. check_header dxva2api.h
  3575. check_header io.h
  3576. check_header mach/mach_time.h
  3577. check_header malloc.h
  3578. check_header poll.h
  3579. check_header sys/mman.h
  3580. check_header sys/param.h
  3581. check_header sys/resource.h
  3582. check_header sys/select.h
  3583. check_header sys/time.h
  3584. check_header sys/un.h
  3585. check_header unistd.h
  3586. check_header vdpau/vdpau.h
  3587. check_header vdpau/vdpau_x11.h
  3588. check_header VideoDecodeAcceleration/VDADecoder.h
  3589. check_header windows.h
  3590. check_header X11/extensions/XvMClib.h
  3591. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3592. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  3593. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3594. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  3595. if ! disabled w32threads && ! enabled pthreads; then
  3596. check_func_headers "windows.h process.h" _beginthreadex &&
  3597. enable w32threads || disable w32threads
  3598. fi
  3599. # check for some common methods of building with pthread support
  3600. # do this before the optional library checks as some of them require pthreads
  3601. if ! disabled pthreads && ! enabled w32threads; then
  3602. enable pthreads
  3603. if check_func pthread_join -pthread; then
  3604. add_cflags -pthread
  3605. add_extralibs -pthread
  3606. elif check_func pthread_join -pthreads; then
  3607. add_cflags -pthreads
  3608. add_extralibs -pthreads
  3609. elif check_func pthread_join -lpthreadGC2; then
  3610. add_extralibs -lpthreadGC2
  3611. elif check_lib pthread.h pthread_join -lpthread; then
  3612. :
  3613. elif ! check_func pthread_join; then
  3614. disable pthreads
  3615. fi
  3616. fi
  3617. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3618. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3619. check_lib math.h sin -lm && LIBM="-lm"
  3620. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3621. atan2f_args=2
  3622. ldexpf_args=2
  3623. powf_args=2
  3624. for func in $MATH_FUNCS; do
  3625. eval check_mathfunc $func \${${func}_args:-1}
  3626. done
  3627. # these are off by default, so fail if requested and not available
  3628. enabled avisynth && { { check_header "avisynth/avisynth_c.h" && check_lib2 "windows.h" LoadLibrary; } ||
  3629. { check_header "avxsynth/avxsynth_c.h" && check_lib2 "dlfcn.h" dlopen -ldl; } ||
  3630. die "ERROR: LoadLibrary/dlopen not found, or avisynth header not found"; }
  3631. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3632. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3633. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3634. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3635. enabled libfreetype && require_pkg_config freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType
  3636. enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
  3637. check_lib "${gsm_hdr}" gsm_create -lgsm && break;
  3638. done || die "ERROR: libgsm not found"; }
  3639. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3640. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3641. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3642. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3643. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  3644. enabled libopenjpeg && { { check_header openjpeg.h && check_lib2 openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC; } ||
  3645. { require_pkg_config libopenjpeg1 openjpeg.h opj_version -DOPJ_STATIC; } }
  3646. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3647. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3648. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3649. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3650. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3651. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3652. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3653. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3654. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3655. enabled libvpx && {
  3656. enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3657. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  3658. enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_CQ" -lvpx ||
  3659. die "ERROR: libvpx encoder version must be >=0.9.6"; }
  3660. enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
  3661. enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx" -lvpx || disable libvpx_vp9_encoder; } }
  3662. enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
  3663. enabled libwebp && require_pkg_config libwebp webp/encode.h WebPGetEncoderVersion
  3664. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3665. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3666. die "ERROR: libx264 version must be >= 0.118."; }
  3667. enabled libx265 && require_pkg_config x265 x265.h x265_encoder_encode &&
  3668. { check_cpp_condition x265.h "X265_BUILD >= 13" ||
  3669. die "ERROR: libx265 version must be >= 13."; }
  3670. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3671. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3672. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3673. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3674. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3675. die "ERROR: openssl not found"; }
  3676. if enabled gnutls; then
  3677. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3678. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3679. fi
  3680. # libdc1394 check
  3681. if enabled libdc1394; then
  3682. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3683. enable libdc1394_2; } ||
  3684. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3685. enable libdc1394_1; } ||
  3686. die "ERROR: No version of libdc1394 found "
  3687. fi
  3688. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3689. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3690. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
  3691. enable sdl
  3692. fi
  3693. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  3694. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  3695. check_header linux/fb.h
  3696. check_header linux/videodev2.h
  3697. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3698. check_header sys/videoio.h
  3699. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3700. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3701. # w32api 3.12 had it defined wrong
  3702. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3703. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3704. { check_header dev/bktr/ioctl_meteor.h &&
  3705. check_header dev/bktr/ioctl_bt848.h; } ||
  3706. { check_header machine/ioctl_meteor.h &&
  3707. check_header machine/ioctl_bt848.h; } ||
  3708. { check_header dev/video/meteor/ioctl_meteor.h &&
  3709. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3710. check_header dev/ic/bt8xx.h
  3711. check_header sndio.h
  3712. check_header sys/soundcard.h
  3713. check_header soundcard.h
  3714. enabled_any alsa_indev alsa_outdev &&
  3715. check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3716. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  3717. check_func jack_port_get_latency_range -ljack
  3718. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3719. if enabled libcdio; then
  3720. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  3721. check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio
  3722. fi
  3723. check_lib X11/Xlib.h XOpenDisplay -lX11 && enable xlib
  3724. enabled x11grab &&
  3725. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3726. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes &&
  3727. { enabled xlib || die "ERROR: Xlib not found"; }
  3728. enabled vdpau &&
  3729. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3730. disable vdpau
  3731. enabled vdpau && enabled xlib &&
  3732. check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
  3733. prepend avconv_libs $($ldflags_filter "-lvdpau") &&
  3734. enable vdpau_x11
  3735. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3736. # add some useful compiler flags if supported
  3737. check_cflags -Wdeclaration-after-statement
  3738. check_cflags -Wall
  3739. check_cflags -Wdisabled-optimization
  3740. check_cflags -Wpointer-arith
  3741. check_cflags -Wredundant-decls
  3742. check_cflags -Wcast-qual
  3743. check_cflags -Wwrite-strings
  3744. check_cflags -Wtype-limits
  3745. check_cflags -Wundef
  3746. check_cflags -Wmissing-prototypes
  3747. check_cflags -Wstrict-prototypes
  3748. enabled extra_warnings && check_cflags -Winline
  3749. check_disable_warning(){
  3750. warning_flag=-W${1#-Wno-}
  3751. test_cflags $warning_flag && add_cflags $1
  3752. }
  3753. check_disable_warning -Wno-parentheses
  3754. check_disable_warning -Wno-switch
  3755. check_disable_warning -Wno-format-zero-length
  3756. check_disable_warning -Wno-pointer-sign
  3757. # add some linker flags
  3758. check_ldflags -Wl,--warn-common
  3759. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3760. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3761. # add some strip flags
  3762. # -wN '..@*' is more selective than -x, but not available everywhere.
  3763. check_stripflags -wN \'..@*\' || check_stripflags -x || strip='true'
  3764. enabled neon_clobber_test &&
  3765. check_ldflags -Wl,--wrap,avcodec_open2 \
  3766. -Wl,--wrap,avcodec_decode_audio4 \
  3767. -Wl,--wrap,avcodec_decode_video2 \
  3768. -Wl,--wrap,avcodec_decode_subtitle2 \
  3769. -Wl,--wrap,avcodec_encode_audio2 \
  3770. -Wl,--wrap,avcodec_encode_video2 \
  3771. -Wl,--wrap,avcodec_encode_subtitle \
  3772. -Wl,--wrap,avresample_convert ||
  3773. disable neon_clobber_test
  3774. enabled xmm_clobber_test &&
  3775. check_ldflags -Wl,--wrap,avcodec_open2 \
  3776. -Wl,--wrap,avcodec_decode_audio4 \
  3777. -Wl,--wrap,avcodec_decode_video2 \
  3778. -Wl,--wrap,avcodec_decode_subtitle2 \
  3779. -Wl,--wrap,avcodec_encode_audio2 \
  3780. -Wl,--wrap,avcodec_encode_video2 \
  3781. -Wl,--wrap,avcodec_encode_subtitle \
  3782. -Wl,--wrap,avresample_convert \
  3783. -Wl,--wrap,sws_scale ||
  3784. disable xmm_clobber_test
  3785. echo "X{};" > $TMPV
  3786. if test_ldflags -Wl,--version-script,$TMPV; then
  3787. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3788. check_cc <<EOF && enable symver_asm_label
  3789. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3790. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3791. EOF
  3792. check_cc <<EOF && enable symver_gnu_asm
  3793. __asm__(".symver ff_foo,av_foo@VERSION");
  3794. void ff_foo(void) {}
  3795. EOF
  3796. fi
  3797. if [ -z "$optflags" ]; then
  3798. if enabled small; then
  3799. optflags=$cflags_size
  3800. elif enabled optimizations; then
  3801. optflags=$cflags_speed
  3802. else
  3803. optflags=$cflags_noopt
  3804. fi
  3805. fi
  3806. check_optflags(){
  3807. check_cflags "$@"
  3808. enabled lto && check_ldflags "$@"
  3809. }
  3810. if enabled lto; then
  3811. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3812. check_cflags -flto
  3813. check_ldflags -flto $cpuflags
  3814. fi
  3815. check_optflags $optflags
  3816. check_optflags -fno-math-errno
  3817. check_optflags -fno-signed-zeros
  3818. if enabled icc; then
  3819. # Just warnings, no remarks
  3820. check_cflags -w1
  3821. # -wd: Disable following warnings
  3822. # 144, 167, 556: -Wno-pointer-sign
  3823. # 1292: attribute "foo" ignored
  3824. # 1419: external declaration in primary source file
  3825. # 10006: ignoring unknown option -fno-signed-zeros
  3826. # 10148: ignoring unknown option -Wno-parentheses
  3827. # 10156: ignoring option '-W'; no argument required
  3828. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3829. # 11030: Warning unknown option --as-needed
  3830. # 10156: ignoring option '-export'; no argument required
  3831. check_ldflags -wd10156,11030
  3832. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3833. enable ebp_available
  3834. if enabled x86_32; then
  3835. icc_version=$($cc -dumpversion)
  3836. test ${icc_version%%.*} -ge 11 &&
  3837. check_cflags -falign-stack=maintain-16-byte ||
  3838. disable aligned_stack
  3839. fi
  3840. elif enabled ccc; then
  3841. # disable some annoying warnings
  3842. add_cflags -msg_disable bitnotint
  3843. add_cflags -msg_disable mixfuncvoid
  3844. add_cflags -msg_disable nonstandcast
  3845. add_cflags -msg_disable unsupieee
  3846. elif enabled gcc; then
  3847. check_optflags -fno-tree-vectorize
  3848. check_cflags -Werror=implicit-function-declaration
  3849. check_cflags -Werror=missing-prototypes
  3850. check_cflags -Werror=return-type
  3851. check_cflags -Werror=declaration-after-statement
  3852. check_cflags -Werror=vla
  3853. enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
  3854. elif enabled llvm_gcc; then
  3855. check_cflags -mllvm -stack-alignment=16
  3856. elif enabled clang; then
  3857. check_cflags -mllvm -stack-alignment=16
  3858. check_cflags -Qunused-arguments
  3859. check_cflags -Werror=implicit-function-declaration
  3860. check_cflags -Werror=missing-prototypes
  3861. check_cflags -Werror=return-type
  3862. elif enabled cparser; then
  3863. add_cflags -Wno-missing-variable-declarations
  3864. add_cflags -Wno-empty-statement
  3865. elif enabled armcc; then
  3866. # 2523: use of inline assembler is deprecated
  3867. add_cflags -W${armcc_opt},--diag_suppress=2523
  3868. add_cflags -W${armcc_opt},--diag_suppress=1207
  3869. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3870. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3871. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3872. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3873. elif enabled tms470; then
  3874. add_cflags -pds=824 -pds=837
  3875. disable inline_asm
  3876. elif enabled pathscale; then
  3877. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3878. elif enabled_any msvc icl; then
  3879. enabled x86_32 && disable aligned_stack
  3880. enabled_all x86_32 debug && add_cflags -Oy-
  3881. enabled debug && add_ldflags -debug
  3882. enable pragma_deprecated
  3883. if enabled icl; then
  3884. # -Qansi-alias is basically -fstrict-aliasing, but does not work
  3885. # (correctly) on icl 13.x.
  3886. check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
  3887. add_cflags -Qansi-alias
  3888. # icl will pass the inline asm tests but inline asm is currently
  3889. # not supported (build will fail)
  3890. disable inline_asm
  3891. fi
  3892. fi
  3893. case $as_type in
  3894. clang)
  3895. add_asflags -Qunused-arguments
  3896. ;;
  3897. esac
  3898. case $ld_type in
  3899. clang)
  3900. check_ldflags -Qunused-arguments
  3901. ;;
  3902. esac
  3903. case $target_os in
  3904. osf1)
  3905. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  3906. ;;
  3907. plan9)
  3908. add_cppflags -Dmain=plan9_main
  3909. ;;
  3910. esac
  3911. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3912. check_deps $CONFIG_LIST \
  3913. $CONFIG_EXTRA \
  3914. $HAVE_LIST \
  3915. $ALL_COMPONENTS \
  3916. ! enabled_any memalign posix_memalign aligned_malloc &&
  3917. enabled_any $need_memalign && enable memalign_hack
  3918. for thread in $THREADS_LIST; do
  3919. if enabled $thread; then
  3920. test -n "$thread_type" &&
  3921. die "ERROR: Only one thread type must be selected." ||
  3922. thread_type="$thread"
  3923. fi
  3924. done
  3925. echo "install prefix $prefix"
  3926. echo "source path $source_path"
  3927. echo "C compiler $cc"
  3928. echo "C library $libc_type"
  3929. if test "$host_cc" != "$cc"; then
  3930. echo "host C compiler $host_cc"
  3931. echo "host C library $host_libc_type"
  3932. fi
  3933. echo "ARCH $arch ($cpu)"
  3934. if test "$build_suffix" != ""; then
  3935. echo "build suffix $build_suffix"
  3936. fi
  3937. if test "$extra_version" != ""; then
  3938. echo "version string suffix $extra_version"
  3939. fi
  3940. echo "big-endian ${bigendian-no}"
  3941. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3942. if enabled x86; then
  3943. echo "${yasmexe} ${yasm-no}"
  3944. echo "MMX enabled ${mmx-no}"
  3945. echo "MMXEXT enabled ${mmxext-no}"
  3946. echo "3DNow! enabled ${amd3dnow-no}"
  3947. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3948. echo "SSE enabled ${sse-no}"
  3949. echo "SSSE3 enabled ${ssse3-no}"
  3950. echo "AVX enabled ${avx-no}"
  3951. echo "XOP enabled ${xop-no}"
  3952. echo "FMA3 enabled ${fma3-no}"
  3953. echo "FMA4 enabled ${fma4-no}"
  3954. echo "i686 features enabled ${i686-no}"
  3955. echo "CMOV is fast ${fast_cmov-no}"
  3956. echo "EBX available ${ebx_available-no}"
  3957. echo "EBP available ${ebp_available-no}"
  3958. fi
  3959. if enabled aarch64; then
  3960. echo "NEON enabled ${neon-no}"
  3961. echo "VFP enabled ${vfp-no}"
  3962. fi
  3963. if enabled arm; then
  3964. echo "ARMv5TE enabled ${armv5te-no}"
  3965. echo "ARMv6 enabled ${armv6-no}"
  3966. echo "ARMv6T2 enabled ${armv6t2-no}"
  3967. echo "VFP enabled ${vfp-no}"
  3968. echo "NEON enabled ${neon-no}"
  3969. fi
  3970. if enabled ppc; then
  3971. echo "AltiVec enabled ${altivec-no}"
  3972. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3973. echo "dcbzl available ${dcbzl-no}"
  3974. fi
  3975. echo "debug symbols ${debug-no}"
  3976. echo "optimize for size ${small-no}"
  3977. echo "optimizations ${optimizations-no}"
  3978. echo "static ${static-no}"
  3979. echo "shared ${shared-no}"
  3980. echo "new filter support ${avfilter-no}"
  3981. echo "network support ${network-no}"
  3982. echo "threading support ${thread_type-no}"
  3983. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3984. echo "SDL support ${sdl-no}"
  3985. test -n "$random_seed" &&
  3986. echo "random seed ${random_seed}"
  3987. echo
  3988. echo "External libraries:"
  3989. print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
  3990. echo
  3991. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3992. echo "Enabled ${type}s:"
  3993. eval list=\$$(toupper $type)_LIST
  3994. print_enabled '_*' $list | print_3_columns
  3995. echo
  3996. done
  3997. license="LGPL version 2.1 or later"
  3998. if enabled nonfree; then
  3999. license="nonfree and unredistributable"
  4000. elif enabled gplv3; then
  4001. license="GPL version 3 or later"
  4002. elif enabled lgplv3; then
  4003. license="LGPL version 3 or later"
  4004. elif enabled gpl; then
  4005. license="GPL version 2 or later"
  4006. fi
  4007. echo "License: $license"
  4008. echo "Creating config.mak and config.h..."
  4009. test -e Makefile || echo "include $source_path/Makefile" > Makefile
  4010. config_files="$TMPH config.mak"
  4011. cat > config.mak <<EOF
  4012. # Automatically generated by configure - do not modify!
  4013. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  4014. prefix=$prefix
  4015. LIBDIR=\$(DESTDIR)$libdir
  4016. SHLIBDIR=\$(DESTDIR)$shlibdir
  4017. INCDIR=\$(DESTDIR)$incdir
  4018. BINDIR=\$(DESTDIR)$bindir
  4019. DATADIR=\$(DESTDIR)$datadir
  4020. DOCDIR=\$(DESTDIR)$docdir
  4021. MANDIR=\$(DESTDIR)$mandir
  4022. SRC_PATH=$source_path
  4023. CC_IDENT=$cc_ident
  4024. ARCH=$arch
  4025. CC=$cc
  4026. AS=$as
  4027. LD=$ld
  4028. DEPCC=$dep_cc
  4029. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  4030. DEPAS=$as
  4031. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  4032. YASM=$yasmexe
  4033. DEPYASM=$yasmexe
  4034. AR=$ar
  4035. ARFLAGS=$arflags
  4036. AR_O=$ar_o
  4037. RANLIB=$ranlib
  4038. STRIP=$strip
  4039. LN_S=$ln_s
  4040. CPPFLAGS=$CPPFLAGS
  4041. CFLAGS=$CFLAGS
  4042. ASFLAGS=$ASFLAGS
  4043. AS_C=$AS_C
  4044. AS_O=$AS_O
  4045. CC_C=$CC_C
  4046. CC_E=$CC_E
  4047. CC_O=$CC_O
  4048. LD_O=$LD_O
  4049. LD_LIB=$LD_LIB
  4050. LD_PATH=$LD_PATH
  4051. DLLTOOL=$dlltool
  4052. LDFLAGS=$LDFLAGS
  4053. SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
  4054. STRIPFLAGS=$STRIPFLAGS
  4055. YASMFLAGS=$YASMFLAGS
  4056. BUILDSUF=$build_suffix
  4057. FULLNAME=$FULLNAME
  4058. LIBPREF=$LIBPREF
  4059. LIBSUF=$LIBSUF
  4060. LIBNAME=$LIBNAME
  4061. SLIBPREF=$SLIBPREF
  4062. SLIBSUF=$SLIBSUF
  4063. EXESUF=$EXESUF
  4064. EXTRA_VERSION=$extra_version
  4065. CCDEP=$CCDEP
  4066. CCDEP_FLAGS=$CCDEP_FLAGS
  4067. ASDEP=$ASDEP
  4068. ASDEP_FLAGS=$ASDEP_FLAGS
  4069. CC_DEPFLAGS=$CC_DEPFLAGS
  4070. AS_DEPFLAGS=$AS_DEPFLAGS
  4071. HOSTCC=$host_cc
  4072. HOSTLD=$host_ld
  4073. HOSTCFLAGS=$host_cflags
  4074. HOSTCPPFLAGS=$host_cppflags
  4075. HOSTEXESUF=$HOSTEXESUF
  4076. HOSTLDFLAGS=$host_ldflags
  4077. HOSTLIBS=$host_libs
  4078. DEPHOSTCC=$host_cc
  4079. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  4080. HOSTCCDEP=$HOSTCCDEP
  4081. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  4082. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  4083. HOSTCC_C=$HOSTCC_C
  4084. HOSTCC_O=$HOSTCC_O
  4085. HOSTLD_O=$HOSTLD_O
  4086. TARGET_EXEC=$target_exec $target_exec_args
  4087. TARGET_PATH=$target_path
  4088. TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
  4089. CFLAGS-avplay=$sdl_cflags
  4090. ZLIB=$($ldflags_filter -lz)
  4091. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  4092. EXTRALIBS=$extralibs
  4093. COMPAT_OBJS=$compat_objs
  4094. EXEOBJS=$exeobjs
  4095. INSTALL=install
  4096. LIBTARGET=${LIBTARGET}
  4097. SLIBNAME=${SLIBNAME}
  4098. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  4099. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  4100. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  4101. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  4102. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  4103. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  4104. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  4105. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  4106. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  4107. EOF
  4108. get_version(){
  4109. lcname=lib${1}
  4110. name=$(toupper $lcname)
  4111. file=$source_path/$lcname/version.h
  4112. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  4113. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  4114. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  4115. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  4116. eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
  4117. }
  4118. map 'get_version $v' $LIBRARY_LIST
  4119. print_program_libs(){
  4120. eval "program_libs=\$${1}_libs"
  4121. eval echo "LIBS-${1}=${program_libs}" >> config.mak
  4122. }
  4123. map 'print_program_libs $v' $PROGRAM_LIST
  4124. cat > $TMPH <<EOF
  4125. /* Automatically generated by configure - do not modify! */
  4126. #ifndef LIBAV_CONFIG_H
  4127. #define LIBAV_CONFIG_H
  4128. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  4129. #define LIBAV_LICENSE "$(c_escape $license)"
  4130. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  4131. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  4132. #define restrict $_restrict
  4133. #define EXTERN_PREFIX "${extern_prefix}"
  4134. #define EXTERN_ASM ${extern_prefix}
  4135. #define SLIBSUF "$SLIBSUF"
  4136. EOF
  4137. test -n "$malloc_prefix" &&
  4138. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  4139. if enabled yasm; then
  4140. append config_files $TMPASM
  4141. printf '' >$TMPASM
  4142. fi
  4143. enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
  4144. print_config ARCH_ "$config_files" $ARCH_LIST
  4145. print_config HAVE_ "$config_files" $HAVE_LIST
  4146. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  4147. $CONFIG_EXTRA \
  4148. $ALL_COMPONENTS \
  4149. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  4150. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  4151. cp_if_changed $TMPH config.h
  4152. touch .config
  4153. enabled yasm && cp_if_changed $TMPASM config.asm
  4154. cat > $TMPH <<EOF
  4155. /* Generated by ffconf */
  4156. #ifndef AVUTIL_AVCONFIG_H
  4157. #define AVUTIL_AVCONFIG_H
  4158. EOF
  4159. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  4160. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  4161. cp_if_changed $TMPH libavutil/avconfig.h
  4162. test -n "$WARNINGS" && printf "\n$WARNINGS"
  4163. # build pkg-config files
  4164. pkgconfig_generate(){
  4165. name=$1
  4166. shortname=${name#lib}${build_suffix}
  4167. comment=$2
  4168. version=$3
  4169. libs=$4
  4170. requires=$5
  4171. enabled ${name#lib} || return 0
  4172. mkdir -p $name
  4173. cat <<EOF > $name/$name.pc
  4174. prefix=$prefix
  4175. exec_prefix=\${prefix}
  4176. libdir=$libdir
  4177. includedir=$incdir
  4178. Name: $name
  4179. Description: $comment
  4180. Version: $version
  4181. Requires: $(enabled shared || echo $requires)
  4182. Requires.private: $(enabled shared && echo $requires)
  4183. Conflicts:
  4184. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  4185. Libs.private: $(enabled shared && echo $libs)
  4186. Cflags: -I\${includedir}
  4187. EOF
  4188. cat <<EOF > $name/$name-uninstalled.pc
  4189. prefix=
  4190. exec_prefix=
  4191. libdir=\${pcfiledir}
  4192. includedir=${source_path}
  4193. Name: $name
  4194. Description: $comment
  4195. Version: $version
  4196. Requires: $requires
  4197. Conflicts:
  4198. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  4199. Cflags: -I\${includedir}
  4200. EOF
  4201. }
  4202. lavfi_libs="libavutil = $LIBAVUTIL_VERSION"
  4203. enabled movie_filter && prepend lavfi_libs "libavformat >= $LIBAVFORMAT_VERSION, libavcodec >= $LIBAVCODEC_VERSION,"
  4204. enabled resample_filter && prepend lavfi_libs "libavresample >= $LIBAVRESAMPLE_VERSION,"
  4205. enabled scale_filter && prepend lavfi_libs "libswscale >= $LIBSWSCALE_VERSION,"
  4206. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  4207. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  4208. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  4209. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  4210. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$lavfi_libs"
  4211. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  4212. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"