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.

3871 lines
112KB

  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. --libdir=DIR install libs in DIR [PREFIX/lib]
  75. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  76. --incdir=DIR install includes in DIR [PREFIX/include]
  77. --mandir=DIR install man page in DIR [PREFIX/share/man]
  78. Licensing options:
  79. --enable-gpl allow use of GPL code, the resulting libs
  80. and binaries will be under GPL [no]
  81. --enable-version3 upgrade (L)GPL to version 3 [no]
  82. --enable-nonfree allow use of nonfree code, the resulting libs
  83. and binaries will be unredistributable [no]
  84. Configuration options:
  85. --disable-static do not build static libraries [no]
  86. --enable-shared build shared libraries [no]
  87. --enable-small optimize for size instead of speed
  88. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  89. --enable-gray enable full grayscale support (slower color)
  90. --disable-swscale-alpha disable alpha channel support in swscale
  91. Component options:
  92. --disable-doc do not build documentation
  93. --disable-avconv disable avconv build
  94. --disable-avplay disable avplay build
  95. --disable-avprobe disable avprobe build
  96. --disable-avserver disable avserver build
  97. --disable-avdevice disable libavdevice build
  98. --disable-avcodec disable libavcodec build
  99. --disable-avformat disable libavformat build
  100. --disable-swscale disable libswscale build
  101. --disable-avfilter disable video filter support [no]
  102. --disable-avresample disable libavresample build [no]
  103. --disable-pthreads disable pthreads [auto]
  104. --disable-w32threads disable Win32 threads [auto]
  105. --enable-x11grab enable X11 grabbing [no]
  106. --disable-network disable network support [no]
  107. --disable-dct disable DCT code
  108. --disable-dwt disable DWT code
  109. --disable-lsp disable LSP code
  110. --disable-mdct disable MDCT code
  111. --disable-rdft disable RDFT code
  112. --disable-fft disable FFT code
  113. --enable-dxva2 enable DXVA2 code
  114. --enable-vaapi enable VAAPI code
  115. --enable-vda enable VDA code
  116. --enable-vdpau enable VDPAU code
  117. Individual component options:
  118. --disable-everything disable all components listed below
  119. --disable-encoder=NAME disable encoder NAME
  120. --enable-encoder=NAME enable encoder NAME
  121. --disable-encoders disable all encoders
  122. --disable-decoder=NAME disable decoder NAME
  123. --enable-decoder=NAME enable decoder NAME
  124. --disable-decoders disable all decoders
  125. --disable-hwaccel=NAME disable hwaccel NAME
  126. --enable-hwaccel=NAME enable hwaccel NAME
  127. --disable-hwaccels disable all hwaccels
  128. --disable-muxer=NAME disable muxer NAME
  129. --enable-muxer=NAME enable muxer NAME
  130. --disable-muxers disable all muxers
  131. --disable-demuxer=NAME disable demuxer NAME
  132. --enable-demuxer=NAME enable demuxer NAME
  133. --disable-demuxers disable all demuxers
  134. --enable-parser=NAME enable parser NAME
  135. --disable-parser=NAME disable parser NAME
  136. --disable-parsers disable all parsers
  137. --enable-bsf=NAME enable bitstream filter NAME
  138. --disable-bsf=NAME disable bitstream filter NAME
  139. --disable-bsfs disable all bitstream filters
  140. --enable-protocol=NAME enable protocol NAME
  141. --disable-protocol=NAME disable protocol NAME
  142. --disable-protocols disable all protocols
  143. --enable-indev=NAME enable input device NAME
  144. --disable-indev=NAME disable input device NAME
  145. --disable-indevs disable input devices
  146. --enable-outdev=NAME enable output device NAME
  147. --disable-outdev=NAME disable output device NAME
  148. --disable-outdevs disable output devices
  149. --disable-devices disable all devices
  150. --enable-filter=NAME enable filter NAME
  151. --disable-filter=NAME disable filter NAME
  152. --disable-filters disable all filters
  153. External library support:
  154. --enable-avisynth enable reading of AVISynth script files [no]
  155. --enable-bzlib enable bzlib [autodetect]
  156. --enable-frei0r enable frei0r video filtering
  157. --enable-gnutls enable gnutls [no]
  158. --enable-libcdio enable audio CD grabbing with libcdio
  159. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  160. and libraw1394 [no]
  161. --enable-libfaac enable AAC encoding via libfaac [no]
  162. --enable-libfdk-aac enable AAC encoding via libfdk-aac [no]
  163. --enable-libfreetype enable libfreetype [no]
  164. --enable-libgsm enable GSM de/encoding via libgsm [no]
  165. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  166. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  167. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  168. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  169. --enable-libopencv enable video filtering via libopencv [no]
  170. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  171. --enable-libopus enable Opus decoding via libopus [no]
  172. --enable-libpulse enable Pulseaudio input via libpulse [no]
  173. --enable-librtmp enable RTMP[E] support via librtmp [no]
  174. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  175. --enable-libspeex enable Speex de/encoding via libspeex [no]
  176. --enable-libtheora enable Theora encoding via libtheora [no]
  177. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  178. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  179. --enable-libvorbis enable Vorbis encoding via libvorbis [no]
  180. --enable-libvpx enable VP8 de/encoding via libvpx [no]
  181. --enable-libx264 enable H.264 encoding via x264 [no]
  182. --enable-libxavs enable AVS encoding via xavs [no]
  183. --enable-libxvid enable Xvid encoding via xvidcore,
  184. native MPEG-4/Xvid encoder exists [no]
  185. --enable-openssl enable openssl [no]
  186. --enable-zlib enable zlib [autodetect]
  187. Advanced options (experts only):
  188. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  189. --enable-cross-compile assume a cross-compiler is used
  190. --sysroot=PATH root of cross-build tree
  191. --sysinclude=PATH location of cross-build system headers
  192. --target-os=OS compiler targets OS [$target_os]
  193. --target-exec=CMD command to run executables on target
  194. --target-path=DIR path to view of build directory on target
  195. --toolchain=NAME set tool defaults according to NAME
  196. --nm=NM use nm tool
  197. --ar=AR use archive tool AR [$ar_default]
  198. --as=AS use assembler AS [$as_default]
  199. --cc=CC use C compiler CC [$cc_default]
  200. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  201. --ld=LD use linker LD
  202. --host-cc=HOSTCC use host C compiler HOSTCC
  203. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  204. --host-ld=HOSTLD use host linker HOSTLD
  205. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  206. --host-libs=HLIBS use libs HLIBS when linking for host
  207. --host-os=OS compiler host OS [$target_os]
  208. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  209. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  210. --extra-libs=ELIBS add ELIBS [$ELIBS]
  211. --extra-version=STRING version string suffix []
  212. --optflags=OPTFLAGS override optimization-related compiler flags
  213. --build-suffix=SUFFIX library name suffix []
  214. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  215. --arch=ARCH select architecture [$arch]
  216. --cpu=CPU select the minimum required CPU (affects
  217. instruction selection, may crash on older CPUs)
  218. --enable-pic build position-independent code
  219. --enable-sram allow use of on-chip SRAM
  220. --enable-thumb compile for Thumb instruction set
  221. --disable-symver disable symbol versioning
  222. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  223. --disable-safe-bitstream-reader
  224. disable buffer boundary checking in bitreaders
  225. (faster, but may crash)
  226. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  227. --enable-lto use link-time optimization
  228. Optimization options (experts only):
  229. --disable-asm disable all assembler optimizations
  230. --disable-altivec disable AltiVec optimizations
  231. --disable-amd3dnow disable 3DNow! optimizations
  232. --disable-amd3dnowext disable 3DNow! extended optimizations
  233. --disable-mmx disable MMX optimizations
  234. --disable-mmxext disable MMXEXT optimizations
  235. --disable-sse disable SSE optimizations
  236. --disable-sse2 disable SSE2 optimizations
  237. --disable-sse3 disable SSE3 optimizations
  238. --disable-ssse3 disable SSSE3 optimizations
  239. --disable-sse4 disable SSE4 optimizations
  240. --disable-sse42 disable SSE4.2 optimizations
  241. --disable-avx disable AVX optimizations
  242. --disable-fma4 disable FMA4 optimizations
  243. --disable-armv5te disable armv5te optimizations
  244. --disable-armv6 disable armv6 optimizations
  245. --disable-armv6t2 disable armv6t2 optimizations
  246. --disable-armvfp disable ARM VFP optimizations
  247. --disable-neon disable NEON optimizations
  248. --disable-vis disable VIS optimizations
  249. --disable-inline-asm disable use of inline assembler
  250. --disable-yasm disable use of yasm assembler
  251. Developer options (useful when working on Libav itself):
  252. --disable-debug disable debugging symbols
  253. --enable-debug=LEVEL set the debug level [$debuglevel]
  254. --disable-optimizations disable compiler optimizations
  255. --enable-extra-warnings enable more compiler warnings
  256. --samples=PATH location of test samples for FATE, if not set use
  257. \$LIBAV_SAMPLES at make invocation time.
  258. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  259. should be used only for debugging purposes)
  260. --enable-random randomly enable/disable components
  261. --disable-random
  262. --enable-random=LIST randomly enable/disable specific components or
  263. --disable-random=LIST component groups. LIST is a comma-separated list
  264. of NAME[:PROB] entries where NAME is a component
  265. (group) and PROB the probability associated with
  266. NAME (default 0.5).
  267. --random-seed=VALUE seed value for --enable/disable-random
  268. NOTE: Object files are built at the place where configure is launched.
  269. EOF
  270. exit 0
  271. }
  272. quotes='""'
  273. log(){
  274. echo "$@" >> $logfile
  275. }
  276. log_file(){
  277. log BEGIN $1
  278. pr -n -t $1 >> $logfile
  279. log END $1
  280. }
  281. echolog(){
  282. log "$@"
  283. echo "$@"
  284. }
  285. warn(){
  286. log "WARNING: $*"
  287. WARNINGS="${WARNINGS}WARNING: $*\n"
  288. }
  289. die(){
  290. echolog "$@"
  291. cat <<EOF
  292. If you think configure made a mistake, make sure you are using the latest
  293. version from Git. If the latest version fails, report the problem to the
  294. libav-user@libav.org mailing list or IRC #libav on irc.freenode.net.
  295. EOF
  296. if disabled logging; then
  297. cat <<EOF
  298. Rerun configure with logging enabled (do not use --disable-logging), and
  299. include the log this produces with your report.
  300. EOF
  301. else
  302. cat <<EOF
  303. Include the log file "$logfile" produced by configure as this will help
  304. solving the problem.
  305. EOF
  306. fi
  307. exit 1
  308. }
  309. # Avoid locale weirdness, besides we really just want to translate ASCII.
  310. toupper(){
  311. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  312. }
  313. tolower(){
  314. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  315. }
  316. c_escape(){
  317. echo "$*" | sed 's/["\\]/\\\0/g'
  318. }
  319. sh_quote(){
  320. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  321. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  322. echo "$v"
  323. }
  324. cleanws(){
  325. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  326. }
  327. filter(){
  328. pat=$1
  329. shift
  330. for v; do
  331. eval "case $v in $pat) echo $v ;; esac"
  332. done
  333. }
  334. filter_out(){
  335. pat=$1
  336. shift
  337. for v; do
  338. eval "case $v in $pat) ;; *) echo $v ;; esac"
  339. done
  340. }
  341. map(){
  342. m=$1
  343. shift
  344. for v; do eval $m; done
  345. }
  346. add_suffix(){
  347. suffix=$1
  348. shift
  349. for v; do echo ${v}${suffix}; done
  350. }
  351. set_all(){
  352. value=$1
  353. shift
  354. for var in $*; do
  355. eval $var=$value
  356. done
  357. }
  358. set_weak(){
  359. value=$1
  360. shift
  361. for var; do
  362. eval : \${$var:=$value}
  363. done
  364. }
  365. set_safe(){
  366. var=$1
  367. shift
  368. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  369. }
  370. get_safe(){
  371. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  372. }
  373. pushvar(){
  374. for var in $*; do
  375. eval level=\${${var}_level:=0}
  376. eval ${var}_${level}="\$$var"
  377. eval ${var}_level=$(($level+1))
  378. done
  379. }
  380. popvar(){
  381. for var in $*; do
  382. eval level=\${${var}_level:-0}
  383. test $level = 0 && continue
  384. eval level=$(($level-1))
  385. eval $var="\${${var}_${level}}"
  386. eval ${var}_level=$level
  387. eval unset ${var}_${level}
  388. done
  389. }
  390. enable(){
  391. set_all yes $*
  392. }
  393. disable(){
  394. set_all no $*
  395. }
  396. enable_weak(){
  397. set_weak yes $*
  398. }
  399. disable_weak(){
  400. set_weak no $*
  401. }
  402. enable_safe(){
  403. for var; do
  404. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  405. done
  406. }
  407. disable_safe(){
  408. for var; do
  409. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  410. done
  411. }
  412. do_enable_deep(){
  413. for var; do
  414. enabled $var && continue
  415. eval sel="\$${var}_select"
  416. eval sgs="\$${var}_suggest"
  417. pushvar var sgs
  418. enable_deep $sel
  419. popvar sgs
  420. enable_deep_weak $sgs
  421. popvar var
  422. done
  423. }
  424. enable_deep(){
  425. do_enable_deep $*
  426. enable $*
  427. }
  428. enable_deep_weak(){
  429. do_enable_deep $*
  430. enable_weak $*
  431. }
  432. enabled(){
  433. test "${1#!}" = "$1" && op== || op=!=
  434. eval test "x\$${1#!}" $op "xyes"
  435. }
  436. disabled(){
  437. test "${1#!}" = "$1" && op== || op=!=
  438. eval test "x\$${1#!}" $op "xno"
  439. }
  440. enabled_all(){
  441. for opt; do
  442. enabled $opt || return 1
  443. done
  444. }
  445. disabled_all(){
  446. for opt; do
  447. disabled $opt || return 1
  448. done
  449. }
  450. enabled_any(){
  451. for opt; do
  452. enabled $opt && return 0
  453. done
  454. }
  455. disabled_any(){
  456. for opt; do
  457. disabled $opt && return 0
  458. done
  459. return 1
  460. }
  461. set_default(){
  462. for opt; do
  463. eval : \${$opt:=\$${opt}_default}
  464. done
  465. }
  466. is_in(){
  467. value=$1
  468. shift
  469. for var in $*; do
  470. [ $var = $value ] && return 0
  471. done
  472. return 1
  473. }
  474. check_deps(){
  475. for cfg; do
  476. cfg="${cfg#!}"
  477. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  478. disabled ${cfg}_checking && continue
  479. enable ${cfg}_checking
  480. eval dep_all="\$${cfg}_deps"
  481. eval dep_any="\$${cfg}_deps_any"
  482. eval dep_sel="\$${cfg}_select"
  483. eval dep_sgs="\$${cfg}_suggest"
  484. eval dep_ifa="\$${cfg}_if"
  485. eval dep_ifn="\$${cfg}_if_any"
  486. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  487. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  488. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  489. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  490. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  491. enabled_all $dep_all || disable $cfg
  492. enabled_any $dep_any || disable $cfg
  493. disabled_any $dep_sel && disable $cfg
  494. if enabled $cfg; then
  495. eval dep_extralibs="\$${cfg}_extralibs"
  496. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  497. enable_deep $dep_sel
  498. enable_deep_weak $dep_sgs
  499. fi
  500. disable ${cfg}_checking
  501. done
  502. }
  503. print_config_h(){
  504. enabled $1 && v=1 || v=0
  505. echo "#define $2 $v"
  506. }
  507. print_config_mak(){
  508. enabled $1 && v= || v=!
  509. echo "$v$2=yes"
  510. }
  511. print_config_asm(){
  512. enabled $1 && v=1 || v=0
  513. echo "%define $2 $v"
  514. }
  515. print_config(){
  516. pfx=$1
  517. files=$2
  518. shift 2
  519. for cfg; do
  520. ucname="$(toupper $cfg)"
  521. for f in $files; do
  522. "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
  523. done
  524. done
  525. }
  526. print_enabled(){
  527. test x"$1" = x-n && end=" " && shift || end="\n"
  528. suf=$1
  529. shift
  530. for v; do
  531. enabled $v && printf "%s$end" ${v%$suf};
  532. done
  533. }
  534. append(){
  535. var=$1
  536. shift
  537. eval "$var=\"\$$var $*\""
  538. }
  539. prepend(){
  540. var=$1
  541. shift
  542. eval "$var=\"$* \$$var\""
  543. }
  544. add_cppflags(){
  545. append CPPFLAGS "$@"
  546. }
  547. add_cflags(){
  548. append CFLAGS $($cflags_filter "$@")
  549. }
  550. add_asflags(){
  551. append ASFLAGS $($asflags_filter "$@")
  552. }
  553. add_ldflags(){
  554. append LDFLAGS $($ldflags_filter "$@")
  555. }
  556. add_extralibs(){
  557. prepend extralibs $($ldflags_filter "$@")
  558. }
  559. add_host_cflags(){
  560. append host_cflags $($host_cflags_filter "$@")
  561. }
  562. add_host_ldflags(){
  563. append host_ldflags $($host_ldflags_filter "$@")
  564. }
  565. add_compat(){
  566. append compat_objs $1
  567. shift
  568. map 'add_cppflags -D$v' "$@"
  569. }
  570. check_cmd(){
  571. log "$@"
  572. "$@" >> $logfile 2>&1
  573. }
  574. cc_o(){
  575. eval printf '%s\\n' $CC_O
  576. }
  577. cc_e(){
  578. eval printf '%s\\n' $CC_E
  579. }
  580. check_cc(){
  581. log check_cc "$@"
  582. cat > $TMPC
  583. log_file $TMPC
  584. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  585. }
  586. check_cpp(){
  587. log check_cpp "$@"
  588. cat > $TMPC
  589. log_file $TMPC
  590. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  591. }
  592. as_o(){
  593. eval printf '%s\\n' $AS_O
  594. }
  595. check_as(){
  596. log check_as "$@"
  597. cat > $TMPC
  598. log_file $TMPC
  599. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPC
  600. }
  601. check_inline_asm(){
  602. log check_inline_asm "$@"
  603. name="$1"
  604. code="$2"
  605. shift 2
  606. disable $name
  607. check_as "$@" <<EOF && enable $name
  608. void foo(void){ __asm__ volatile($code); }
  609. EOF
  610. }
  611. check_yasm(){
  612. log check_yasm "$@"
  613. echo "$1" > $TMPS
  614. log_file $TMPS
  615. shift 1
  616. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  617. }
  618. ld_o(){
  619. eval printf '%s\\n' $LD_O
  620. }
  621. check_ld(){
  622. log check_ld "$@"
  623. flags=$(filter_out '-l*' "$@")
  624. libs=$(filter '-l*' "$@")
  625. check_cc $($cflags_filter $flags) || return
  626. flags=$($ldflags_filter $flags)
  627. libs=$($ldflags_filter $libs)
  628. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  629. }
  630. check_code(){
  631. log check_code "$@"
  632. check=$1
  633. headers=$2
  634. code=$3
  635. shift 3
  636. {
  637. for hdr in $headers; do
  638. echo "#include <$hdr>"
  639. done
  640. echo "int main(void) { $code; return 0; }"
  641. } | check_$check "$@"
  642. }
  643. check_cppflags(){
  644. log check_cppflags "$@"
  645. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  646. int x;
  647. EOF
  648. }
  649. check_cflags(){
  650. log check_cflags "$@"
  651. set -- $($cflags_filter "$@")
  652. check_cc "$@" <<EOF && append CFLAGS "$@"
  653. int x;
  654. EOF
  655. }
  656. test_ldflags(){
  657. log test_ldflags "$@"
  658. check_ld "$@" <<EOF
  659. int main(void){ return 0; }
  660. EOF
  661. }
  662. check_ldflags(){
  663. log check_ldflags "$@"
  664. test_ldflags "$@" && add_ldflags "$@"
  665. }
  666. check_header(){
  667. log check_header "$@"
  668. header=$1
  669. shift
  670. disable_safe $header
  671. check_cpp "$@" <<EOF && enable_safe $header
  672. #include <$header>
  673. int x;
  674. EOF
  675. }
  676. check_func(){
  677. log check_func "$@"
  678. func=$1
  679. shift
  680. disable $func
  681. check_ld "$@" <<EOF && enable $func
  682. extern int $func();
  683. int main(void){ $func(); }
  684. EOF
  685. }
  686. check_mathfunc(){
  687. log check_mathfunc "$@"
  688. func=$1
  689. shift
  690. disable $func
  691. check_ld "$@" <<EOF && enable $func
  692. #include <math.h>
  693. float foo(float f) { return $func(f); }
  694. int main(void){ return 0; }
  695. EOF
  696. }
  697. check_func_headers(){
  698. log check_func_headers "$@"
  699. headers=$1
  700. funcs=$2
  701. shift 2
  702. {
  703. for hdr in $headers; do
  704. echo "#include <$hdr>"
  705. done
  706. for func in $funcs; do
  707. echo "long check_$func(void) { return (long) $func; }"
  708. done
  709. echo "int main(void) { return 0; }"
  710. } | check_ld "$@" && enable $funcs && enable_safe $headers
  711. }
  712. check_cpp_condition(){
  713. log check_cpp_condition "$@"
  714. header=$1
  715. condition=$2
  716. shift 2
  717. check_cpp "$@" <<EOF
  718. #include <$header>
  719. #if !($condition)
  720. #error "unsatisfied condition: $condition"
  721. #endif
  722. EOF
  723. }
  724. check_lib(){
  725. log check_lib "$@"
  726. header="$1"
  727. func="$2"
  728. shift 2
  729. check_header $header && check_func $func "$@" && add_extralibs "$@"
  730. }
  731. check_lib2(){
  732. log check_lib2 "$@"
  733. headers="$1"
  734. funcs="$2"
  735. shift 2
  736. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  737. }
  738. check_pkg_config(){
  739. log check_pkg_config "$@"
  740. pkg="$1"
  741. headers="$2"
  742. funcs="$3"
  743. shift 3
  744. $pkg_config --exists $pkg || return
  745. pkg_cflags=$($pkg_config --cflags $pkg)
  746. pkg_libs=$($pkg_config --libs $pkg)
  747. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  748. set_safe ${pkg}_cflags $pkg_cflags &&
  749. set_safe ${pkg}_libs $pkg_libs
  750. }
  751. check_exec(){
  752. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  753. }
  754. check_exec_crash(){
  755. code=$(cat)
  756. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  757. # are safe but may not be available everywhere. Thus we use
  758. # raise(SIGTERM) instead. The check is run in a subshell so we
  759. # can redirect the "Terminated" message from the shell. SIGBUS
  760. # is not defined by standard C so it is used conditionally.
  761. (check_exec "$@") >> $logfile 2>&1 <<EOF
  762. #include <signal.h>
  763. static void sighandler(int sig){
  764. raise(SIGTERM);
  765. }
  766. int foo(void){
  767. $code
  768. }
  769. int main(void){
  770. signal(SIGILL, sighandler);
  771. signal(SIGFPE, sighandler);
  772. signal(SIGSEGV, sighandler);
  773. #ifdef SIGBUS
  774. signal(SIGBUS, sighandler);
  775. #endif
  776. foo();
  777. }
  778. EOF
  779. }
  780. check_type(){
  781. log check_type "$@"
  782. headers=$1
  783. type=$2
  784. shift 2
  785. disable_safe "$type"
  786. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  787. }
  788. check_struct(){
  789. log check_type "$@"
  790. headers=$1
  791. struct=$2
  792. member=$3
  793. shift 3
  794. disable_safe "${struct}_${member}"
  795. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  796. enable_safe "${struct}_${member}"
  797. }
  798. require(){
  799. name="$1"
  800. header="$2"
  801. func="$3"
  802. shift 3
  803. check_lib $header $func "$@" || die "ERROR: $name not found"
  804. }
  805. require2(){
  806. name="$1"
  807. headers="$2"
  808. func="$3"
  809. shift 3
  810. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  811. }
  812. require_pkg_config(){
  813. pkg="$1"
  814. check_pkg_config "$@" || die "ERROR: $pkg not found"
  815. add_cflags $(get_safe ${pkg}_cflags)
  816. add_extralibs $(get_safe ${pkg}_libs)
  817. }
  818. hostcc_o(){
  819. eval printf '%s\\n' $HOSTCC_O
  820. }
  821. check_host_cc(){
  822. log check_host_cc "$@"
  823. cat > $TMPC
  824. log_file $TMPC
  825. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  826. }
  827. check_host_cflags(){
  828. log check_host_cflags "$@"
  829. set -- $($host_cflags_filter "$@")
  830. check_host_cc "$@" <<EOF && append host_cflags "$@"
  831. int x;
  832. EOF
  833. }
  834. apply(){
  835. file=$1
  836. shift
  837. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  838. }
  839. cp_if_changed(){
  840. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  841. mkdir -p "$(dirname $2)"
  842. cp -f "$1" "$2"
  843. }
  844. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  845. # system-dependent things.
  846. COMPONENT_LIST="
  847. bsfs
  848. decoders
  849. demuxers
  850. encoders
  851. filters
  852. hwaccels
  853. indevs
  854. muxers
  855. outdevs
  856. parsers
  857. protocols
  858. "
  859. PROGRAM_LIST="
  860. avconv
  861. avplay
  862. avprobe
  863. avserver
  864. "
  865. CONFIG_LIST="
  866. $COMPONENT_LIST
  867. $PROGRAM_LIST
  868. avcodec
  869. avdevice
  870. avfilter
  871. avformat
  872. avresample
  873. avisynth
  874. bzlib
  875. dct
  876. doc
  877. dwt
  878. dxva2
  879. fft
  880. frei0r
  881. gnutls
  882. gpl
  883. gray
  884. hardcoded_tables
  885. libcdio
  886. libdc1394
  887. libfaac
  888. libfdk_aac
  889. libfreetype
  890. libgsm
  891. libilbc
  892. libmp3lame
  893. libopencore_amrnb
  894. libopencore_amrwb
  895. libopencv
  896. libopenjpeg
  897. libopus
  898. libpulse
  899. librtmp
  900. libschroedinger
  901. libspeex
  902. libtheora
  903. libvo_aacenc
  904. libvo_amrwbenc
  905. libvorbis
  906. libvpx
  907. libx264
  908. libxavs
  909. libxvid
  910. lsp
  911. mdct
  912. memalign_hack
  913. network
  914. nonfree
  915. openssl
  916. pic
  917. rdft
  918. runtime_cpudetect
  919. safe_bitstream_reader
  920. shared
  921. small
  922. sram
  923. static
  924. swscale
  925. swscale_alpha
  926. thumb
  927. vaapi
  928. vda
  929. vdpau
  930. version3
  931. xmm_clobber_test
  932. x11grab
  933. zlib
  934. "
  935. THREADS_LIST='
  936. pthreads
  937. w32threads
  938. '
  939. ARCH_LIST='
  940. alpha
  941. arm
  942. avr32
  943. avr32_ap
  944. avr32_uc
  945. bfin
  946. ia64
  947. m68k
  948. mips
  949. mips64
  950. parisc
  951. ppc
  952. ppc64
  953. s390
  954. sh4
  955. sparc
  956. sparc64
  957. tilegx
  958. tilepro
  959. tomi
  960. x86
  961. x86_32
  962. x86_64
  963. '
  964. ARCH_EXT_LIST_X86='
  965. amd3dnow
  966. amd3dnowext
  967. avx
  968. fma4
  969. mmx
  970. mmxext
  971. sse
  972. sse2
  973. sse3
  974. sse4
  975. sse42
  976. ssse3
  977. '
  978. ARCH_EXT_LIST="
  979. $ARCH_EXT_LIST_X86
  980. altivec
  981. armv5te
  982. armv6
  983. armv6t2
  984. armvfp
  985. neon
  986. ppc4xx
  987. vfpv3
  988. vis
  989. "
  990. HAVE_LIST_CMDLINE='
  991. inline_asm
  992. symver
  993. yasm
  994. '
  995. HAVE_LIST_PUB='
  996. bigendian
  997. fast_unaligned
  998. '
  999. HAVE_LIST="
  1000. $ARCH_EXT_LIST
  1001. $(add_suffix _external $ARCH_EXT_LIST)
  1002. $(add_suffix _inline $ARCH_EXT_LIST)
  1003. $HAVE_LIST_CMDLINE
  1004. $HAVE_LIST_PUB
  1005. $THREADS_LIST
  1006. aligned_malloc
  1007. aligned_stack
  1008. alsa_asoundlib_h
  1009. altivec_h
  1010. arpa_inet_h
  1011. asm_mod_q
  1012. asm_mod_y
  1013. attribute_may_alias
  1014. attribute_packed
  1015. cbrtf
  1016. closesocket
  1017. cmov
  1018. cpunop
  1019. CryptGenRandom
  1020. dcbzl
  1021. dev_bktr_ioctl_bt848_h
  1022. dev_bktr_ioctl_meteor_h
  1023. dev_ic_bt8xx_h
  1024. dev_video_bktr_ioctl_bt848_h
  1025. dev_video_meteor_ioctl_meteor_h
  1026. direct_h
  1027. dlfcn_h
  1028. dlopen
  1029. dos_paths
  1030. dxva_h
  1031. ebp_available
  1032. ebx_available
  1033. exp2
  1034. exp2f
  1035. fast_64bit
  1036. fast_clz
  1037. fast_cmov
  1038. fcntl
  1039. fork
  1040. getaddrinfo
  1041. gethrtime
  1042. getopt
  1043. GetProcessAffinityMask
  1044. GetProcessMemoryInfo
  1045. GetProcessTimes
  1046. GetSystemTimeAsFileTime
  1047. getrusage
  1048. gettimeofday
  1049. gnu_as
  1050. ibm_asm
  1051. inet_aton
  1052. io_h
  1053. isatty
  1054. isinf
  1055. isnan
  1056. jack_port_get_latency_range
  1057. ldbrx
  1058. libdc1394_1
  1059. libdc1394_2
  1060. llrint
  1061. llrintf
  1062. local_aligned_16
  1063. local_aligned_8
  1064. localtime_r
  1065. log2
  1066. log2f
  1067. loongson
  1068. lrint
  1069. lrintf
  1070. machine_ioctl_bt848_h
  1071. machine_ioctl_meteor_h
  1072. malloc_h
  1073. MapViewOfFile
  1074. memalign
  1075. mkstemp
  1076. mm_empty
  1077. mmap
  1078. mprotect
  1079. msvcrt
  1080. nanosleep
  1081. poll_h
  1082. posix_memalign
  1083. rdtsc
  1084. rint
  1085. round
  1086. roundf
  1087. sched_getaffinity
  1088. sdl
  1089. sdl_video_size
  1090. setmode
  1091. setrlimit
  1092. Sleep
  1093. sndio_h
  1094. socklen_t
  1095. soundcard_h
  1096. strerror_r
  1097. strptime
  1098. strtok_r
  1099. struct_addrinfo
  1100. struct_group_source_req
  1101. struct_ip_mreq_source
  1102. struct_ipv6_mreq
  1103. struct_pollfd
  1104. struct_rusage_ru_maxrss
  1105. struct_sockaddr_in6
  1106. struct_sockaddr_sa_len
  1107. struct_sockaddr_storage
  1108. struct_v4l2_frmivalenum_discrete
  1109. symver_asm_label
  1110. symver_gnu_asm
  1111. sysconf
  1112. sysctl
  1113. sys_mman_h
  1114. sys_param_h
  1115. sys_resource_h
  1116. sys_select_h
  1117. sys_soundcard_h
  1118. sys_time_h
  1119. sys_videoio_h
  1120. threads
  1121. trunc
  1122. truncf
  1123. unistd_h
  1124. usleep
  1125. vfp_args
  1126. VirtualAlloc
  1127. windows_h
  1128. winsock2_h
  1129. xform_asm
  1130. xmm_clobbers
  1131. "
  1132. # options emitted with CONFIG_ prefix but not available on command line
  1133. CONFIG_EXTRA="
  1134. aandcttables
  1135. ac3dsp
  1136. avutil
  1137. error_resilience
  1138. gcrypt
  1139. golomb
  1140. gplv3
  1141. h264chroma
  1142. h264dsp
  1143. h264pred
  1144. h264qpel
  1145. huffman
  1146. lgplv3
  1147. lpc
  1148. mpegaudio
  1149. mpegaudiodsp
  1150. mpegvideo
  1151. mpegvideoenc
  1152. nettle
  1153. rangecoder
  1154. rtpdec
  1155. sinewin
  1156. vp3dsp
  1157. "
  1158. CMDLINE_SELECT="
  1159. $ARCH_EXT_LIST
  1160. $CONFIG_LIST
  1161. $HAVE_LIST_CMDLINE
  1162. $THREADS_LIST
  1163. asm
  1164. cross_compile
  1165. debug
  1166. extra_warnings
  1167. logging
  1168. lto
  1169. optimizations
  1170. "
  1171. PATHS_LIST='
  1172. bindir
  1173. datadir
  1174. incdir
  1175. libdir
  1176. mandir
  1177. prefix
  1178. shlibdir
  1179. '
  1180. CMDLINE_SET="
  1181. $PATHS_LIST
  1182. ar
  1183. arch
  1184. as
  1185. build_suffix
  1186. cc
  1187. cpu
  1188. cross_prefix
  1189. dep_cc
  1190. extra_version
  1191. host_cc
  1192. host_cflags
  1193. host_ld
  1194. host_ldflags
  1195. host_libs
  1196. host_os
  1197. ld
  1198. logfile
  1199. malloc_prefix
  1200. nm
  1201. optflags
  1202. pkg_config
  1203. random_seed
  1204. samples
  1205. sysinclude
  1206. sysroot
  1207. target_exec
  1208. target_os
  1209. target_path
  1210. toolchain
  1211. "
  1212. CMDLINE_APPEND="
  1213. extra_cflags
  1214. "
  1215. # code dependency declarations
  1216. # architecture extensions
  1217. armv5te_deps="arm"
  1218. armv6_deps="arm"
  1219. armv6t2_deps="arm"
  1220. armvfp_deps="arm"
  1221. neon_deps="arm"
  1222. vfpv3_deps="armvfp"
  1223. altivec_deps="ppc"
  1224. ppc4xx_deps="ppc"
  1225. vis_deps="sparc"
  1226. x86_64_suggest="cmov fast_cmov"
  1227. amd3dnow_deps="mmx"
  1228. amd3dnowext_deps="amd3dnow"
  1229. mmx_deps="x86"
  1230. mmxext_deps="mmx"
  1231. sse_deps="mmxext"
  1232. sse2_deps="sse"
  1233. sse3_deps="sse2"
  1234. ssse3_deps="sse3"
  1235. sse4_deps="ssse3"
  1236. sse42_deps="sse4"
  1237. avx_deps="sse42"
  1238. fma4_deps="avx"
  1239. mmx_external_deps="yasm"
  1240. mmx_inline_deps="inline_asm"
  1241. mmx_suggest="mmx_external mmx_inline"
  1242. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
  1243. eval dep=\$${ext}_deps
  1244. eval ${ext}_external_deps='"${dep}_external"'
  1245. eval ${ext}_inline_deps='"${dep}_inline"'
  1246. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1247. done
  1248. aligned_stack_if_any="ppc x86"
  1249. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1250. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1251. fast_unaligned_if_any="armv6 ppc x86"
  1252. inline_asm_deps="!tms470"
  1253. need_memalign="altivec neon sse"
  1254. symver_if_any="symver_asm_label symver_gnu_asm"
  1255. log2_deps="!msvcrt"
  1256. # subsystems
  1257. dct_select="rdft"
  1258. mdct_select="fft"
  1259. rdft_select="fft"
  1260. mpegaudio_select="mpegaudiodsp"
  1261. mpegaudiodsp_select="dct"
  1262. mpegvideoenc_select="mpegvideo"
  1263. # decoders / encoders / hardware accelerators
  1264. aac_decoder_select="mdct sinewin"
  1265. aac_encoder_select="mdct sinewin"
  1266. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1267. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1268. ac3_encoder_select="mdct ac3dsp"
  1269. ac3_fixed_encoder_select="mdct ac3dsp"
  1270. alac_encoder_select="lpc"
  1271. amrnb_decoder_select="lsp"
  1272. amrwb_decoder_select="lsp"
  1273. atrac1_decoder_select="mdct sinewin"
  1274. atrac3_decoder_select="mdct"
  1275. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1276. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1277. cavs_decoder_select="golomb mpegvideo"
  1278. cook_decoder_select="mdct sinewin"
  1279. cscd_decoder_suggest="zlib"
  1280. dca_decoder_select="mdct"
  1281. dnxhd_encoder_select="aandcttables mpegvideoenc"
  1282. dxa_decoder_select="zlib"
  1283. eac3_decoder_select="ac3_decoder"
  1284. eac3_encoder_select="ac3_encoder"
  1285. eamad_decoder_select="aandcttables error_resilience mpegvideo"
  1286. eatgq_decoder_select="aandcttables"
  1287. eatqi_decoder_select="aandcttables error_resilience mpegvideo"
  1288. ffv1_decoder_select="golomb rangecoder"
  1289. ffv1_encoder_select="rangecoder"
  1290. ffvhuff_encoder_select="huffman"
  1291. flac_decoder_select="golomb"
  1292. flac_encoder_select="golomb lpc"
  1293. flashsv_decoder_select="zlib"
  1294. flashsv_encoder_select="zlib"
  1295. flashsv2_decoder_select="zlib"
  1296. flv_decoder_select="h263_decoder"
  1297. flv_encoder_select="h263_encoder"
  1298. fraps_decoder_select="huffman"
  1299. h261_decoder_select="error_resilience mpegvideo"
  1300. h261_encoder_select="aandcttables mpegvideoenc"
  1301. h263_decoder_select="error_resilience h263_parser mpegvideo"
  1302. h263_encoder_select="aandcttables error_resilience mpegvideoenc"
  1303. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1304. h263i_decoder_select="h263_decoder"
  1305. h263p_encoder_select="h263_encoder"
  1306. h264_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1307. h264_dxva2_hwaccel_deps="dxva2api_h"
  1308. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1309. h264_vaapi_hwaccel_select="vaapi h264_decoder"
  1310. h264_vda_hwaccel_select="vda h264_decoder"
  1311. h264_vdpau_decoder_select="vdpau h264_decoder"
  1312. huffyuv_encoder_select="huffman"
  1313. iac_decoder_select="fft mdct sinewin"
  1314. imc_decoder_select="fft mdct sinewin"
  1315. jpegls_decoder_select="golomb"
  1316. jpegls_encoder_select="golomb"
  1317. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1318. loco_decoder_select="golomb"
  1319. mdec_decoder_select="error_resilience mpegvideo"
  1320. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1321. mlp_decoder_select="mlp_parser"
  1322. mp1_decoder_select="mpegaudio"
  1323. mp1float_decoder_select="mpegaudio"
  1324. mp2_decoder_select="mpegaudio"
  1325. mp2float_decoder_select="mpegaudio"
  1326. mp3_decoder_select="mpegaudio"
  1327. mp3adu_decoder_select="mpegaudio"
  1328. mp3adufloat_decoder_select="mpegaudio"
  1329. mp3float_decoder_select="mpegaudio"
  1330. mp3on4_decoder_select="mpegaudio"
  1331. mp3on4float_decoder_select="mpegaudio"
  1332. mpc7_decoder_select="mpegaudiodsp"
  1333. mpc8_decoder_select="mpegaudiodsp"
  1334. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1335. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1336. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1337. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1338. mpeg1video_decoder_select="error_resilience mpegvideo"
  1339. mpeg1video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1340. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1341. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1342. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1343. mpeg2video_decoder_select="error_resilience mpegvideo"
  1344. mpeg2video_encoder_select="aandcttables error_resilience mpegvideoenc"
  1345. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1346. mpeg4_encoder_select="h263_encoder"
  1347. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1348. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1349. msmpeg4v1_decoder_select="h263_decoder"
  1350. msmpeg4v1_encoder_select="h263_encoder"
  1351. msmpeg4v2_decoder_select="h263_decoder"
  1352. msmpeg4v2_encoder_select="h263_encoder"
  1353. msmpeg4v3_decoder_select="h263_decoder"
  1354. msmpeg4v3_encoder_select="h263_encoder"
  1355. mss2_decoder_select="vc1_decoder"
  1356. nellymoser_decoder_select="mdct sinewin"
  1357. nellymoser_encoder_select="mdct sinewin"
  1358. png_decoder_select="zlib"
  1359. png_encoder_select="zlib"
  1360. qcelp_decoder_select="lsp"
  1361. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1362. ra_144_encoder_select="lpc"
  1363. ralf_decoder_select="golomb"
  1364. rv10_decoder_select="h263_decoder"
  1365. rv10_encoder_select="h263_encoder"
  1366. rv20_decoder_select="h263_decoder"
  1367. rv20_encoder_select="h263_encoder"
  1368. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1369. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
  1370. shorten_decoder_select="golomb"
  1371. sipr_decoder_select="lsp"
  1372. snow_decoder_select="dwt rangecoder"
  1373. snow_encoder_select="aandcttables dwt error_resilience mpegvideoenc rangecoder"
  1374. svq1_decoder_select="error_resilience mpegvideo"
  1375. svq1_encoder_select="aandcttables error_resilience mpegvideoenc"
  1376. svq3_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
  1377. svq3_decoder_suggest="zlib"
  1378. theora_decoder_select="vp3_decoder"
  1379. tiff_decoder_suggest="zlib"
  1380. tiff_encoder_suggest="zlib"
  1381. truehd_decoder_select="mlp_decoder"
  1382. tscc_decoder_select="zlib"
  1383. twinvq_decoder_select="mdct lsp sinewin"
  1384. utvideo_encoder_select="huffman"
  1385. vc1_decoder_select="h263_decoder h264chroma h264qpel"
  1386. vc1_dxva2_hwaccel_deps="dxva2api_h"
  1387. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1388. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1389. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1390. vc1image_decoder_select="vc1_decoder"
  1391. vorbis_decoder_select="mdct"
  1392. vorbis_encoder_select="mdct"
  1393. vp3_decoder_select="vp3dsp"
  1394. vp5_decoder_select="vp3dsp"
  1395. vp6_decoder_select="huffman vp3dsp"
  1396. vp6a_decoder_select="vp6_decoder"
  1397. vp6f_decoder_select="vp6_decoder"
  1398. vp8_decoder_select="h264pred h264qpel"
  1399. wmapro_decoder_select="mdct sinewin"
  1400. wmav1_decoder_select="mdct sinewin"
  1401. wmav1_encoder_select="mdct sinewin"
  1402. wmav2_decoder_select="mdct sinewin"
  1403. wmav2_encoder_select="mdct sinewin"
  1404. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1405. wmv1_decoder_select="h263_decoder"
  1406. wmv1_encoder_select="h263_encoder"
  1407. wmv2_decoder_select="h263_decoder"
  1408. wmv2_encoder_select="h263_encoder"
  1409. wmv3_decoder_select="vc1_decoder"
  1410. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1411. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1412. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1413. wmv3image_decoder_select="wmv3_decoder"
  1414. zerocodec_decoder_select="zlib"
  1415. zlib_decoder_select="zlib"
  1416. zlib_encoder_select="zlib"
  1417. zmbv_decoder_select="zlib"
  1418. zmbv_encoder_select="zlib"
  1419. vaapi_deps="va_va_h"
  1420. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1421. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1422. # parsers
  1423. h264_parser_select="error_resilience golomb h264dsp h264pred mpegvideo"
  1424. mpeg4video_parser_select="error_resilience mpegvideo"
  1425. mpegvideo_parser_select="error_resilience mpegvideo"
  1426. vc1_parser_select="error_resilience mpegvideo"
  1427. # external libraries
  1428. libfaac_encoder_deps="libfaac"
  1429. libfdk_aac_encoder_deps="libfdk_aac"
  1430. libgsm_decoder_deps="libgsm"
  1431. libgsm_encoder_deps="libgsm"
  1432. libgsm_ms_decoder_deps="libgsm"
  1433. libgsm_ms_encoder_deps="libgsm"
  1434. libilbc_decoder_deps="libilbc"
  1435. libilbc_encoder_deps="libilbc"
  1436. libmp3lame_encoder_deps="libmp3lame"
  1437. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1438. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1439. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1440. libopenjpeg_decoder_deps="libopenjpeg"
  1441. libopenjpeg_encoder_deps="libopenjpeg"
  1442. libopus_decoder_deps="libopus"
  1443. libopus_encoder_deps="libopus"
  1444. libschroedinger_decoder_deps="libschroedinger"
  1445. libschroedinger_encoder_deps="libschroedinger"
  1446. libspeex_decoder_deps="libspeex"
  1447. libspeex_encoder_deps="libspeex"
  1448. libtheora_encoder_deps="libtheora"
  1449. libvo_aacenc_encoder_deps="libvo_aacenc"
  1450. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1451. libvorbis_encoder_deps="libvorbis"
  1452. libvpx_decoder_deps="libvpx"
  1453. libvpx_encoder_deps="libvpx"
  1454. libx264_encoder_deps="libx264"
  1455. libxavs_encoder_deps="libxavs"
  1456. libxvid_encoder_deps="libxvid"
  1457. # demuxers / muxers
  1458. ac3_demuxer_select="ac3_parser"
  1459. asf_stream_muxer_select="asf_muxer"
  1460. avisynth_demuxer_deps="avisynth"
  1461. dirac_demuxer_select="dirac_parser"
  1462. eac3_demuxer_select="ac3_parser"
  1463. flac_demuxer_select="flac_parser"
  1464. ipod_muxer_select="mov_muxer"
  1465. matroska_audio_muxer_select="matroska_muxer"
  1466. matroska_demuxer_suggest="zlib bzlib"
  1467. mov_demuxer_suggest="zlib"
  1468. mp3_demuxer_select="mpegaudio_parser"
  1469. mp4_muxer_select="mov_muxer"
  1470. mpegts_muxer_select="adts_muxer latm_muxer mpegvideo"
  1471. mpegtsraw_demuxer_select="mpegts_demuxer"
  1472. mxf_d10_muxer_select="mxf_muxer"
  1473. ogg_demuxer_select="golomb"
  1474. psp_muxer_select="mov_muxer"
  1475. rtp_demuxer_select="sdp_demuxer"
  1476. rtp_muxer_select="mpegvideo"
  1477. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1478. rtsp_demuxer_select="http_protocol rtpdec"
  1479. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1480. sap_demuxer_select="sdp_demuxer"
  1481. sap_muxer_select="rtp_muxer rtp_protocol"
  1482. sdp_demuxer_select="rtpdec"
  1483. smoothstreaming_muxer_select="ismv_muxer"
  1484. spdif_muxer_select="aac_parser"
  1485. tg2_muxer_select="mov_muxer"
  1486. tgp_muxer_select="mov_muxer"
  1487. w64_demuxer_deps="wav_demuxer"
  1488. # indevs / outdevs
  1489. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1490. alsa_outdev_deps="alsa_asoundlib_h"
  1491. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1492. dv1394_indev_deps="dv1394 dv_demuxer"
  1493. fbdev_indev_deps="linux_fb_h"
  1494. jack_indev_deps="jack_jack_h"
  1495. libcdio_indev_deps="libcdio"
  1496. libdc1394_indev_deps="libdc1394"
  1497. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1498. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1499. pulse_indev_deps="libpulse"
  1500. sndio_indev_deps="sndio_h"
  1501. sndio_outdev_deps="sndio_h"
  1502. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1503. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1504. vfwcap_indev_extralibs="-lavicap32"
  1505. x11grab_indev_deps="x11grab XShmCreateImage"
  1506. # protocols
  1507. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1508. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1509. ffrtmpcrypt_protocol_select="tcp_protocol"
  1510. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1511. ffrtmphttp_protocol_select="http_protocol"
  1512. gopher_protocol_deps="network"
  1513. httpproxy_protocol_deps="network"
  1514. httpproxy_protocol_select="tcp_protocol"
  1515. http_protocol_deps="network"
  1516. http_protocol_select="tcp_protocol"
  1517. https_protocol_select="tls_protocol"
  1518. librtmp_protocol_deps="librtmp"
  1519. librtmpe_protocol_deps="librtmp"
  1520. librtmps_protocol_deps="librtmp"
  1521. librtmpt_protocol_deps="librtmp"
  1522. librtmpte_protocol_deps="librtmp"
  1523. mmsh_protocol_select="http_protocol"
  1524. mmst_protocol_deps="network"
  1525. rtmp_protocol_deps="!librtmp_protocol"
  1526. rtmp_protocol_select="tcp_protocol"
  1527. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1528. rtmps_protocol_deps="!librtmp_protocol"
  1529. rtmps_protocol_select="tls_protocol"
  1530. rtmpt_protocol_select="ffrtmphttp_protocol"
  1531. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1532. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1533. rtp_protocol_select="udp_protocol"
  1534. sctp_protocol_deps="network struct_sctp_event_subscribe"
  1535. tcp_protocol_deps="network"
  1536. tls_protocol_deps_any="openssl gnutls"
  1537. tls_protocol_select="tcp_protocol"
  1538. udp_protocol_deps="network"
  1539. # filters
  1540. blackframe_filter_deps="gpl"
  1541. boxblur_filter_deps="gpl"
  1542. cropdetect_filter_deps="gpl"
  1543. delogo_filter_deps="gpl"
  1544. drawtext_filter_deps="libfreetype"
  1545. frei0r_filter_deps="frei0r dlopen strtok_r"
  1546. frei0r_filter_extralibs='$ldl'
  1547. frei0r_src_filter_deps="frei0r dlopen strtok_r"
  1548. frei0r_src_filter_extralibs='$ldl'
  1549. hqdn3d_filter_deps="gpl"
  1550. resample_filter_deps="avresample"
  1551. ocv_filter_deps="libopencv"
  1552. scale_filter_deps="swscale"
  1553. yadif_filter_deps="gpl"
  1554. # libraries
  1555. avdevice_deps="avcodec avformat"
  1556. avformat_deps="avcodec"
  1557. # programs
  1558. avconv_deps="avcodec avfilter avformat avresample swscale
  1559. aformat_filter asyncts_filter
  1560. format_filter fps_filter scale_filter setpts_filter"
  1561. avplay_deps="avcodec avformat swscale sdl"
  1562. avplay_select="rdft"
  1563. avprobe_deps="avcodec avformat"
  1564. avserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer !shared"
  1565. avserver_extralibs='$ldl'
  1566. doc_deps="texi2html"
  1567. # default parameters
  1568. logfile="config.log"
  1569. # installation paths
  1570. prefix_default="/usr/local"
  1571. bindir_default='${prefix}/bin'
  1572. datadir_default='${prefix}/share/avconv'
  1573. incdir_default='${prefix}/include'
  1574. libdir_default='${prefix}/lib'
  1575. mandir_default='${prefix}/share/man'
  1576. shlibdir_default="$libdir_default"
  1577. # toolchain
  1578. ar_default="ar"
  1579. cc_default="gcc"
  1580. host_cc_default="gcc"
  1581. ln_s="ln -sf"
  1582. nm_default="nm -g"
  1583. objformat="elf"
  1584. pkg_config_default=pkg-config
  1585. ranlib="ranlib"
  1586. yasmexe="yasm"
  1587. nogas=":"
  1588. # machine
  1589. arch_default=$(uname -m)
  1590. cpu="generic"
  1591. # OS
  1592. target_os_default=$(tolower $(uname -s))
  1593. host_os=$target_os_default
  1594. # configurable options
  1595. enable $PROGRAM_LIST
  1596. enable avcodec
  1597. enable avdevice
  1598. enable avfilter
  1599. enable avformat
  1600. enable avresample
  1601. enable avutil
  1602. enable swscale
  1603. enable asm
  1604. enable debug
  1605. enable doc
  1606. enable network
  1607. enable optimizations
  1608. enable safe_bitstream_reader
  1609. enable static
  1610. enable swscale_alpha
  1611. # build settings
  1612. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1613. AVSERVERLDFLAGS=-Wl,-E
  1614. LIBPREF="lib"
  1615. LIBSUF=".a"
  1616. FULLNAME='$(NAME)$(BUILDSUF)'
  1617. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1618. SLIBPREF="lib"
  1619. SLIBSUF=".so"
  1620. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1621. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1622. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1623. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1624. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1625. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1626. asflags_filter=echo
  1627. cflags_filter=echo
  1628. ldflags_filter=echo
  1629. AS_C='-c'
  1630. AS_O='-o $@'
  1631. CC_C='-c'
  1632. CC_E='-E -o $@'
  1633. CC_O='-o $@'
  1634. LD_O='-o $@'
  1635. LD_LIB='-l%'
  1636. LD_PATH='-L'
  1637. HOSTCC_C='-c'
  1638. HOSTCC_O='-o $@'
  1639. HOSTLD_O='-o $@'
  1640. host_cflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600 -O3 -g'
  1641. host_libs='-lm'
  1642. host_cflags_filter=echo
  1643. host_ldflags_filter=echo
  1644. target_path='$(CURDIR)'
  1645. # since the object filename is not given with the -MM flag, the compiler
  1646. # is only able to print the basename, and we must add the path ourselves
  1647. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1648. DEPFLAGS='-MM'
  1649. # find source path
  1650. if test -f configure; then
  1651. source_path=.
  1652. else
  1653. source_path=$(cd $(dirname "$0"); pwd)
  1654. echo "$source_path" | grep -q '[[:blank:]]' &&
  1655. die "Out of tree builds are impossible with whitespace in source path."
  1656. test -e "$source_path/config.h" &&
  1657. die "Out of tree builds are impossible with config.h in source dir."
  1658. fi
  1659. for v in "$@"; do
  1660. r=${v#*=}
  1661. l=${v%"$r"}
  1662. r=$(sh_quote "$r")
  1663. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  1664. done
  1665. find_things(){
  1666. thing=$1
  1667. pattern=$2
  1668. file=$source_path/$3
  1669. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1670. }
  1671. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1672. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1673. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1674. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1675. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1676. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1677. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1678. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1679. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1680. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1681. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1682. ALL_COMPONENTS="
  1683. $BSF_LIST
  1684. $DECODER_LIST
  1685. $DEMUXER_LIST
  1686. $ENCODER_LIST
  1687. $FILTER_LIST
  1688. $HWACCEL_LIST
  1689. $INDEV_LIST
  1690. $MUXER_LIST
  1691. $OUTDEV_LIST
  1692. $PARSER_LIST
  1693. $PROTOCOL_LIST
  1694. "
  1695. for n in $COMPONENT_LIST; do
  1696. v=$(toupper ${n%s})_LIST
  1697. eval enable \$$v
  1698. eval ${n}_if_any="\$$v"
  1699. done
  1700. disable snow_decoder snow_encoder
  1701. enable $ARCH_EXT_LIST
  1702. die_unknown(){
  1703. echo "Unknown option \"$1\"."
  1704. echo "See $0 --help for available options."
  1705. exit 1
  1706. }
  1707. show_list() {
  1708. suffix=_$1
  1709. shift
  1710. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1711. exit 0
  1712. }
  1713. rand_list(){
  1714. IFS=', '
  1715. set -- $*
  1716. unset IFS
  1717. for thing; do
  1718. comp=${thing%:*}
  1719. prob=${thing#$comp}
  1720. prob=${prob#:}
  1721. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  1722. echo "prob ${prob:-0.5}"
  1723. printf '%s\n' $comp
  1724. done
  1725. }
  1726. do_random(){
  1727. action=$1
  1728. shift
  1729. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  1730. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  1731. }
  1732. for opt do
  1733. optval="${opt#*=}"
  1734. case "$opt" in
  1735. --extra-ldflags=*) add_ldflags $optval
  1736. ;;
  1737. --extra-libs=*) add_extralibs $optval
  1738. ;;
  1739. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1740. ;;
  1741. --enable-debug=*) debuglevel="$optval"
  1742. ;;
  1743. --disable-everything)
  1744. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1745. ;;
  1746. --enable-random|--disable-random)
  1747. action=${opt%%-random}
  1748. do_random ${action#--} $COMPONENT_LIST
  1749. ;;
  1750. --enable-random=*|--disable-random=*)
  1751. action=${opt%%-random=*}
  1752. do_random ${action#--} $optval
  1753. ;;
  1754. --enable-*=*|--disable-*=*)
  1755. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1756. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1757. eval list=\$$(toupper $thing)_LIST
  1758. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1759. $action $(filter "$name" $list)
  1760. ;;
  1761. --enable-?*|--disable-?*)
  1762. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1763. if is_in $option $COMPONENT_LIST; then
  1764. test $action = disable && action=unset
  1765. eval $action \$$(toupper ${option%s})_LIST
  1766. elif is_in $option $CMDLINE_SELECT; then
  1767. $action $option
  1768. else
  1769. die_unknown $opt
  1770. fi
  1771. ;;
  1772. --list-*)
  1773. NAME="${opt#--list-}"
  1774. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1775. NAME=${NAME%s}
  1776. eval show_list $NAME \$$(toupper $NAME)_LIST
  1777. ;;
  1778. --help|-h) show_help
  1779. ;;
  1780. *)
  1781. optname="${opt%%=*}"
  1782. optname="${optname#--}"
  1783. optname=$(echo "$optname" | sed 's/-/_/g')
  1784. if is_in $optname $CMDLINE_SET; then
  1785. eval $optname='$optval'
  1786. elif is_in $optname $CMDLINE_APPEND; then
  1787. append $optname "$optval"
  1788. else
  1789. die_unknown $opt
  1790. fi
  1791. ;;
  1792. esac
  1793. done
  1794. disabled logging && logfile=/dev/null
  1795. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  1796. set >> $logfile
  1797. test -n "$cross_prefix" && enable cross_compile
  1798. if enabled cross_compile; then
  1799. test -n "$arch" && test -n "$target_os" ||
  1800. die "Must specify target arch and OS when cross-compiling"
  1801. fi
  1802. ar_default="${cross_prefix}${ar_default}"
  1803. cc_default="${cross_prefix}${cc_default}"
  1804. nm_default="${cross_prefix}${nm_default}"
  1805. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1806. ranlib="${cross_prefix}${ranlib}"
  1807. sysinclude_default="${sysroot}/usr/include"
  1808. case "$toolchain" in
  1809. clang-asan)
  1810. cc_default="clang"
  1811. add_cflags -faddress-sanitizer
  1812. add_ldflags -faddress-sanitizer
  1813. ;;
  1814. clang-tsan)
  1815. cc_default="clang"
  1816. add_cflags -fthread-sanitizer
  1817. add_ldflags -fthread-sanitizer
  1818. ;;
  1819. msvc)
  1820. cc_default="c99wrap cl"
  1821. ld_default="c99wrap link"
  1822. nm_default="dumpbin -symbols"
  1823. ar_default="lib"
  1824. target_os_default="win32"
  1825. ;;
  1826. ?*)
  1827. die "Unknown toolchain $toolchain"
  1828. ;;
  1829. esac
  1830. set_default arch cc pkg_config sysinclude target_os
  1831. enabled cross_compile || host_cc_default=$cc
  1832. set_default host_cc
  1833. if ! $pkg_config --version >/dev/null 2>&1; then
  1834. warn "$pkg_config not found, library detection may fail."
  1835. pkg_config=false
  1836. fi
  1837. exesuf() {
  1838. case $1 in
  1839. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1840. esac
  1841. }
  1842. EXESUF=$(exesuf $target_os)
  1843. HOSTEXESUF=$(exesuf $host_os)
  1844. # set temporary file name
  1845. : ${TMPDIR:=$TEMPDIR}
  1846. : ${TMPDIR:=$TMP}
  1847. : ${TMPDIR:=/tmp}
  1848. if ! check_cmd mktemp -u XXXXXX; then
  1849. # simple replacement for missing mktemp
  1850. # NOT SAFE FOR GENERAL USE
  1851. mktemp(){
  1852. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1853. }
  1854. fi
  1855. tmpfile(){
  1856. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1857. (set -C; exec > $tmp) 2>/dev/null ||
  1858. die "Unable to create temporary file in $TMPDIR."
  1859. append TMPFILES $tmp
  1860. eval $1=$tmp
  1861. }
  1862. trap 'rm -f -- $TMPFILES' EXIT
  1863. tmpfile TMPASM .asm
  1864. tmpfile TMPC .c
  1865. tmpfile TMPE $EXESUF
  1866. tmpfile TMPH .h
  1867. tmpfile TMPO .o
  1868. tmpfile TMPS .S
  1869. tmpfile TMPSH .sh
  1870. tmpfile TMPV .ver
  1871. unset -f mktemp
  1872. chmod +x $TMPE
  1873. # make sure we can execute files in $TMPDIR
  1874. cat > $TMPSH 2>> $logfile <<EOF
  1875. #! /bin/sh
  1876. EOF
  1877. chmod +x $TMPSH >> $logfile 2>&1
  1878. if ! $TMPSH >> $logfile 2>&1; then
  1879. cat <<EOF
  1880. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1881. variable to another directory and make sure that it is not mounted noexec.
  1882. EOF
  1883. die "Sanity test failed."
  1884. fi
  1885. msvc_flags(){
  1886. for flag; do
  1887. case $flag in
  1888. -fomit-frame-pointer) echo -Oy ;;
  1889. -g) echo -Z7 ;;
  1890. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  1891. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  1892. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  1893. -wd4996 -wd4273 ;;
  1894. -std=c99) ;;
  1895. -fno-math-errno) ;;
  1896. -fno-common) ;;
  1897. -fno-signed-zeros) ;;
  1898. -lz) echo zlib.lib ;;
  1899. -lavifil32) echo vfw32.lib ;;
  1900. -lavicap32) echo vfw32.lib user32.lib ;;
  1901. -l*) echo ${flag#-l}.lib ;;
  1902. *) echo $flag ;;
  1903. esac
  1904. done
  1905. }
  1906. pgi_flags(){
  1907. for flag; do
  1908. case $flag in
  1909. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  1910. -fomit-frame-pointer) echo -Mnoframe ;;
  1911. -g) echo -gopt ;;
  1912. *) echo $flag ;;
  1913. esac
  1914. done
  1915. }
  1916. suncc_flags(){
  1917. for flag; do
  1918. case $flag in
  1919. -march=*|-mcpu=*)
  1920. case "${flag#*=}" in
  1921. native) echo -xtarget=native ;;
  1922. v9|niagara) echo -xarch=sparc ;;
  1923. ultrasparc) echo -xarch=sparcvis ;;
  1924. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1925. i586|pentium) echo -xchip=pentium ;;
  1926. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1927. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1928. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1929. pentium4*) echo -xtarget=pentium4 ;;
  1930. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1931. *-sse3) echo -xarch=sse3 ;;
  1932. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1933. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  1934. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1935. k8|opteron|athlon64|athlon-fx)
  1936. echo -xarch=sse2a ;;
  1937. athlon*) echo -xarch=pentium_proa ;;
  1938. esac
  1939. ;;
  1940. -std=c99) echo -xc99 ;;
  1941. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1942. -fPIC) echo -KPIC -xcode=pic32 ;;
  1943. -W*,*) echo $flag ;;
  1944. -f*-*|-W*) ;;
  1945. *) echo $flag ;;
  1946. esac
  1947. done
  1948. }
  1949. tms470_flags(){
  1950. for flag; do
  1951. case $flag in
  1952. -march=*|-mcpu=*)
  1953. case "${flag#*=}" in
  1954. armv7-a|cortex-a*) echo -mv=7a8 ;;
  1955. armv7-r|cortex-r*) echo -mv=7r4 ;;
  1956. armv7-m|cortex-m*) echo -mv=7m3 ;;
  1957. armv6*|arm11*) echo -mv=6 ;;
  1958. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  1959. echo -mv=5e ;;
  1960. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  1961. esac
  1962. ;;
  1963. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  1964. -mfpu=vfp) echo --float_support=vfpv2 ;;
  1965. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  1966. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  1967. -msoft-float) echo --float_support=vfplib ;;
  1968. -O[0-3]|-mf=*) echo $flag ;;
  1969. -g) echo -g -mn ;;
  1970. -pds=*) echo $flag ;;
  1971. -D*|-I*) echo $flag ;;
  1972. --gcc|--abi=*) echo $flag ;;
  1973. -me) echo $flag ;;
  1974. esac
  1975. done
  1976. }
  1977. probe_cc(){
  1978. pfx=$1
  1979. _cc=$2
  1980. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  1981. unset _ld_o _ldflags _ld_lib _ld_path
  1982. unset _depflags _DEPCMD _DEPFLAGS
  1983. _flags_filter=echo
  1984. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  1985. _type=llvm_gcc
  1986. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  1987. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  1988. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  1989. _cflags_speed='-O3'
  1990. _cflags_size='-Os'
  1991. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  1992. _type=gcc
  1993. gcc_version=$($_cc --version | head -n1)
  1994. gcc_basever=$($_cc -dumpversion)
  1995. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  1996. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  1997. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  1998. if ! $_cc -dumpversion | grep -q '^2\.'; then
  1999. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2000. fi
  2001. _cflags_speed='-O3'
  2002. _cflags_size='-Os'
  2003. elif $_cc --version 2>/dev/null | grep -q Intel; then
  2004. _type=icc
  2005. _ident=$($_cc --version | head -n1)
  2006. _depflags='-MMD'
  2007. _cflags_speed='-O3'
  2008. _cflags_size='-Os'
  2009. _cflags_noopt='-O1'
  2010. elif $_cc -v 2>&1 | grep -q xlc; then
  2011. _type=xlc
  2012. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2013. _cflags_speed='-O5'
  2014. _cflags_size='-O5 -qcompact'
  2015. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2016. _type=ccc
  2017. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2018. _DEPFLAGS='-M'
  2019. debuglevel=3
  2020. _ldflags='-Wl,-z,now' # calls to libots crash without this
  2021. _cflags_speed='-fast'
  2022. _cflags_size='-O1'
  2023. elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  2024. test -d "$sysroot" || die "No valid sysroot specified."
  2025. _type=armcc
  2026. _ident=$($_cc --vsn | head -n1)
  2027. armcc_conf="$PWD/armcc.conf"
  2028. $_cc --arm_linux_configure \
  2029. --arm_linux_config_file="$armcc_conf" \
  2030. --configure_sysroot="$sysroot" \
  2031. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2032. die "Error creating armcc configuration file."
  2033. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2034. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2035. as_default="${cross_prefix}gcc"
  2036. _depflags='-MMD'
  2037. _cflags_speed='-O3'
  2038. _cflags_size='-Os'
  2039. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2040. _type=tms470
  2041. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2042. _flags='--gcc --abi=eabi -me'
  2043. _cc_e='-ppl -fe=$@'
  2044. _cc_o='-fe=$@'
  2045. _depflags='-ppa -ppd=$(@:.o=.d)'
  2046. _cflags_speed='-O3 -mf=5'
  2047. _cflags_size='-O3 -mf=2'
  2048. _flags_filter=tms470_flags
  2049. elif $_cc -v 2>&1 | grep -q clang; then
  2050. _type=clang
  2051. _ident=$($_cc --version | head -n1)
  2052. _depflags='-MMD'
  2053. _cflags_speed='-O3'
  2054. _cflags_size='-Os'
  2055. elif $_cc -V 2>&1 | grep -q Sun; then
  2056. _type=suncc
  2057. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2058. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2059. _DEPFLAGS='-xM1 -xc99'
  2060. _ldflags='-std=c99'
  2061. _cflags_speed='-O5'
  2062. _cflags_size='-O5 -xspace'
  2063. _flags_filter=suncc_flags
  2064. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2065. _type=pathscale
  2066. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2067. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2068. _cflags_speed='-O2'
  2069. _cflags_size='-Os'
  2070. _flags_filter='filter_out -Wdisabled-optimization'
  2071. elif $_cc -v 2>&1 | grep -q Open64; then
  2072. _type=open64
  2073. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2074. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2075. _cflags_speed='-O2'
  2076. _cflags_size='-Os'
  2077. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2078. elif $_cc -V 2>&1 | grep -q Portland; then
  2079. _type=pgi
  2080. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2081. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2082. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2083. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2084. _cflags_noopt="-O1"
  2085. _flags_filter=pgi_flags
  2086. elif $_cc 2>&1 | grep -q Microsoft; then
  2087. _type=msvc
  2088. _ident=$($cc 2>&1 | head -n1)
  2089. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2090. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2091. _cflags_speed="-O2"
  2092. _cflags_size="-O1"
  2093. # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
  2094. if $_cc 2>&1 | grep -q Linker; then
  2095. _ld_o='-out $@'
  2096. else
  2097. _ld_o='-Fe$@'
  2098. fi
  2099. _cc_o='-Fo $@'
  2100. _cc_e='-P -Fi $@'
  2101. _flags_filter=msvc_flags
  2102. _ld_lib='lib%.a'
  2103. _ld_path='-libpath:'
  2104. _flags='-nologo'
  2105. _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2106. if [ $pfx = hostcc ]; then
  2107. append _cflags -Dsnprintf=_snprintf
  2108. fi
  2109. fi
  2110. eval ${pfx}_type=\$_type
  2111. eval ${pfx}_ident=\$_ident
  2112. }
  2113. set_ccvars(){
  2114. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2115. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2116. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2117. if [ -n "$_depflags" ]; then
  2118. eval ${1}_DEPFLAGS=\$_depflags
  2119. else
  2120. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2121. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2122. eval DEP${1}FLAGS=\$_flags
  2123. fi
  2124. }
  2125. probe_cc cc "$cc"
  2126. cflags_filter=$_flags_filter
  2127. cflags_speed=$_cflags_speed
  2128. cflags_size=$_cflags_size
  2129. cflags_noopt=$_cflags_noopt
  2130. add_cflags $_flags $_cflags
  2131. cc_ldflags=$_ldflags
  2132. set_ccvars CC
  2133. probe_cc hostcc "$host_cc"
  2134. host_cflags_filter=$_flags_filter
  2135. add_host_cflags $_flags $_cflags
  2136. set_ccvars HOSTCC
  2137. test -n "$cc_type" && enable $cc_type ||
  2138. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2139. : ${as_default:=$cc}
  2140. : ${dep_cc_default:=$cc}
  2141. : ${ld_default:=$cc}
  2142. : ${host_ld_default:=$host_cc}
  2143. set_default ar as dep_cc ld host_ld
  2144. probe_cc as "$as"
  2145. asflags_filter=$_flags_filter
  2146. add_asflags $_flags $_cflags
  2147. set_ccvars AS
  2148. probe_cc ld "$ld"
  2149. ldflags_filter=$_flags_filter
  2150. add_ldflags $_flags $_ldflags
  2151. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2152. LD_O=${_ld_o-$LD_O}
  2153. LD_LIB=${_ld_lib-$LD_LIB}
  2154. LD_PATH=${_ld_path-$LD_PATH}
  2155. probe_cc hostld "$host_ld"
  2156. host_ldflags_filter=$_flags_filter
  2157. add_host_ldflags $_flags $_ldflags
  2158. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2159. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2160. probe_cc depcc "$dep_cc"
  2161. CCDEP=${_DEPCMD:-$DEPCMD}
  2162. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2163. DEPCCFLAGS=$_flags
  2164. fi
  2165. if $ar 2>&1 | grep -q Microsoft; then
  2166. arflags="-nologo"
  2167. ar_o='-out:$@'
  2168. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2169. arflags="rq"
  2170. ar_o='$@'
  2171. else
  2172. arflags="rc"
  2173. ar_o='$@'
  2174. fi
  2175. add_cflags $extra_cflags
  2176. add_asflags $extra_cflags
  2177. if test -n "$sysroot"; then
  2178. case "$cc_type" in
  2179. gcc|llvm_gcc|clang)
  2180. add_cppflags --sysroot="$sysroot"
  2181. add_ldflags --sysroot="$sysroot"
  2182. ;;
  2183. tms470)
  2184. add_cppflags -I"$sysinclude"
  2185. add_ldflags --sysroot="$sysroot"
  2186. ;;
  2187. esac
  2188. fi
  2189. if test "$cpu" = host; then
  2190. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  2191. case "$cc_type" in
  2192. gcc|llvm_gcc)
  2193. check_native(){
  2194. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2195. sed -n "/cc1.*$1=/{
  2196. s/.*$1=\\([^ ]*\\).*/\\1/
  2197. p
  2198. q
  2199. }" $TMPE
  2200. }
  2201. cpu=$(check_native -march || check_native -mcpu)
  2202. ;;
  2203. esac
  2204. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  2205. fi
  2206. # Deal with common $arch aliases
  2207. case "$arch" in
  2208. arm*)
  2209. arch="arm"
  2210. ;;
  2211. mips|mipsel|IP*)
  2212. arch="mips"
  2213. ;;
  2214. mips64*)
  2215. arch="mips"
  2216. subarch="mips64"
  2217. ;;
  2218. parisc|hppa)
  2219. arch="parisc"
  2220. ;;
  2221. parisc64|hppa64)
  2222. arch="parisc"
  2223. subarch="parisc64"
  2224. ;;
  2225. "Power Macintosh"|ppc|powerpc)
  2226. arch="ppc"
  2227. ;;
  2228. ppc64|powerpc64)
  2229. arch="ppc"
  2230. subarch="ppc64"
  2231. ;;
  2232. s390|s390x)
  2233. arch="s390"
  2234. ;;
  2235. sh4|sh)
  2236. arch="sh4"
  2237. ;;
  2238. sun4u|sparc64)
  2239. arch="sparc"
  2240. subarch="sparc64"
  2241. ;;
  2242. tilegx|tile-gx)
  2243. arch="tilegx"
  2244. ;;
  2245. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  2246. arch="x86"
  2247. ;;
  2248. esac
  2249. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2250. enable $arch
  2251. # Add processor-specific flags
  2252. if test "$cpu" = generic; then
  2253. : do nothing
  2254. elif enabled ppc; then
  2255. case $(tolower $cpu) in
  2256. 601|ppc601|powerpc601)
  2257. cpuflags="-mcpu=601"
  2258. disable altivec
  2259. ;;
  2260. 603*|ppc603*|powerpc603*)
  2261. cpuflags="-mcpu=603"
  2262. disable altivec
  2263. ;;
  2264. 604*|ppc604*|powerpc604*)
  2265. cpuflags="-mcpu=604"
  2266. disable altivec
  2267. ;;
  2268. g3|75*|ppc75*|powerpc75*)
  2269. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  2270. disable altivec
  2271. ;;
  2272. g4|745*|ppc745*|powerpc745*)
  2273. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  2274. ;;
  2275. 74*|ppc74*|powerpc74*)
  2276. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  2277. ;;
  2278. g5|970|ppc970|powerpc970)
  2279. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  2280. ;;
  2281. power[3-7]*)
  2282. cpuflags="-mcpu=$cpu -mpowerpc-gfxopt -mpowerpc64"
  2283. ;;
  2284. cell)
  2285. cpuflags="-mcpu=cell"
  2286. enable ldbrx
  2287. ;;
  2288. e500mc)
  2289. cpuflags="-mcpu=e500mc"
  2290. disable altivec
  2291. ;;
  2292. e500v2)
  2293. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2294. disable altivec
  2295. ;;
  2296. e500)
  2297. cpuflags="-mcpu=8540 -mhard-float"
  2298. disable altivec
  2299. ;;
  2300. esac
  2301. elif enabled x86; then
  2302. case $cpu in
  2303. i[345]86|pentium)
  2304. cpuflags="-march=$cpu"
  2305. disable mmx
  2306. ;;
  2307. # targets that do NOT support conditional mov (cmov)
  2308. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2309. cpuflags="-march=$cpu"
  2310. disable cmov
  2311. ;;
  2312. # targets that do support conditional mov (cmov)
  2313. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom|bdver*)
  2314. cpuflags="-march=$cpu"
  2315. enable cmov
  2316. enable fast_cmov
  2317. ;;
  2318. # targets that do support conditional mov but on which it's slow
  2319. pentium4|pentium4m|prescott|nocona)
  2320. cpuflags="-march=$cpu"
  2321. enable cmov
  2322. disable fast_cmov
  2323. ;;
  2324. esac
  2325. elif enabled sparc; then
  2326. case $cpu in
  2327. niagara)
  2328. cpuflags="-mcpu=$cpu"
  2329. disable vis
  2330. ;;
  2331. sparc64)
  2332. cpuflags="-mcpu=v9"
  2333. ;;
  2334. esac
  2335. elif enabled arm; then
  2336. case $cpu in
  2337. armv*)
  2338. cpuflags="-march=$cpu"
  2339. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2340. ;;
  2341. *)
  2342. cpuflags="-mcpu=$cpu"
  2343. case $cpu in
  2344. cortex-a*) subarch=armv7a ;;
  2345. cortex-r*) subarch=armv7r ;;
  2346. cortex-m*) enable thumb; subarch=armv7m ;;
  2347. arm11*) subarch=armv6 ;;
  2348. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2349. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2350. esac
  2351. ;;
  2352. esac
  2353. elif enabled alpha; then
  2354. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2355. elif enabled bfin; then
  2356. cpuflags="-mcpu=$cpu"
  2357. elif enabled mips; then
  2358. cpuflags="-march=$cpu"
  2359. elif enabled avr32; then
  2360. case $cpu in
  2361. ap7[02]0[0-2])
  2362. subarch="avr32_ap"
  2363. cpuflags="-mpart=$cpu"
  2364. ;;
  2365. ap)
  2366. subarch="avr32_ap"
  2367. cpuflags="-march=$cpu"
  2368. ;;
  2369. uc3[ab]*)
  2370. subarch="avr32_uc"
  2371. cpuflags="-mcpu=$cpu"
  2372. ;;
  2373. uc)
  2374. subarch="avr32_uc"
  2375. cpuflags="-march=$cpu"
  2376. ;;
  2377. esac
  2378. fi
  2379. add_cflags $cpuflags
  2380. add_asflags $cpuflags
  2381. # compiler sanity check
  2382. check_exec <<EOF
  2383. int main(void){ return 0; }
  2384. EOF
  2385. if test "$?" != 0; then
  2386. echo "$cc is unable to create an executable file."
  2387. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2388. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2389. echo "Only do this if you know what cross compiling means."
  2390. fi
  2391. die "C compiler test failed."
  2392. fi
  2393. add_cppflags -D_ISOC99_SOURCE
  2394. check_cflags -std=c99
  2395. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2396. #include <stdlib.h>
  2397. EOF
  2398. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2399. #include <stdlib.h>
  2400. EOF
  2401. check_host_cflags -std=c99
  2402. check_host_cflags -Wall
  2403. case "$arch" in
  2404. alpha|ia64|mips|parisc|sparc)
  2405. spic=$shared
  2406. ;;
  2407. x86)
  2408. subarch="x86_32"
  2409. check_code cc "" "int test[(int)sizeof(char*) - 7]" && subarch="x86_64"
  2410. if test "$subarch" = "x86_64"; then
  2411. spic=$shared
  2412. fi
  2413. ;;
  2414. esac
  2415. enable $subarch
  2416. enabled spic && enable pic
  2417. # OS specific
  2418. case $target_os in
  2419. haiku)
  2420. prefix_default="/boot/common"
  2421. network_extralibs="-lnetwork"
  2422. host_libs=
  2423. ;;
  2424. sunos)
  2425. AVSERVERLDFLAGS=""
  2426. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2427. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2428. network_extralibs="-lsocket -lnsl"
  2429. add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  2430. # When using suncc to build, the Solaris linker will mark
  2431. # an executable with each instruction set encountered by
  2432. # the Solaris assembler. As our libraries contain their own
  2433. # guards for processor-specific code, instead suppress
  2434. # generation of the HWCAPS ELF section on Solaris x86 only.
  2435. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2436. nm_default='nm -P -g'
  2437. ;;
  2438. netbsd)
  2439. disable symver
  2440. oss_indev_extralibs="-lossaudio"
  2441. oss_outdev_extralibs="-lossaudio"
  2442. ;;
  2443. openbsd|bitrig)
  2444. # On OpenBSD 4.5. the compiler does not use PIC unless
  2445. # explicitly using -fPIC. Libav builds fine without PIC,
  2446. # however the generated executable will not do anything
  2447. # (simply quits with exit-code 1, no crash, no output).
  2448. # Thus explicitly enable PIC here.
  2449. enable pic
  2450. disable symver
  2451. SHFLAGS='-shared'
  2452. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
  2453. SLIB_INSTALL_LINKS=
  2454. oss_indev_extralibs="-lossaudio"
  2455. oss_outdev_extralibs="-lossaudio"
  2456. ;;
  2457. dragonfly)
  2458. disable symver
  2459. ;;
  2460. freebsd)
  2461. ;;
  2462. bsd/os)
  2463. add_extralibs -lpoll -lgnugetopt
  2464. ;;
  2465. darwin)
  2466. gas="gas-preprocessor.pl $cc"
  2467. enabled ppc && add_asflags -force_cpusubtype_ALL
  2468. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2469. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2470. add_ldflags -Wl,-dynamic,-search_paths_first
  2471. SLIBSUF=".dylib"
  2472. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2473. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2474. AVSERVERLDFLAGS=-Wl,-bind_at_load
  2475. objformat="macho"
  2476. enabled x86_64 && objformat="macho64"
  2477. enabled_any pic shared ||
  2478. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2479. ;;
  2480. mingw32*)
  2481. if test $target_os = "mingw32ce"; then
  2482. disable network
  2483. else
  2484. target_os=mingw32
  2485. fi
  2486. LIBTARGET=i386
  2487. if enabled x86_64; then
  2488. LIBTARGET="i386:x86-64"
  2489. elif enabled arm; then
  2490. LIBTARGET=arm-wince
  2491. fi
  2492. shlibdir_default="$bindir_default"
  2493. SLIBPREF=""
  2494. SLIBSUF=".dll"
  2495. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2496. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2497. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2498. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2499. SLIB_INSTALL_LINKS=
  2500. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2501. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2502. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  2503. objformat="win32"
  2504. dlltool="${cross_prefix}dlltool"
  2505. ranlib=:
  2506. enable dos_paths
  2507. add_cppflags -U__STRICT_ANSI__
  2508. ;;
  2509. win32|win64)
  2510. if enabled shared; then
  2511. # Link to the import library instead of the normal static library
  2512. # for shared libs.
  2513. LD_LIB='%.lib'
  2514. # Cannot build shared and static libraries at the same time with
  2515. # MSVC.
  2516. disable static
  2517. fi
  2518. shlibdir_default="$bindir_default"
  2519. SLIBPREF=""
  2520. SLIBSUF=".dll"
  2521. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2522. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2523. SLIB_CREATE_DEF_CMD='makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  2524. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2525. SLIB_INSTALL_LINKS=
  2526. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2527. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2528. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  2529. objformat="win32"
  2530. ranlib=:
  2531. enable dos_paths
  2532. ;;
  2533. cygwin*)
  2534. target_os=cygwin
  2535. shlibdir_default="$bindir_default"
  2536. SLIBPREF="cyg"
  2537. SLIBSUF=".dll"
  2538. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2539. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2540. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2541. SLIB_INSTALL_LINKS=
  2542. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  2543. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  2544. objformat="win32"
  2545. enable dos_paths
  2546. add_cppflags -U__STRICT_ANSI__
  2547. ;;
  2548. *-dos|freedos|opendos)
  2549. network_extralibs="-lsocket"
  2550. objformat="coff"
  2551. enable dos_paths
  2552. add_cppflags -U__STRICT_ANSI__
  2553. ;;
  2554. linux)
  2555. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2556. enable dv1394
  2557. ;;
  2558. irix*)
  2559. target_os=irix
  2560. ranlib="echo ignoring ranlib"
  2561. ;;
  2562. os/2*)
  2563. ln_s="cp -f"
  2564. objformat="aout"
  2565. add_cppflags -D_GNU_SOURCE
  2566. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2567. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2568. AVSERVERLDFLAGS=""
  2569. LIBSUF="_s.a"
  2570. SLIBPREF=""
  2571. SLIBSUF=".dll"
  2572. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2573. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2574. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2575. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2576. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2577. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2578. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2579. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2580. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2581. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2582. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2583. enable dos_paths
  2584. ;;
  2585. gnu/kfreebsd)
  2586. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2587. ;;
  2588. gnu)
  2589. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2590. ;;
  2591. qnx)
  2592. add_cppflags -D_QNX_SOURCE
  2593. network_extralibs="-lsocket"
  2594. ;;
  2595. symbian)
  2596. SLIBSUF=".dll"
  2597. enable dos_paths
  2598. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2599. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2600. add_ldflags -Wl,--target1-abs,--no-undefined \
  2601. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2602. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2603. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2604. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2605. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2606. ;;
  2607. osf1)
  2608. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  2609. AVSERVERLDFLAGS=
  2610. ;;
  2611. minix)
  2612. ;;
  2613. none)
  2614. ;;
  2615. *)
  2616. die "Unknown OS '$target_os'."
  2617. ;;
  2618. esac
  2619. # determine libc flavour
  2620. if check_cpp_condition features.h "defined __UCLIBC__"; then
  2621. libc_type=uclibc
  2622. elif check_cpp_condition features.h "defined __GLIBC__"; then
  2623. libc_type=glibc
  2624. elif check_header _mingw.h; then
  2625. libc_type=mingw
  2626. check_cpp_condition _mingw.h \
  2627. "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
  2628. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2629. die "ERROR: MinGW runtime version must be >= 3.15."
  2630. elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  2631. libc_type=newlib
  2632. elif check_func_headers stdlib.h _get_doserrno; then
  2633. libc_type=msvcrt
  2634. add_compat strtod.o strtod=avpriv_strtod
  2635. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  2636. _snprintf=avpriv_snprintf \
  2637. vsnprintf=avpriv_vsnprintf
  2638. elif check_cpp_condition stddef.h "defined __KLIBC__"; then
  2639. libc_type=klibc
  2640. fi
  2641. test -n "$libc_type" && enable $libc_type
  2642. # hacks for compiler/libc/os combinations
  2643. if enabled_all tms470 glibc; then
  2644. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  2645. add_cppflags -D__USER_LABEL_PREFIX__=
  2646. add_cppflags -D__builtin_memset=memset
  2647. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  2648. add_cflags -pds=48 # incompatible redefinition of macro
  2649. fi
  2650. esc(){
  2651. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  2652. }
  2653. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
  2654. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2655. set_default $PATHS_LIST
  2656. set_default nm
  2657. # we need to build at least one lib type
  2658. if ! enabled_any static shared; then
  2659. cat <<EOF
  2660. At least one library type must be built.
  2661. Specify --enable-static to build the static libraries or --enable-shared to
  2662. build the shared libraries as well. To only build the shared libraries specify
  2663. --disable-static in addition to --enable-shared.
  2664. EOF
  2665. exit 1;
  2666. fi
  2667. die_license_disabled() {
  2668. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2669. }
  2670. die_license_disabled gpl libcdio
  2671. die_license_disabled gpl libx264
  2672. die_license_disabled gpl libxavs
  2673. die_license_disabled gpl libxvid
  2674. die_license_disabled gpl x11grab
  2675. die_license_disabled nonfree libfaac
  2676. die_license_disabled nonfree libfdk_aac
  2677. die_license_disabled nonfree openssl
  2678. die_license_disabled version3 libopencore_amrnb
  2679. die_license_disabled version3 libopencore_amrwb
  2680. die_license_disabled version3 libvo_aacenc
  2681. die_license_disabled version3 libvo_amrwbenc
  2682. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2683. disabled optimizations || check_cflags -fomit-frame-pointer
  2684. enable_pic() {
  2685. enable pic
  2686. add_cppflags -DPIC
  2687. add_cflags -fPIC
  2688. add_asflags -fPIC
  2689. }
  2690. enabled pic && enable_pic
  2691. check_cc <<EOF || die "Symbol mangling check failed."
  2692. int ff_extern;
  2693. EOF
  2694. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2695. extern_prefix=${sym%%ff_extern*}
  2696. check_cc <<EOF && enable_weak inline_asm
  2697. void foo(void) { __asm__ volatile ("" ::); }
  2698. EOF
  2699. _restrict=
  2700. for restrict_keyword in restrict __restrict__ __restrict; do
  2701. check_cc <<EOF && _restrict=$restrict_keyword && break
  2702. void foo(char * $restrict_keyword p);
  2703. EOF
  2704. done
  2705. check_cc <<EOF && enable attribute_packed
  2706. struct { int x; } __attribute__((packed)) x;
  2707. EOF
  2708. check_cc <<EOF && enable attribute_may_alias
  2709. union { int x; } __attribute__((may_alias)) x;
  2710. EOF
  2711. check_cc <<EOF || die "endian test failed"
  2712. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2713. EOF
  2714. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2715. if enabled alpha; then
  2716. check_cflags -mieee
  2717. elif enabled arm; then
  2718. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2719. nogas=die
  2720. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2721. enable vfp_args
  2722. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2723. case "${cross_prefix:-$cc}" in
  2724. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2725. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2726. __asm__ (".eabi_attribute 28, 1");
  2727. int main(void) { return 0; }
  2728. EOF
  2729. esac
  2730. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2731. fi
  2732. enabled armv5te && check_inline_asm armv5te '"qadd r0, r0, r0"'
  2733. enabled armv6 && check_inline_asm armv6 '"sadd16 r0, r0, r0"'
  2734. enabled armv6t2 && check_inline_asm armv6t2 '"movt r0, #0"'
  2735. enabled armvfp && check_inline_asm armvfp '"fadds s0, s0, s0"'
  2736. enabled neon && check_inline_asm neon '"vadd.i16 q0, q0, q0"'
  2737. enabled vfpv3 && check_inline_asm vfpv3 '"vmov.f32 s0, #1.0"'
  2738. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  2739. check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2740. enabled_all armv6t2 shared !pic && enable_pic
  2741. elif enabled mips; then
  2742. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  2743. elif enabled ppc; then
  2744. enable local_aligned_8 local_aligned_16
  2745. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2746. check_inline_asm ibm_asm '"add 0, 0, 0"'
  2747. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  2748. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2749. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2750. if enabled altivec; then
  2751. nogas=warn
  2752. check_cflags -maltivec -mabi=altivec &&
  2753. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2754. check_cflags -faltivec
  2755. # check if our compiler supports Motorola AltiVec C API
  2756. check_cc <<EOF || disable altivec
  2757. $inc_altivec_h
  2758. int main(void) {
  2759. vector signed int v1 = (vector signed int) { 0 };
  2760. vector signed int v2 = (vector signed int) { 1 };
  2761. v1 = vec_add(v1, v2);
  2762. return 0;
  2763. }
  2764. EOF
  2765. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  2766. fi
  2767. elif enabled sparc; then
  2768. enabled vis &&
  2769. check_inline_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2770. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2771. elif enabled x86; then
  2772. check_code ld intrin.h "__rdtsc()" && enable rdtsc
  2773. check_code ld mmintrin.h "_mm_empty()" && enable mm_empty
  2774. enable local_aligned_8 local_aligned_16
  2775. # check whether EBP is available on x86
  2776. # As 'i' is stored on the stack, this program will crash
  2777. # if the base pointer is used to access it because the
  2778. # base pointer is cleared in the inline assembly code.
  2779. check_exec_crash <<EOF && enable ebp_available
  2780. volatile int i=0;
  2781. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  2782. return i;
  2783. EOF
  2784. # check whether EBX is available on x86
  2785. check_inline_asm ebx_available '""::"b"(0)' &&
  2786. check_inline_asm ebx_available '"":::"%ebx"'
  2787. # check whether xmm clobbers are supported
  2788. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  2789. # check whether binutils is new enough to compile SSSE3/MMXEXT
  2790. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  2791. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  2792. if ! disabled_any asm mmx yasm; then
  2793. if check_cmd $yasmexe --version; then
  2794. enabled x86_64 && yasm_extra="-m amd64"
  2795. yasm_debug="-g dwarf2"
  2796. elif check_cmd nasm -v; then
  2797. yasmexe=nasm
  2798. yasm_debug="-g -F dwarf"
  2799. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2800. fi
  2801. YASMFLAGS="-f $objformat $yasm_extra"
  2802. enabled pic && append YASMFLAGS "-DPIC"
  2803. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2804. case "$objformat" in
  2805. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2806. esac
  2807. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  2808. die "yasm not found, use --disable-yasm for a crippled build"
  2809. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx_external
  2810. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  2811. check_yasm "CPU amdnop" && enable cpunop
  2812. fi
  2813. case "$cpu" in
  2814. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2815. disable fast_clz
  2816. ;;
  2817. esac
  2818. fi
  2819. if enabled asm; then
  2820. as=${gas:=$as}
  2821. check_inline_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2822. $nogas "GNU assembler not found, install gas-preprocessor"
  2823. fi
  2824. check_ldflags -Wl,--as-needed
  2825. if check_func dlopen; then
  2826. ldl=
  2827. elif check_func dlopen -ldl; then
  2828. ldl=-ldl
  2829. fi
  2830. if enabled network; then
  2831. check_type "sys/types.h sys/socket.h" socklen_t
  2832. check_type netdb.h "struct addrinfo"
  2833. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  2834. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  2835. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2836. check_type netinet/in.h "struct sockaddr_in6"
  2837. check_type poll.h "struct pollfd"
  2838. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2839. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2840. check_type netinet/sctp.h "struct sctp_event_subscribe"
  2841. check_func getaddrinfo $network_extralibs
  2842. # Prefer arpa/inet.h over winsock2
  2843. if check_header arpa/inet.h ; then
  2844. check_func closesocket
  2845. elif check_header winsock2.h ; then
  2846. check_func_headers winsock2.h closesocket -lws2 &&
  2847. network_extralibs="-lws2" ||
  2848. { check_func_headers winsock2.h closesocket -lws2_32 &&
  2849. network_extralibs="-lws2_32"; }
  2850. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  2851. check_type ws2tcpip.h socklen_t
  2852. check_type ws2tcpip.h "struct addrinfo"
  2853. check_type ws2tcpip.h "struct group_source_req"
  2854. check_type ws2tcpip.h "struct ip_mreq_source"
  2855. check_type ws2tcpip.h "struct ipv6_mreq"
  2856. check_type winsock2.h "struct pollfd"
  2857. check_type ws2tcpip.h "struct sockaddr_in6"
  2858. check_type ws2tcpip.h "struct sockaddr_storage"
  2859. check_struct winsock2.h "struct sockaddr" sa_len
  2860. else
  2861. disable network
  2862. fi
  2863. fi
  2864. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2865. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2866. check_func fcntl
  2867. check_func fork
  2868. check_func gethrtime
  2869. check_func getopt
  2870. check_func getrusage
  2871. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2872. check_func gettimeofday
  2873. check_func inet_aton $network_extralibs
  2874. check_func isatty
  2875. check_func localtime_r
  2876. check_func ${malloc_prefix}memalign && enable memalign
  2877. check_func mkstemp
  2878. check_func mmap
  2879. check_func mprotect
  2880. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2881. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  2882. check_func setrlimit
  2883. check_func strerror_r
  2884. check_func strptime
  2885. check_func strtok_r
  2886. check_func sched_getaffinity
  2887. check_func sysconf
  2888. check_func sysctl
  2889. check_func usleep
  2890. check_func_headers io.h setmode
  2891. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  2892. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  2893. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2894. check_func_headers windows.h GetProcessAffinityMask
  2895. check_func_headers windows.h GetProcessTimes
  2896. check_func_headers windows.h GetSystemTimeAsFileTime
  2897. check_func_headers windows.h MapViewOfFile
  2898. check_func_headers windows.h Sleep
  2899. check_func_headers windows.h VirtualAlloc
  2900. check_header direct.h
  2901. check_header dlfcn.h
  2902. check_header dxva.h
  2903. check_header dxva2api.h
  2904. check_header io.h
  2905. check_header malloc.h
  2906. check_header poll.h
  2907. check_header sys/mman.h
  2908. check_header sys/param.h
  2909. check_header sys/resource.h
  2910. check_header sys/select.h
  2911. check_header sys/time.h
  2912. check_header unistd.h
  2913. check_header vdpau/vdpau.h
  2914. check_header vdpau/vdpau_x11.h
  2915. check_header windows.h
  2916. check_header X11/extensions/XvMClib.h
  2917. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2918. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2919. if ! disabled w32threads && ! enabled pthreads; then
  2920. check_func _beginthreadex && enable w32threads
  2921. fi
  2922. # check for some common methods of building with pthread support
  2923. # do this before the optional library checks as some of them require pthreads
  2924. if ! disabled pthreads && ! enabled w32threads; then
  2925. enable pthreads
  2926. if check_func pthread_create; then
  2927. :
  2928. elif check_func pthread_create -pthread; then
  2929. add_cflags -pthread
  2930. add_extralibs -pthread
  2931. elif check_func pthread_create -pthreads; then
  2932. add_cflags -pthreads
  2933. add_extralibs -pthreads
  2934. elif check_func pthread_create -lpthreadGC2; then
  2935. add_extralibs -lpthreadGC2
  2936. elif ! check_lib pthread.h pthread_create -lpthread; then
  2937. disable pthreads
  2938. fi
  2939. fi
  2940. for thread in $THREADS_LIST; do
  2941. if enabled $thread; then
  2942. test -n "$thread_type" &&
  2943. die "ERROR: Only one thread type must be selected." ||
  2944. thread_type="$thread"
  2945. fi
  2946. done
  2947. check_lib math.h sin -lm && LIBM="-lm"
  2948. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  2949. check_mathfunc cbrtf
  2950. check_mathfunc exp2
  2951. check_mathfunc exp2f
  2952. check_mathfunc isinf
  2953. check_mathfunc isnan
  2954. check_mathfunc llrint
  2955. check_mathfunc llrintf
  2956. check_mathfunc log2
  2957. check_mathfunc log2f
  2958. check_mathfunc lrint
  2959. check_mathfunc lrintf
  2960. check_mathfunc rint
  2961. check_mathfunc round
  2962. check_mathfunc roundf
  2963. check_mathfunc trunc
  2964. check_mathfunc truncf
  2965. # these are off by default, so fail if requested and not available
  2966. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2967. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  2968. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  2969. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2970. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  2971. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  2972. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2973. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  2974. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  2975. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  2976. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  2977. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  2978. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2979. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  2980. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  2981. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  2982. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  2983. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2984. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2985. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  2986. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  2987. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2988. enabled libvpx && {
  2989. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  2990. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  2991. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_enc_init_ver -lvpx ||
  2992. die "ERROR: libvpx encoder version must be >=0.9.1"; } }
  2993. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  2994. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  2995. die "ERROR: libx264 version must be >= 0.118."; }
  2996. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  2997. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2998. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  2999. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3000. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3001. die "ERROR: openssl not found"; }
  3002. if enabled gnutls; then
  3003. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3004. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3005. fi
  3006. # libdc1394 check
  3007. if enabled libdc1394; then
  3008. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3009. enable libdc1394_2; } ||
  3010. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3011. enable libdc1394_1; } ||
  3012. die "ERROR: No version of libdc1394 found "
  3013. fi
  3014. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3015. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3016. enable sdl &&
  3017. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  3018. fi
  3019. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  3020. check_header linux/fb.h
  3021. check_header linux/videodev2.h
  3022. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3023. check_header sys/videoio.h
  3024. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3025. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3026. # w32api 3.12 had it defined wrong
  3027. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3028. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3029. { check_header dev/bktr/ioctl_meteor.h &&
  3030. check_header dev/bktr/ioctl_bt848.h; } ||
  3031. { check_header machine/ioctl_meteor.h &&
  3032. check_header machine/ioctl_bt848.h; } ||
  3033. { check_header dev/video/meteor/ioctl_meteor.h &&
  3034. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3035. check_header dev/ic/bt8xx.h
  3036. check_header sndio.h
  3037. check_header sys/soundcard.h
  3038. check_header soundcard.h
  3039. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3040. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  3041. check_func jack_port_get_latency_range -ljack
  3042. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3043. enabled libcdio &&
  3044. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio
  3045. enabled x11grab &&
  3046. require X11 X11/Xlib.h XOpenDisplay -lX11 &&
  3047. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3048. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
  3049. # check for VDA header
  3050. if ! disabled vda && check_header VideoDecodeAcceleration/VDADecoder.h; then
  3051. enable vda && add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
  3052. fi
  3053. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  3054. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3055. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; }
  3056. fi
  3057. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3058. # add some useful compiler flags if supported
  3059. check_cflags -Wdeclaration-after-statement
  3060. check_cflags -Wall
  3061. check_cflags -Wno-parentheses
  3062. check_cflags -Wno-switch
  3063. check_cflags -Wno-format-zero-length
  3064. check_cflags -Wdisabled-optimization
  3065. check_cflags -Wpointer-arith
  3066. check_cflags -Wredundant-decls
  3067. check_cflags -Wno-pointer-sign
  3068. check_cflags -Wcast-qual
  3069. check_cflags -Wwrite-strings
  3070. check_cflags -Wtype-limits
  3071. check_cflags -Wundef
  3072. check_cflags -Wmissing-prototypes
  3073. check_cflags -Wstrict-prototypes
  3074. enabled extra_warnings && check_cflags -Winline
  3075. # add some linker flags
  3076. check_ldflags -Wl,--warn-common
  3077. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3078. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3079. enabled xmm_clobber_test &&
  3080. check_ldflags -Wl,--wrap,avcodec_open2 \
  3081. -Wl,--wrap,avcodec_decode_audio4 \
  3082. -Wl,--wrap,avcodec_decode_video2 \
  3083. -Wl,--wrap,avcodec_decode_subtitle2 \
  3084. -Wl,--wrap,avcodec_encode_audio2 \
  3085. -Wl,--wrap,avcodec_encode_video \
  3086. -Wl,--wrap,avcodec_encode_subtitle \
  3087. -Wl,--wrap,sws_scale ||
  3088. disable xmm_clobber_test
  3089. echo "X{};" > $TMPV
  3090. if test_ldflags -Wl,--version-script,$TMPV; then
  3091. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3092. check_cc <<EOF && enable symver_asm_label
  3093. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3094. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3095. EOF
  3096. check_cc <<EOF && enable symver_gnu_asm
  3097. __asm__(".symver ff_foo,av_foo@VERSION");
  3098. void ff_foo(void) {}
  3099. EOF
  3100. fi
  3101. if [ -z "$optflags" ]; then
  3102. if enabled small; then
  3103. optflags=$cflags_size
  3104. elif enabled optimizations; then
  3105. optflags=$cflags_speed
  3106. else
  3107. optflags=$cflags_noopt
  3108. fi
  3109. fi
  3110. check_optflags(){
  3111. check_cflags "$@"
  3112. enabled lto && check_ldflags "$@"
  3113. }
  3114. if enabled lto; then
  3115. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3116. check_cflags -flto
  3117. check_ldflags -flto $cpuflags
  3118. fi
  3119. check_optflags $optflags
  3120. check_optflags -fno-math-errno
  3121. check_optflags -fno-signed-zeros
  3122. if enabled icc; then
  3123. # Just warnings, no remarks
  3124. check_cflags -w1
  3125. # -wd: Disable following warnings
  3126. # 144, 167, 556: -Wno-pointer-sign
  3127. # 1292: attribute "foo" ignored
  3128. # 1419: external declaration in primary source file
  3129. # 10006: ignoring unknown option -fno-signed-zeros
  3130. # 10148: ignoring unknown option -Wno-parentheses
  3131. # 10156: ignoring option '-W'; no argument required
  3132. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3133. # 11030: Warning unknown option --as-needed
  3134. # 10156: ignoring option '-export'; no argument required
  3135. check_ldflags -wd10156,11030
  3136. # Allow to compile with optimizations
  3137. check_ldflags -march=$cpu
  3138. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3139. enable ebp_available
  3140. if enabled x86_32; then
  3141. icc_version=$($cc -dumpversion)
  3142. test ${icc_version%%.*} -ge 11 &&
  3143. check_cflags -falign-stack=maintain-16-byte ||
  3144. disable aligned_stack
  3145. fi
  3146. elif enabled ccc; then
  3147. # disable some annoying warnings
  3148. add_cflags -msg_disable cvtu32to64
  3149. add_cflags -msg_disable embedcomment
  3150. add_cflags -msg_disable needconstext
  3151. add_cflags -msg_disable nomainieee
  3152. add_cflags -msg_disable ptrmismatch1
  3153. add_cflags -msg_disable unreachcode
  3154. elif enabled gcc; then
  3155. check_optflags -fno-tree-vectorize
  3156. check_cflags -Werror=implicit-function-declaration
  3157. check_cflags -Werror=missing-prototypes
  3158. check_cflags -Werror=declaration-after-statement
  3159. check_cflags -Werror=vla
  3160. elif enabled llvm_gcc; then
  3161. check_cflags -mllvm -stack-alignment=16
  3162. elif enabled clang; then
  3163. check_cflags -mllvm -stack-alignment=16
  3164. check_cflags -Qunused-arguments
  3165. elif enabled armcc; then
  3166. # 2523: use of inline assembler is deprecated
  3167. add_cflags -W${armcc_opt},--diag_suppress=2523
  3168. add_cflags -W${armcc_opt},--diag_suppress=1207
  3169. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3170. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3171. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3172. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3173. elif enabled tms470; then
  3174. add_cflags -pds=824 -pds=837
  3175. elif enabled pathscale; then
  3176. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3177. elif enabled msvc; then
  3178. enabled x86_32 && disable aligned_stack
  3179. fi
  3180. enabled_any $THREADS_LIST && enable threads
  3181. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3182. check_deps $CONFIG_LIST \
  3183. $CONFIG_EXTRA \
  3184. $HAVE_LIST \
  3185. $ALL_COMPONENTS \
  3186. ! enabled_any memalign posix_memalign aligned_malloc &&
  3187. enabled_any $need_memalign && enable memalign_hack
  3188. echo "install prefix $prefix"
  3189. echo "source path $source_path"
  3190. echo "C compiler $cc"
  3191. echo "ARCH $arch ($cpu)"
  3192. if test "$build_suffix" != ""; then
  3193. echo "build suffix $build_suffix"
  3194. fi
  3195. if test "$extra_version" != ""; then
  3196. echo "version string suffix $extra_version"
  3197. fi
  3198. echo "big-endian ${bigendian-no}"
  3199. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3200. if enabled x86; then
  3201. echo "${yasmexe} ${yasm-no}"
  3202. echo "MMX enabled ${mmx-no}"
  3203. echo "MMXEXT enabled ${mmxext-no}"
  3204. echo "3DNow! enabled ${amd3dnow-no}"
  3205. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3206. echo "SSE enabled ${sse-no}"
  3207. echo "SSSE3 enabled ${ssse3-no}"
  3208. echo "AVX enabled ${avx-no}"
  3209. echo "FMA4 enabled ${fma4-no}"
  3210. echo "CMOV enabled ${cmov-no}"
  3211. echo "CMOV is fast ${fast_cmov-no}"
  3212. echo "EBX available ${ebx_available-no}"
  3213. echo "EBP available ${ebp_available-no}"
  3214. fi
  3215. if enabled arm; then
  3216. echo "ARMv5TE enabled ${armv5te-no}"
  3217. echo "ARMv6 enabled ${armv6-no}"
  3218. echo "ARMv6T2 enabled ${armv6t2-no}"
  3219. echo "ARM VFP enabled ${armvfp-no}"
  3220. echo "NEON enabled ${neon-no}"
  3221. fi
  3222. if enabled ppc; then
  3223. echo "AltiVec enabled ${altivec-no}"
  3224. echo "PPC 4xx optimizations ${ppc4xx-no}"
  3225. echo "dcbzl available ${dcbzl-no}"
  3226. fi
  3227. if enabled sparc; then
  3228. echo "VIS enabled ${vis-no}"
  3229. fi
  3230. echo "debug symbols ${debug-no}"
  3231. echo "optimize for size ${small-no}"
  3232. echo "optimizations ${optimizations-no}"
  3233. echo "static ${static-no}"
  3234. echo "shared ${shared-no}"
  3235. echo "new filter support ${avfilter-no}"
  3236. echo "network support ${network-no}"
  3237. echo "threading support ${thread_type-no}"
  3238. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  3239. echo "SDL support ${sdl-no}"
  3240. echo "libdxva2 enabled ${dxva2-no}"
  3241. echo "libva enabled ${vaapi-no}"
  3242. echo "libvdpau enabled ${vdpau-no}"
  3243. echo "AVISynth enabled ${avisynth-no}"
  3244. echo "frei0r enabled ${frei0r-no}"
  3245. echo "gnutls enabled ${gnutls-no}"
  3246. echo "libcdio support ${libcdio-no}"
  3247. echo "libdc1394 support ${libdc1394-no}"
  3248. echo "libfaac enabled ${libfaac-no}"
  3249. echo "libfdk-aac enabled ${libfdk_aac-no}"
  3250. echo "libgsm enabled ${libgsm-no}"
  3251. echo "libilbc enabled ${libilbc-no}"
  3252. echo "libmp3lame enabled ${libmp3lame-no}"
  3253. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  3254. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  3255. echo "libopencv support ${libopencv-no}"
  3256. echo "libopenjpeg enabled ${libopenjpeg-no}"
  3257. echo "libopus enabled ${libopus-no}"
  3258. echo "libpulse enabled ${libpulse-no}"
  3259. echo "librtmp enabled ${librtmp-no}"
  3260. echo "libschroedinger enabled ${libschroedinger-no}"
  3261. echo "libspeex enabled ${libspeex-no}"
  3262. echo "libtheora enabled ${libtheora-no}"
  3263. echo "libvo-aacenc support ${libvo_aacenc-no}"
  3264. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  3265. echo "libvorbis enabled ${libvorbis-no}"
  3266. echo "libvpx enabled ${libvpx-no}"
  3267. echo "libx264 enabled ${libx264-no}"
  3268. echo "libxavs enabled ${libxavs-no}"
  3269. echo "libxvid enabled ${libxvid-no}"
  3270. echo "openssl enabled ${openssl-no}"
  3271. echo "zlib enabled ${zlib-no}"
  3272. echo "bzlib enabled ${bzlib-no}"
  3273. test -n "$random_seed" &&
  3274. echo "random seed ${random_seed}"
  3275. echo
  3276. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  3277. echo "Enabled ${type}s:"
  3278. eval list=\$$(toupper $type)_LIST
  3279. print_enabled '_*' $list | sort | pr -r -3 -t
  3280. echo
  3281. done
  3282. license="LGPL version 2.1 or later"
  3283. if enabled nonfree; then
  3284. license="nonfree and unredistributable"
  3285. elif enabled gplv3; then
  3286. license="GPL version 3 or later"
  3287. elif enabled lgplv3; then
  3288. license="LGPL version 3 or later"
  3289. elif enabled gpl; then
  3290. license="GPL version 2 or later"
  3291. fi
  3292. echo "License: $license"
  3293. echo "Creating config.mak and config.h..."
  3294. test -e Makefile || $ln_s "$source_path/Makefile" .
  3295. config_files="$TMPH config.mak"
  3296. cat > config.mak <<EOF
  3297. # Automatically generated by configure - do not modify!
  3298. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  3299. prefix=$prefix
  3300. LIBDIR=\$(DESTDIR)$libdir
  3301. SHLIBDIR=\$(DESTDIR)$shlibdir
  3302. INCDIR=\$(DESTDIR)$incdir
  3303. BINDIR=\$(DESTDIR)$bindir
  3304. DATADIR=\$(DESTDIR)$datadir
  3305. MANDIR=\$(DESTDIR)$mandir
  3306. SRC_PATH=$source_path
  3307. CC_IDENT=$cc_ident
  3308. ARCH=$arch
  3309. CC=$cc
  3310. AS=$as
  3311. LD=$ld
  3312. DEPCC=$dep_cc
  3313. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  3314. DEPAS=$as
  3315. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  3316. YASM=$yasmexe
  3317. DEPYASM=$yasmexe
  3318. AR=$ar
  3319. ARFLAGS=$arflags
  3320. AR_O=$ar_o
  3321. RANLIB=$ranlib
  3322. LN_S=$ln_s
  3323. CPPFLAGS=$CPPFLAGS
  3324. CFLAGS=$CFLAGS
  3325. ASFLAGS=$ASFLAGS
  3326. AS_C=$AS_C
  3327. AS_O=$AS_O
  3328. CC_C=$CC_C
  3329. CC_O=$CC_O
  3330. LD_O=$LD_O
  3331. LD_LIB=$LD_LIB
  3332. LD_PATH=$LD_PATH
  3333. DLLTOOL=$dlltool
  3334. LDFLAGS=$LDFLAGS
  3335. LDFLAGS-avserver=$AVSERVERLDFLAGS
  3336. SHFLAGS=$SHFLAGS
  3337. YASMFLAGS=$YASMFLAGS
  3338. BUILDSUF=$build_suffix
  3339. FULLNAME=$FULLNAME
  3340. LIBPREF=$LIBPREF
  3341. LIBSUF=$LIBSUF
  3342. LIBNAME=$LIBNAME
  3343. SLIBPREF=$SLIBPREF
  3344. SLIBSUF=$SLIBSUF
  3345. EXESUF=$EXESUF
  3346. EXTRA_VERSION=$extra_version
  3347. CCDEP=$CCDEP
  3348. CCDEP_FLAGS=$CCDEP_FLAGS
  3349. ASDEP=$ASDEP
  3350. ASDEP_FLAGS=$ASDEP_FLAGS
  3351. CC_DEPFLAGS=$CC_DEPFLAGS
  3352. AS_DEPFLAGS=$AS_DEPFLAGS
  3353. HOSTCC=$host_cc
  3354. HOSTLD=$host_ld
  3355. HOSTCFLAGS=$host_cflags
  3356. HOSTEXESUF=$HOSTEXESUF
  3357. HOSTLDFLAGS=$host_ldflags
  3358. HOSTLIBS=$host_libs
  3359. DEPHOSTCC=$host_cc
  3360. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  3361. HOSTCCDEP=$HOSTCCDEP
  3362. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  3363. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  3364. HOSTCC_C=$HOSTCC_C
  3365. HOSTCC_O=$HOSTCC_O
  3366. HOSTLD_O=$HOSTLD_O
  3367. TARGET_EXEC=$target_exec
  3368. TARGET_PATH=$target_path
  3369. LIBS-avplay=$sdl_libs
  3370. CFLAGS-avplay=$sdl_cflags
  3371. ZLIB=$($ldflags_filter -lz)
  3372. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  3373. EXTRALIBS=$extralibs
  3374. COMPAT_OBJS=$compat_objs
  3375. INSTALL=install
  3376. LIBTARGET=${LIBTARGET}
  3377. SLIBNAME=${SLIBNAME}
  3378. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  3379. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  3380. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  3381. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  3382. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  3383. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  3384. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  3385. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  3386. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  3387. EOF
  3388. get_version(){
  3389. lcname=$1
  3390. name=$(toupper $lcname)
  3391. file=$source_path/$lcname/version.h
  3392. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  3393. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  3394. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  3395. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  3396. }
  3397. get_version libavcodec
  3398. get_version libavdevice
  3399. get_version libavfilter
  3400. get_version libavformat
  3401. get_version libavresample
  3402. get_version libavutil
  3403. get_version libswscale
  3404. cat > $TMPH <<EOF
  3405. /* Automatically generated by configure - do not modify! */
  3406. #ifndef LIBAV_CONFIG_H
  3407. #define LIBAV_CONFIG_H
  3408. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  3409. #define LIBAV_LICENSE "$(c_escape $license)"
  3410. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  3411. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  3412. #define restrict $_restrict
  3413. #define EXTERN_PREFIX "${extern_prefix}"
  3414. #define EXTERN_ASM ${extern_prefix}
  3415. #define SLIBSUF "$SLIBSUF"
  3416. EOF
  3417. test -n "$malloc_prefix" &&
  3418. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3419. if enabled yasm; then
  3420. append config_files $TMPASM
  3421. printf '' >$TMPASM
  3422. fi
  3423. print_config ARCH_ "$config_files" $ARCH_LIST
  3424. print_config HAVE_ "$config_files" $HAVE_LIST
  3425. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3426. $CONFIG_EXTRA \
  3427. $ALL_COMPONENTS \
  3428. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  3429. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3430. cp_if_changed $TMPH config.h
  3431. touch .config
  3432. enabled yasm && cp_if_changed $TMPASM config.asm
  3433. cat > $TMPH <<EOF
  3434. /* Generated by ffconf */
  3435. #ifndef AVUTIL_AVCONFIG_H
  3436. #define AVUTIL_AVCONFIG_H
  3437. EOF
  3438. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3439. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3440. cp_if_changed $TMPH libavutil/avconfig.h
  3441. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3442. # build pkg-config files
  3443. pkgconfig_generate(){
  3444. name=$1
  3445. shortname=${name#lib}${build_suffix}
  3446. comment=$2
  3447. version=$3
  3448. libs=$4
  3449. requires=$5
  3450. enabled ${name#lib} || return 0
  3451. mkdir -p $name
  3452. cat <<EOF > $name/$name.pc
  3453. prefix=$prefix
  3454. exec_prefix=\${prefix}
  3455. libdir=$libdir
  3456. includedir=$incdir
  3457. Name: $name
  3458. Description: $comment
  3459. Version: $version
  3460. Requires: $(enabled shared || echo $requires)
  3461. Requires.private: $(enabled shared && echo $requires)
  3462. Conflicts:
  3463. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3464. Libs.private: $(enabled shared && echo $libs)
  3465. Cflags: -I\${includedir}
  3466. EOF
  3467. cat <<EOF > $name/$name-uninstalled.pc
  3468. prefix=
  3469. exec_prefix=
  3470. libdir=\${pcfiledir}
  3471. includedir=${source_path}
  3472. Name: $name
  3473. Description: $comment
  3474. Version: $version
  3475. Requires: $requires
  3476. Conflicts:
  3477. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3478. Cflags: -I\${includedir}
  3479. EOF
  3480. }
  3481. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3482. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3483. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3484. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3485. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  3486. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
  3487. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"