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.

5546 lines
167KB

  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. --quiet Suppress showing informative output
  58. --list-decoders show all available decoders
  59. --list-encoders show all available encoders
  60. --list-hwaccels show all available hardware accelerators
  61. --list-demuxers show all available demuxers
  62. --list-muxers show all available muxers
  63. --list-parsers show all available parsers
  64. --list-protocols show all available protocols
  65. --list-bsfs show all available bitstream filters
  66. --list-indevs show all available input devices
  67. --list-outdevs show all available output devices
  68. --list-filters show all available filters
  69. Standard options:
  70. --logfile=FILE log tests and output to FILE [avbuild/config.log]
  71. --disable-logging do not log configure debug information
  72. --prefix=PREFIX install in PREFIX [$prefix_default]
  73. --bindir=DIR install binaries in DIR [PREFIX/bin]
  74. --datadir=DIR install data files in DIR [PREFIX/share/avconv]
  75. --docdir=DIR install documentation in DIR [PREFIX/share/doc/libav]
  76. --libdir=DIR install libs in DIR [PREFIX/lib]
  77. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  78. --incdir=DIR install includes in DIR [PREFIX/include]
  79. --mandir=DIR install man page in DIR [PREFIX/share/man]
  80. --enable-rpath use rpath when linking programs (USE WITH CARE)
  81. Licensing options:
  82. --enable-gpl allow use of GPL code, the resulting libs
  83. and binaries will be under GPL [no]
  84. --enable-version3 upgrade (L)GPL to version 3 [no]
  85. --enable-nonfree allow use of nonfree code, the resulting libs
  86. and binaries will be unredistributable [no]
  87. Configuration options:
  88. --disable-static do not build static libraries [no]
  89. --enable-shared build shared libraries [no]
  90. --enable-small optimize for size instead of speed
  91. --enable-runtime-cpudetect detect CPU capabilities at runtime (bigger binary)
  92. --enable-gray enable full grayscale support (slower color)
  93. --disable-swscale-alpha disable alpha channel support in swscale
  94. --disable-all disable building components, libraries and programs
  95. Program options:
  96. --disable-programs do not build command line programs
  97. --disable-avconv disable avconv build
  98. --disable-avplay disable avplay build
  99. --disable-avprobe disable avprobe build
  100. --disable-avserver deprecated, does nothing
  101. Component options:
  102. --disable-doc do not build documentation
  103. --disable-pod2man do not build manual pages
  104. --disable-texi2html do not build HTML documentation
  105. --disable-avdevice disable libavdevice build
  106. --disable-avcodec disable libavcodec build
  107. --disable-avformat disable libavformat build
  108. --disable-avutil disable libavutil build
  109. --disable-swscale disable libswscale build
  110. --disable-avfilter disable video filter support [no]
  111. --disable-avresample disable libavresample build [no]
  112. --disable-pthreads disable pthreads [auto]
  113. --disable-w32threads disable Win32 threads [auto]
  114. --disable-network disable network support [no]
  115. --disable-dct disable DCT code
  116. --disable-error-resilience disable error resilience code
  117. --disable-lsp disable LSP code
  118. --disable-lzo disable LZO decoder code
  119. --disable-mdct disable MDCT code
  120. --disable-rdft disable RDFT code
  121. --disable-fft disable FFT code
  122. --disable-faan disable floating point AAN (I)DCT code
  123. Individual component options:
  124. --disable-everything disable all components listed below
  125. --disable-encoder=NAME disable encoder NAME
  126. --enable-encoder=NAME enable encoder NAME
  127. --disable-encoders disable all encoders
  128. --disable-decoder=NAME disable decoder NAME
  129. --enable-decoder=NAME enable decoder NAME
  130. --disable-decoders disable all decoders
  131. --disable-hwaccel=NAME disable hwaccel NAME
  132. --enable-hwaccel=NAME enable hwaccel NAME
  133. --disable-hwaccels disable all hwaccels
  134. --disable-muxer=NAME disable muxer NAME
  135. --enable-muxer=NAME enable muxer NAME
  136. --disable-muxers disable all muxers
  137. --disable-demuxer=NAME disable demuxer NAME
  138. --enable-demuxer=NAME enable demuxer NAME
  139. --disable-demuxers disable all demuxers
  140. --enable-parser=NAME enable parser NAME
  141. --disable-parser=NAME disable parser NAME
  142. --disable-parsers disable all parsers
  143. --enable-bsf=NAME enable bitstream filter NAME
  144. --disable-bsf=NAME disable bitstream filter NAME
  145. --disable-bsfs disable all bitstream filters
  146. --enable-protocol=NAME enable protocol NAME
  147. --disable-protocol=NAME disable protocol NAME
  148. --disable-protocols disable all protocols
  149. --enable-indev=NAME enable input device NAME
  150. --disable-indev=NAME disable input device NAME
  151. --disable-indevs disable input devices
  152. --enable-outdev=NAME enable output device NAME
  153. --disable-outdev=NAME disable output device NAME
  154. --disable-outdevs disable output devices
  155. --disable-devices disable all devices
  156. --enable-filter=NAME enable filter NAME
  157. --disable-filter=NAME disable filter NAME
  158. --disable-filters disable all filters
  159. External library support:
  160. Using any of the following switches will allow Libav to link to the
  161. corresponding external library. All the components depending on that library
  162. will become enabled, if all their other dependencies are met and they are not
  163. explicitly disabled. E.g. --enable-libwavpack will enable linking to
  164. libwavpack and allow the libwavpack encoder to be built, unless it is
  165. specifically disabled with --disable-encoder=libwavpack.
  166. Note that only the system libraries are auto-detected. All the other external
  167. libraries must be explicitly enabled.
  168. Also note that the following help text describes the purpose of the libraries
  169. themselves, not all their features will necessarily be usable by Libav.
  170. --enable-avisynth video frameserver
  171. --enable-avxsynth Linux version of AviSynth
  172. --enable-bzlib bzip2 compression [autodetect]
  173. --enable-frei0r video filtering plugins
  174. --enable-gnutls crypto
  175. --enable-libbs2b Bauer stereophonic-to-binaural DSP
  176. --enable-libcdio audio CD input
  177. --enable-libdc1394 IEEE 1394/Firewire camera input
  178. --enable-libdcadec DCA audio decoding
  179. --enable-libfaac AAC audio encoding
  180. --enable-libfdk-aac AAC audio encoding/decoding
  181. --enable-libfontconfig font configuration and management
  182. --enable-libfreetype font rendering
  183. --enable-libgsm GSM audio encoding/decoding
  184. --enable-libhdcd HDCD decoding filter
  185. --enable-libilbc ILBC audio encoding/decoding
  186. --enable-libjack JACK audio sound server
  187. --enable-libkvazaar HEVC video encoding
  188. --enable-libmp3lame MP3 audio encoding
  189. --enable-libopencore-amrnb AMR-NB audio encoding/decoding
  190. --enable-libopencore-amrwb AMR-WB audio decoding
  191. --enable-libopencv computer vision
  192. --enable-libopenh264 H.264 video encoding/decoding
  193. --enable-libopenjpeg JPEG 2000 image encoding/decoding
  194. --enable-libopus Opus audio encoding/decoding
  195. --enable-libpulse Pulseaudio sound server
  196. --enable-librtmp RTMP streaming
  197. --enable-libschroedinger Dirac video encoding/decoding
  198. --enable-libsnappy snappy compression
  199. --enable-libspeex Speex audio encoding/decoding
  200. --enable-libtheora Theora video encoding/decoding
  201. --enable-libtwolame MP2 audio encoding
  202. --enable-libvo-aacenc AAC audio encoding
  203. --enable-libvo-amrwbenc AMR-WB audio encoding
  204. --enable-libvorbis Vorbis audio encoding/decoding
  205. --enable-libvpx VP* video encoding/decoding
  206. --enable-libwavpack Wavpack audio encoding/decoding
  207. --enable-libwebp WebP image encoding/decoding
  208. --enable-libx264 H.264 video encoding
  209. --enable-libx265 HEVC video encoding
  210. --enable-libxavs Chinese AVS video encoding
  211. --enable-libxcb X window system protocol communication
  212. --enable-libxcb-shm X11 shm communication [auto]
  213. --enable-libxcb-xfixes X11 mouse rendering [auto]
  214. --enable-libxvid MPEG-4 ASP video encoding
  215. --enable-openssl crypto
  216. --enable-zlib compression [autodetect]
  217. The following libraries provide various hardware acceleration features:
  218. --enable-cuda Nvidia CUDA (dynamically linked)
  219. --enable-d3d11va Microsoft Direct3D 11 video acceleration [auto]
  220. --enable-dxva2 Microsoft DirectX 9 video acceleration [auto]
  221. --enable-libmfx Intel MediaSDK (AKA Quick Sync Video)
  222. --enable-libnpp Nvidia CUDA processing
  223. --enable-mmal Broadcom Multi-Media Abstraction Layer (Raspberry Pi)
  224. --enable-nvenc Nvidia video encoding
  225. --enable-omx OpenMAX IL
  226. --enable-omx-rpi OpenMAX IL for Raspberry Pi
  227. --enable-vaapi Video Acceleration API (mainly Unix/Intel)
  228. --enable-vda Apple Video Decode Acceleration [auto]
  229. --enable-vdpau Nvidia Video Decode and Presentation API for Unix [auto]
  230. Toolchain options:
  231. --arch=ARCH select architecture [$arch]
  232. --cpu=CPU select the minimum required CPU (affects
  233. instruction selection, may crash on older CPUs)
  234. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  235. --enable-cross-compile assume a cross-compiler is used
  236. --sysroot=PATH root of cross-build tree
  237. --sysinclude=PATH location of cross-build system headers
  238. --target-os=OS compiler targets OS [$target_os]
  239. --target-exec=CMD command to run executables on target
  240. --target-path=DIR path to view of build directory on target
  241. --target-samples=DIR path to samples directory on target
  242. --toolchain=NAME set tool defaults according to NAME
  243. --nm=NM use nm tool
  244. --ar=AR use archive tool AR [$ar_default]
  245. --as=AS use assembler AS [$as_default]
  246. --cc=CC use C compiler CC [$cc_default]
  247. --objcc=OCC use ObjC compiler OCC [$cc_default]
  248. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  249. --ld=LD use linker LD
  250. --x86asmexe=X86ASM use x86 assembler X86ASM
  251. --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
  252. --pkg-config-flags=FLAGS pass additional flags to pkgconf []
  253. --host-cc=HOSTCC use host C compiler HOSTCC
  254. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  255. --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
  256. --host-ld=HOSTLD use host linker HOSTLD
  257. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  258. --host-libs=HLIBS use libs HLIBS when linking for host
  259. --host-os=OS compiler host OS [$target_os]
  260. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  261. --extra-objcflags=FLAGS add FLAGS to OBJCFLAGS [$CFLAGS]
  262. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  263. --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
  264. --extra-libs=ELIBS add ELIBS [$ELIBS]
  265. --extra-version=STRING version string suffix []
  266. --optflags=OPTFLAGS override optimization-related compiler flags
  267. --enable-pic build position-independent code
  268. --enable-thumb compile for Thumb instruction set
  269. --enable-lto use link-time optimization
  270. --env="ENV=override" override the environment variables
  271. Advanced options (experts only):
  272. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  273. --custom-allocator=NAME use a supported custom allocator
  274. --disable-symver disable symbol versioning
  275. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  276. --disable-safe-bitstream-reader
  277. disable buffer boundary checking in bitreaders
  278. (faster, but may crash)
  279. --enable-sram allow use of on-chip SRAM
  280. Optimization options (experts only):
  281. --disable-asm disable all assembly optimizations
  282. --disable-altivec disable AltiVec optimizations
  283. --disable-vsx disable VSX optimizations
  284. --disable-power8 disable POWER8 optimizations
  285. --disable-amd3dnow disable 3DNow! optimizations
  286. --disable-amd3dnowext disable 3DNow! extended optimizations
  287. --disable-mmx disable MMX optimizations
  288. --disable-mmxext disable MMXEXT optimizations
  289. --disable-sse disable SSE optimizations
  290. --disable-sse2 disable SSE2 optimizations
  291. --disable-sse3 disable SSE3 optimizations
  292. --disable-ssse3 disable SSSE3 optimizations
  293. --disable-sse4 disable SSE4 optimizations
  294. --disable-sse42 disable SSE4.2 optimizations
  295. --disable-avx disable AVX optimizations
  296. --disable-xop disable XOP optimizations
  297. --disable-fma3 disable FMA3 optimizations
  298. --disable-fma4 disable FMA4 optimizations
  299. --disable-avx2 disable AVX2 optimizations
  300. --disable-armv5te disable armv5te optimizations
  301. --disable-armv6 disable armv6 optimizations
  302. --disable-armv6t2 disable armv6t2 optimizations
  303. --disable-vfp disable VFP optimizations
  304. --disable-neon disable NEON optimizations
  305. --disable-inline-asm disable use of inline assembly
  306. --disable-x86asm disable use of standalone x86 assembly
  307. Developer options (useful when working on Libav itself):
  308. --disable-debug disable debugging symbols
  309. --enable-debug=LEVEL set the debug level [$debuglevel]
  310. --disable-optimizations disable compiler optimizations
  311. --enable-extra-warnings enable more compiler warnings
  312. --samples=PATH location of test samples for FATE, if not set use
  313. \$LIBAV_SAMPLES at make invocation time.
  314. --enable-neon-clobber-test check NEON registers for clobbering (should be
  315. used only for debugging purposes)
  316. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  317. should be used only for debugging purposes)
  318. --enable-random randomly enable/disable components
  319. --disable-random
  320. --enable-random=LIST randomly enable/disable specific components or
  321. --disable-random=LIST component groups. LIST is a comma-separated list
  322. of NAME[:PROB] entries where NAME is a component
  323. (group) and PROB the probability associated with
  324. NAME (default 0.5).
  325. --random-seed=VALUE seed value for --enable/disable-random
  326. --disable-valgrind-backtrace do not print a backtrace under Valgrind
  327. (only applies to --disable-optimizations builds)
  328. --ignore-tests=TESTS comma-separated list (without "fate-" prefix
  329. in the name) of tests whose result is ignored
  330. NOTE: Object files are built at the place where configure is launched.
  331. EOF
  332. exit 0
  333. }
  334. quotes='""'
  335. log(){
  336. echo "$@" >> $logfile
  337. }
  338. log_file(){
  339. log BEGIN $1
  340. i=1
  341. while read line; do
  342. printf '%5s %s\n' "${i}" "${line}"
  343. i=$(($i+1))
  344. done < $1 >> $logfile
  345. log END $1
  346. }
  347. echolog(){
  348. log "$@"
  349. echo "$@"
  350. }
  351. warn(){
  352. log "WARNING: $*"
  353. WARNINGS="${WARNINGS}WARNING: $*\n"
  354. }
  355. die(){
  356. echolog "$@"
  357. cat <<EOF
  358. If you think configure made a mistake, make sure you are using the latest
  359. version from Git. If the latest version fails, report the problem to the
  360. libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
  361. EOF
  362. if disabled logging; then
  363. cat <<EOF
  364. Rerun configure with logging enabled (do not use --disable-logging), and
  365. include the log this produces with your report.
  366. EOF
  367. else
  368. cat <<EOF
  369. Include the log file "$logfile" produced by configure as this will help
  370. solving the problem.
  371. EOF
  372. fi
  373. exit 1
  374. }
  375. # Avoid locale weirdness, besides we really just want to translate ASCII.
  376. toupper(){
  377. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  378. }
  379. tolower(){
  380. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  381. }
  382. c_escape(){
  383. echo "$*" | sed 's/["\\]/\\\0/g'
  384. }
  385. sh_quote(){
  386. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  387. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  388. echo "$v"
  389. }
  390. cleanws(){
  391. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  392. }
  393. filter(){
  394. pat=$1
  395. shift
  396. for v; do
  397. eval "case '$v' in $pat) printf '%s ' '$v' ;; esac"
  398. done
  399. }
  400. filter_out(){
  401. pat=$1
  402. shift
  403. for v; do
  404. eval "case '$v' in $pat) ;; *) printf '%s ' '$v' ;; esac"
  405. done
  406. }
  407. map(){
  408. m=$1
  409. shift
  410. for v; do eval $m; done
  411. }
  412. add_suffix(){
  413. suffix=$1
  414. shift
  415. for v; do echo ${v}${suffix}; done
  416. }
  417. set_all(){
  418. value=$1
  419. shift
  420. for var in $*; do
  421. eval $var=$value
  422. done
  423. }
  424. set_weak(){
  425. value=$1
  426. shift
  427. for var; do
  428. eval : \${$var:=$value}
  429. done
  430. }
  431. sanitize_var_name(){
  432. echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
  433. }
  434. set_sanitized(){
  435. var=$1
  436. shift
  437. eval $(sanitize_var_name "$var")='$*'
  438. }
  439. get_sanitized(){
  440. eval echo \$$(sanitize_var_name "$1")
  441. }
  442. pushvar(){
  443. for pvar in $*; do
  444. eval level=\${${pvar}_level:=0}
  445. eval ${pvar}_${level}="\$$pvar"
  446. eval ${pvar}_level=$(($level+1))
  447. done
  448. }
  449. popvar(){
  450. for pvar in $*; do
  451. eval level=\${${pvar}_level:-0}
  452. test $level = 0 && continue
  453. eval level=$(($level-1))
  454. eval $pvar="\${${pvar}_${level}}"
  455. eval ${pvar}_level=$level
  456. eval unset ${pvar}_${level}
  457. done
  458. }
  459. enable(){
  460. set_all yes $*
  461. }
  462. disable(){
  463. set_all no $*
  464. }
  465. enable_weak(){
  466. set_weak yes $*
  467. }
  468. disable_weak(){
  469. set_weak no $*
  470. }
  471. enable_sanitized(){
  472. for var; do
  473. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  474. done
  475. }
  476. disable_sanitized(){
  477. for var; do
  478. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  479. done
  480. }
  481. do_enable_deep(){
  482. for var; do
  483. enabled $var && continue
  484. eval sel="\$${var}_select"
  485. eval sgs="\$${var}_suggest"
  486. pushvar var sgs
  487. enable_deep $sel
  488. popvar sgs
  489. enable_deep_weak $sgs
  490. popvar var
  491. done
  492. }
  493. enable_deep(){
  494. do_enable_deep $*
  495. enable $*
  496. }
  497. enable_deep_weak(){
  498. for var; do
  499. disabled $var && continue
  500. pushvar var
  501. do_enable_deep $var
  502. popvar var
  503. enable_weak $var
  504. done
  505. }
  506. enabled(){
  507. test "${1#!}" = "$1" && op== || op=!=
  508. eval test "x\$${1#!}" $op "xyes"
  509. }
  510. disabled(){
  511. test "${1#!}" = "$1" && op== || op=!=
  512. eval test "x\$${1#!}" $op "xno"
  513. }
  514. enabled_all(){
  515. for opt; do
  516. enabled $opt || return 1
  517. done
  518. }
  519. disabled_all(){
  520. for opt; do
  521. disabled $opt || return 1
  522. done
  523. }
  524. enabled_any(){
  525. for opt; do
  526. enabled $opt && return 0
  527. done
  528. }
  529. disabled_any(){
  530. for opt; do
  531. disabled $opt && return 0
  532. done
  533. return 1
  534. }
  535. set_default(){
  536. for opt; do
  537. eval : \${$opt:=\$${opt}_default}
  538. done
  539. }
  540. is_in(){
  541. value=$1
  542. shift
  543. for var in $*; do
  544. [ $var = $value ] && return 0
  545. done
  546. return 1
  547. }
  548. check_deps(){
  549. for cfg; do
  550. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  551. disabled ${cfg}_checking && continue
  552. enable ${cfg}_checking
  553. append allopts $cfg
  554. eval dep_all="\$${cfg}_deps"
  555. eval dep_any="\$${cfg}_deps_any"
  556. eval dep_con="\$${cfg}_conflict"
  557. eval dep_sel="\$${cfg}_select"
  558. eval dep_sgs="\$${cfg}_suggest"
  559. eval dep_ifa="\$${cfg}_if"
  560. eval dep_ifn="\$${cfg}_if_any"
  561. pushvar cfg dep_all dep_any dep_con dep_sel dep_sgs dep_ifa dep_ifn
  562. check_deps $dep_all $dep_any $dep_con $dep_sel $dep_sgs $dep_ifa $dep_ifn
  563. popvar cfg dep_all dep_any dep_con dep_sel dep_sgs dep_ifa dep_ifn
  564. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  565. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  566. enabled_all $dep_all || disable $cfg
  567. enabled_any $dep_any || disable $cfg
  568. disabled_all $dep_con || disable $cfg
  569. disabled_any $dep_sel && disable $cfg
  570. if enabled $cfg; then
  571. enable_deep $dep_sel
  572. enable_deep_weak $dep_sgs
  573. for dep in $dep_all $dep_any $dep_sgs; do
  574. # filter out library deps, these do not belong in extralibs
  575. is_in $dep $LIBRARY_LIST && continue
  576. enabled $dep && eval append ${cfg}_extralibs ${dep}_extralibs
  577. done
  578. fi
  579. disable ${cfg}_checking
  580. done
  581. }
  582. print_config(){
  583. pfx=$1
  584. files=$2
  585. shift 2
  586. map 'eval echo "$v \${$v:-no}"' "$@" |
  587. awk "BEGIN { split(\"$files\", files) }
  588. {
  589. c = \"$pfx\" toupper(\$1);
  590. v = \$2;
  591. sub(/yes/, 1, v);
  592. sub(/no/, 0, v);
  593. for (f in files) {
  594. file = files[f];
  595. if (file ~ /\\.h\$/) {
  596. printf(\"#define %s %d\\n\", c, v) >>file;
  597. } else if (file ~ /\\.asm\$/) {
  598. printf(\"%%define %s %d\\n\", c, v) >>file;
  599. } else if (file ~ /\\.mak\$/) {
  600. n = -v ? \"\" : \"!\";
  601. printf(\"%s%s=yes\\n\", n, c) >>file;
  602. }
  603. }
  604. }"
  605. }
  606. print_enabled(){
  607. suf=$1
  608. shift
  609. for v; do
  610. enabled $v && printf "%s\n" ${v%$suf}
  611. done
  612. }
  613. append(){
  614. var=$1
  615. shift
  616. eval "$var=\"\$$var $*\""
  617. }
  618. prepend(){
  619. var=$1
  620. shift
  621. eval "$var=\"$* \$$var\""
  622. }
  623. unique(){
  624. var=$1
  625. uniq_list=""
  626. for tok in $(eval echo \$$var); do
  627. uniq_list="$(filter_out $tok $uniq_list) $tok"
  628. done
  629. eval "$var=\"${uniq_list}\""
  630. }
  631. resolve(){
  632. var=$1
  633. tmpvar=
  634. for entry in $(eval echo \$$var); do
  635. tmpvar="$tmpvar $(eval echo \$${entry})"
  636. done
  637. eval "$var=\"${tmpvar}\""
  638. }
  639. add_cppflags(){
  640. append CPPFLAGS "$@"
  641. }
  642. add_cflags(){
  643. append CFLAGS $($cflags_filter "$@")
  644. }
  645. add_cflags_headers(){
  646. append CFLAGS_HEADERS $($cflags_filter "$@")
  647. }
  648. add_asflags(){
  649. append ASFLAGS $($asflags_filter "$@")
  650. }
  651. add_objcflags(){
  652. append OBJCFLAGS $($objcflags_filter "$@")
  653. }
  654. add_ldflags(){
  655. append LDFLAGS $($ldflags_filter "$@")
  656. }
  657. add_ldexeflags(){
  658. append LDEXEFLAGS $($ldflags_filter "$@")
  659. }
  660. add_stripflags(){
  661. append STRIPFLAGS "$@"
  662. }
  663. add_extralibs(){
  664. prepend extralibs $($ldflags_filter "$@")
  665. }
  666. add_host_cppflags(){
  667. append host_cppflags "$@"
  668. }
  669. add_host_cflags(){
  670. append host_cflags $($host_cflags_filter "$@")
  671. }
  672. add_host_ldflags(){
  673. append host_ldflags $($host_ldflags_filter "$@")
  674. }
  675. add_compat(){
  676. append compat_objs $1
  677. shift
  678. map 'add_cppflags -D$v' "$@"
  679. }
  680. check_cmd(){
  681. log "$@"
  682. "$@" >> $logfile 2>&1
  683. }
  684. cc_o(){
  685. eval printf '%s\\n' $CC_O
  686. }
  687. cc_e(){
  688. eval printf '%s\\n' $CC_E
  689. }
  690. check_cc(){
  691. log check_cc "$@"
  692. cat > $TMPC
  693. log_file $TMPC
  694. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  695. }
  696. check_objcc(){
  697. log check_objcc "$@"
  698. cat > $TMPC
  699. log_file $TMPC
  700. check_cmd $objcc $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $(cc_o $TMPO) $TMPC
  701. }
  702. check_cpp(){
  703. log check_cpp "$@"
  704. cat > $TMPC
  705. log_file $TMPC
  706. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  707. }
  708. as_o(){
  709. eval printf '%s\\n' $AS_O
  710. }
  711. check_as(){
  712. log check_as "$@"
  713. cat > $TMPS
  714. log_file $TMPS
  715. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
  716. }
  717. check_inline_asm(){
  718. log check_inline_asm "$@"
  719. name="$1"
  720. code="$2"
  721. shift 2
  722. disable $name
  723. check_cc "$@" <<EOF && enable $name
  724. void foo(void){ __asm__ volatile($code); }
  725. EOF
  726. }
  727. check_insn(){
  728. log check_insn "$@"
  729. check_inline_asm ${1}_inline "\"$2\""
  730. echo "$2" | check_as && enable ${1}_external || disable ${1}_external
  731. }
  732. check_x86asm(){
  733. log check_x86asm "$@"
  734. echo "$1" > $TMPS
  735. log_file $TMPS
  736. shift 1
  737. check_cmd $x86asmexe $X86ASMFLAGS "$@" -o $TMPO $TMPS
  738. }
  739. ld_o(){
  740. eval printf '%s\\n' $LD_O
  741. }
  742. check_ld(){
  743. log check_ld "$@"
  744. flags=$(filter_out '-l*' "$@")
  745. libs=$(filter '-l*' "$@")
  746. check_cc $($cflags_filter $flags) || return
  747. flags=$($ldflags_filter $flags)
  748. libs=$($ldflags_filter $libs)
  749. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  750. }
  751. print_include(){
  752. hdr=$1
  753. test "${hdr%.h}" = "${hdr}" &&
  754. echo "#include $hdr" ||
  755. echo "#include <$hdr>"
  756. }
  757. check_code(){
  758. log check_code "$@"
  759. check=$1
  760. headers=$2
  761. code=$3
  762. shift 3
  763. {
  764. for hdr in $headers; do
  765. print_include $hdr
  766. done
  767. echo "int main(void) { $code; return 0; }"
  768. } | check_$check "$@"
  769. }
  770. check_cppflags(){
  771. log check_cppflags "$@"
  772. check_cpp "$@" <<EOF && append CPPFLAGS "$@"
  773. #include <stdlib.h>;
  774. EOF
  775. }
  776. test_cflags(){
  777. log test_cflags "$@"
  778. set -- $($cflags_filter "$@")
  779. check_cc "$@" <<EOF
  780. int x;
  781. EOF
  782. }
  783. check_cflags(){
  784. log check_cflags "$@"
  785. test_cflags "$@" && add_cflags "$@"
  786. }
  787. test_objcflags(){
  788. log test_objcflags "$@"
  789. set -- $($objcflags_filter "$@")
  790. check_objcc "$@" <<EOF
  791. int x;
  792. EOF
  793. }
  794. check_objcflags(){
  795. log check_objcflags "$@"
  796. test_objcflags "$@" && add_objcflags "$@"
  797. }
  798. test_ldflags(){
  799. log test_ldflags "$@"
  800. check_ld "$@" <<EOF
  801. int main(void){ return 0; }
  802. EOF
  803. }
  804. check_ldflags(){
  805. log check_ldflags "$@"
  806. test_ldflags "$@" && add_ldflags "$@"
  807. }
  808. test_stripflags(){
  809. log test_stripflags "$@"
  810. # call check_cc to get a fresh TMPO
  811. check_cc <<EOF
  812. int main(void) { return 0; }
  813. EOF
  814. check_cmd $strip $STRIPFLAGS "$@" $TMPO
  815. }
  816. check_stripflags(){
  817. log check_stripflags "$@"
  818. test_stripflags "$@" && add_stripflags "$@"
  819. }
  820. check_header(){
  821. log check_header "$@"
  822. header=$1
  823. shift
  824. disable_sanitized $header
  825. check_cpp "$@" <<EOF && enable_sanitized $header
  826. #include <$header>
  827. int x;
  828. EOF
  829. }
  830. check_func(){
  831. log check_func "$@"
  832. func=$1
  833. shift
  834. disable $func
  835. check_ld "$@" <<EOF && enable $func
  836. extern int $func();
  837. int main(void){ $func(); }
  838. EOF
  839. }
  840. check_mathfunc(){
  841. log check_mathfunc "$@"
  842. func=$1
  843. narg=$2
  844. shift 2
  845. test $narg = 2 && args="f, g" || args="f"
  846. disable $func
  847. check_ld "$@" <<EOF && enable $func
  848. #include <math.h>
  849. float foo(float f, float g) { return $func($args); }
  850. int main(void){ return 0; }
  851. EOF
  852. }
  853. check_func_headers(){
  854. log check_func_headers "$@"
  855. headers=$1
  856. funcs=$2
  857. shift 2
  858. {
  859. for hdr in $headers; do
  860. print_include $hdr
  861. done
  862. for func in $funcs; do
  863. echo "long check_$func(void) { return (long) $func; }"
  864. done
  865. echo "int main(void) { return 0; }"
  866. } | check_ld "$@" && enable $funcs && enable_sanitized $headers
  867. }
  868. check_cpp_condition(){
  869. log check_cpp_condition "$@"
  870. header=$1
  871. condition=$2
  872. shift 2
  873. check_cpp "$@" <<EOF
  874. #include <$header>
  875. #if !($condition)
  876. #error "unsatisfied condition: $condition"
  877. #endif
  878. EOF
  879. }
  880. test_cflags_cpp(){
  881. log test_cflags_cpp "$@"
  882. flags=$1
  883. condition=$2
  884. shift 2
  885. set -- $($cflags_filter "$flags")
  886. check_cpp "$@" <<EOF
  887. #if !($condition)
  888. #error "unsatisfied condition: $condition"
  889. #endif
  890. EOF
  891. }
  892. check_lib(){
  893. log check_lib "$@"
  894. name="$1"
  895. headers="$2"
  896. funcs="$3"
  897. shift 3
  898. disable $name
  899. check_func_headers "$headers" "$funcs" "$@" &&
  900. enable $name && eval ${name}_extralibs="\$@"
  901. }
  902. check_pkg_config(){
  903. log check_pkg_config "$@"
  904. name="$1"
  905. pkg_version="$2"
  906. pkg="${2%% *}"
  907. headers="$3"
  908. funcs="$4"
  909. shift 4
  910. disable $name
  911. check_cmd $pkg_config --exists --print-errors $pkg_version || return
  912. pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
  913. pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
  914. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  915. enable $name &&
  916. add_cflags "$pkg_cflags" &&
  917. eval $(sanitize_var_name ${name}_extralibs)="\$pkg_libs"
  918. }
  919. check_exec(){
  920. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  921. }
  922. check_exec_crash(){
  923. log check_exec_crash "$@"
  924. code=$(cat)
  925. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  926. # are safe but may not be available everywhere. Thus we use
  927. # raise(SIGTERM) instead. The check is run in a subshell so we
  928. # can redirect the "Terminated" message from the shell. SIGBUS
  929. # is not defined by standard C so it is used conditionally.
  930. (check_exec "$@") >> $logfile 2>&1 <<EOF
  931. #include <signal.h>
  932. static void sighandler(int sig){
  933. raise(SIGTERM);
  934. }
  935. int foo(void){
  936. $code
  937. }
  938. int (*func_ptr)(void) = foo;
  939. int main(void){
  940. signal(SIGILL, sighandler);
  941. signal(SIGFPE, sighandler);
  942. signal(SIGSEGV, sighandler);
  943. #ifdef SIGBUS
  944. signal(SIGBUS, sighandler);
  945. #endif
  946. return func_ptr();
  947. }
  948. EOF
  949. }
  950. check_type(){
  951. log check_type "$@"
  952. headers=$1
  953. type=$2
  954. shift 2
  955. disable_sanitized "$type"
  956. check_code cc "$headers" "$type v" "$@" && enable_sanitized "$type"
  957. }
  958. check_struct(){
  959. log check_struct "$@"
  960. headers=$1
  961. struct=$2
  962. member=$3
  963. shift 3
  964. disable_sanitized "${struct}_${member}"
  965. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  966. enable_sanitized "${struct}_${member}"
  967. }
  968. check_builtin(){
  969. log check_builtin "$@"
  970. name=$1
  971. headers=$2
  972. builtin=$3
  973. shift 3
  974. disable "$name"
  975. check_code ld "$headers" "$builtin" "$@" && enable "$name"
  976. }
  977. check_compile_assert(){
  978. log check_compile_assert "$@"
  979. name=$1
  980. headers=$2
  981. condition=$3
  982. shift 3
  983. disable "$name"
  984. check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
  985. }
  986. require(){
  987. log require "$@"
  988. name_version="$1"
  989. name="${1%% *}"
  990. headers="$2"
  991. func="$3"
  992. shift 3
  993. check_lib $name "$headers" $func "$@" || die "ERROR: $name_version not found"
  994. }
  995. require_header(){
  996. log require "$@"
  997. header="$1"
  998. shift
  999. check_header "$header" "$@" || die "ERROR: $header not found"
  1000. }
  1001. require_cpp_condition(){
  1002. log require "$@"
  1003. header="$1"
  1004. condition="$2"
  1005. shift 2
  1006. check_cpp_condition "$header" "$condition" "$@" || die "ERROR: $condition not satisfied"
  1007. }
  1008. require_pkg_config(){
  1009. log require_pkg_config "$@"
  1010. pkg_version="$2"
  1011. check_pkg_config "$@" || die "ERROR: $pkg_version not found"
  1012. }
  1013. hostcc_e(){
  1014. eval printf '%s\\n' $HOSTCC_E
  1015. }
  1016. hostcc_o(){
  1017. eval printf '%s\\n' $HOSTCC_O
  1018. }
  1019. check_host_cc(){
  1020. log check_host_cc "$@"
  1021. cat > $TMPC
  1022. log_file $TMPC
  1023. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  1024. }
  1025. check_host_cpp(){
  1026. log check_host_cpp "$@"
  1027. cat > $TMPC
  1028. log_file $TMPC
  1029. check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
  1030. }
  1031. check_host_cppflags(){
  1032. log check_host_cppflags "$@"
  1033. check_host_cpp "$@" <<EOF && append host_cppflags "$@"
  1034. #include <stdlib.h>;
  1035. EOF
  1036. }
  1037. check_host_cflags(){
  1038. log check_host_cflags "$@"
  1039. set -- $($host_cflags_filter "$@")
  1040. check_host_cc "$@" <<EOF && append host_cflags "$@"
  1041. int x;
  1042. EOF
  1043. }
  1044. check_host_cpp_condition(){
  1045. log check_host_cpp_condition "$@"
  1046. header=$1
  1047. condition=$2
  1048. shift 2
  1049. check_host_cpp "$@" <<EOF
  1050. #include <$header>
  1051. #if !($condition)
  1052. #error "unsatisfied condition: $condition"
  1053. #endif
  1054. EOF
  1055. }
  1056. apply(){
  1057. file=$1
  1058. shift
  1059. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  1060. }
  1061. cp_if_changed(){
  1062. cmp -s "$1" "$2" && { test "$quiet" != "yes" && echo "$2 is unchanged"; } && return
  1063. mkdir -p "$(dirname $2)"
  1064. cp -f "$1" "$2"
  1065. }
  1066. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  1067. # system-dependent things.
  1068. AVCODEC_COMPONENTS="
  1069. bsfs
  1070. decoders
  1071. encoders
  1072. hwaccels
  1073. parsers
  1074. "
  1075. AVDEVICE_COMPONENTS="
  1076. indevs
  1077. outdevs
  1078. "
  1079. AVFILTER_COMPONENTS="
  1080. filters
  1081. "
  1082. AVFORMAT_COMPONENTS="
  1083. demuxers
  1084. muxers
  1085. protocols
  1086. "
  1087. AVRESAMPLE_COMPONENTS=""
  1088. AVUTIL_COMPONENTS=""
  1089. COMPONENT_LIST="
  1090. $AVCODEC_COMPONENTS
  1091. $AVDEVICE_COMPONENTS
  1092. $AVFILTER_COMPONENTS
  1093. $AVFORMAT_COMPONENTS
  1094. $AVRESAMPLE_COMPONENTS
  1095. $AVUTIL_COMPONENTS
  1096. "
  1097. EXAMPLE_LIST="
  1098. decode_audio_example
  1099. decode_video_example
  1100. encode_audio_example
  1101. encode_video_example
  1102. filter_audio_example
  1103. metadata_example
  1104. output_example
  1105. qsvdec_example
  1106. transcode_aac_example
  1107. "
  1108. # catchall list of things that require external libs to link
  1109. EXTRALIBS_LIST="
  1110. cpu_init
  1111. cws2fws
  1112. "
  1113. HWACCEL_LIBRARY_NONFREE_LIST="
  1114. cuda
  1115. libnpp
  1116. "
  1117. HWACCEL_LIBRARY_LIST="
  1118. $HWACCEL_LIBRARY_NONFREE_LIST
  1119. d3d11va
  1120. dxva2
  1121. libmfx
  1122. mmal
  1123. nvenc
  1124. omx
  1125. vaapi
  1126. vda
  1127. vdpau
  1128. "
  1129. EXTERNAL_LIBRARY_GPL_LIST="
  1130. libcdio
  1131. libx264
  1132. libx265
  1133. libxavs
  1134. libxvid
  1135. "
  1136. EXTERNAL_LIBRARY_NONFREE_LIST="
  1137. libfaac
  1138. libfdk_aac
  1139. openssl
  1140. "
  1141. EXTERNAL_LIBRARY_VERSION3_LIST="
  1142. libopencore_amrnb
  1143. libopencore_amrwb
  1144. libvo_aacenc
  1145. libvo_amrwbenc
  1146. "
  1147. EXTERNAL_LIBRARY_LIST="
  1148. $EXTERNAL_LIBRARY_GPL_LIST
  1149. $EXTERNAL_LIBRARY_NONFREE_LIST
  1150. $EXTERNAL_LIBRARY_VERSION3_LIST
  1151. avisynth
  1152. avxsynth
  1153. frei0r
  1154. gnutls
  1155. libbs2b
  1156. libdc1394
  1157. libdcadec
  1158. libfontconfig
  1159. libfreetype
  1160. libgsm
  1161. libhdcd
  1162. libilbc
  1163. libjack
  1164. libkvazaar
  1165. libmp3lame
  1166. libopencv
  1167. libopenh264
  1168. libopenjpeg
  1169. libopus
  1170. libpulse
  1171. librtmp
  1172. libschroedinger
  1173. libsnappy
  1174. libspeex
  1175. libtheora
  1176. libtwolame
  1177. libvorbis
  1178. libvpx
  1179. libwavpack
  1180. libwebp
  1181. libxcb
  1182. libxcb_shm
  1183. libxcb_xfixes
  1184. "
  1185. SYSTEM_LIBRARY_LIST="
  1186. bzlib
  1187. zlib
  1188. "
  1189. FEATURE_LIST="
  1190. gray
  1191. hardcoded_tables
  1192. omx_rpi
  1193. runtime_cpudetect
  1194. safe_bitstream_reader
  1195. shared
  1196. small
  1197. sram
  1198. static
  1199. swscale_alpha
  1200. "
  1201. LIBRARY_LIST="
  1202. avcodec
  1203. avdevice
  1204. avfilter
  1205. avformat
  1206. avresample
  1207. avutil
  1208. swscale
  1209. "
  1210. LICENSE_LIST="
  1211. gpl
  1212. nonfree
  1213. version3
  1214. "
  1215. PROGRAM_LIST="
  1216. avconv
  1217. avplay
  1218. avprobe
  1219. "
  1220. SUBSYSTEM_LIST="
  1221. dct
  1222. doc
  1223. error_resilience
  1224. faan
  1225. fft
  1226. lsp
  1227. lzo
  1228. mdct
  1229. network
  1230. rdft
  1231. "
  1232. # COMPONENT_LIST needs to come last to ensure correct dependency checking
  1233. CONFIG_LIST="
  1234. $EXAMPLE_LIST
  1235. $EXTERNAL_LIBRARY_LIST
  1236. $HWACCEL_LIBRARY_LIST
  1237. $FEATURE_LIST
  1238. $LICENSE_LIST
  1239. $LIBRARY_LIST
  1240. $PROGRAM_LIST
  1241. $SUBSYSTEM_LIST
  1242. $SYSTEM_LIBRARY_LIST
  1243. neon_clobber_test
  1244. pic
  1245. pod2man
  1246. texi2html
  1247. thumb
  1248. valgrind_backtrace
  1249. xmm_clobber_test
  1250. $COMPONENT_LIST
  1251. "
  1252. THREADS_LIST="
  1253. pthreads
  1254. w32threads
  1255. "
  1256. ATOMICS_LIST="
  1257. atomics_gcc
  1258. atomics_suncc
  1259. atomics_win32
  1260. "
  1261. ARCH_LIST="
  1262. aarch64
  1263. alpha
  1264. arm
  1265. avr32
  1266. avr32_ap
  1267. avr32_uc
  1268. bfin
  1269. ia64
  1270. m68k
  1271. mips
  1272. mips64
  1273. parisc
  1274. ppc
  1275. ppc64
  1276. s390
  1277. sh4
  1278. sparc
  1279. sparc64
  1280. tilegx
  1281. tilepro
  1282. tomi
  1283. x86
  1284. x86_32
  1285. x86_64
  1286. "
  1287. ARCH_EXT_LIST_ARM="
  1288. armv5te
  1289. armv6
  1290. armv6t2
  1291. armv8
  1292. neon
  1293. vfp
  1294. vfpv3
  1295. "
  1296. ARCH_EXT_LIST_X86_SIMD="
  1297. amd3dnow
  1298. amd3dnowext
  1299. avx
  1300. avx2
  1301. fma3
  1302. fma4
  1303. mmx
  1304. mmxext
  1305. sse
  1306. sse2
  1307. sse3
  1308. sse4
  1309. sse42
  1310. ssse3
  1311. xop
  1312. "
  1313. ARCH_EXT_LIST_PPC="
  1314. altivec
  1315. dcbzl
  1316. ldbrx
  1317. power8
  1318. ppc4xx
  1319. vsx
  1320. "
  1321. ARCH_EXT_LIST_X86="
  1322. $ARCH_EXT_LIST_X86_SIMD
  1323. cpunop
  1324. i686
  1325. "
  1326. ARCH_EXT_LIST_MIPS="
  1327. loongson
  1328. mips32r1
  1329. mips64r1
  1330. mips32r2
  1331. mips64r2
  1332. mips32r6
  1333. mips64r6
  1334. "
  1335. ARCH_EXT_LIST="
  1336. $ARCH_EXT_LIST_ARM
  1337. $ARCH_EXT_LIST_MIPS
  1338. $ARCH_EXT_LIST_PPC
  1339. $ARCH_EXT_LIST_X86
  1340. vis
  1341. "
  1342. ARCH_FEATURES="
  1343. aligned_stack
  1344. fast_64bit
  1345. fast_clz
  1346. fast_cmov
  1347. local_aligned_8
  1348. local_aligned_16
  1349. local_aligned_32
  1350. simd_align_16
  1351. simd_align_32
  1352. "
  1353. BUILTIN_LIST="
  1354. atomic_cas_ptr
  1355. machine_rw_barrier
  1356. MemoryBarrier
  1357. mm_empty
  1358. rdtsc
  1359. sem_timedwait
  1360. sync_val_compare_and_swap
  1361. "
  1362. HAVE_LIST_CMDLINE="
  1363. inline_asm
  1364. symver
  1365. x86asm
  1366. "
  1367. HAVE_LIST_PUB="
  1368. bigendian
  1369. fast_unaligned
  1370. "
  1371. HEADERS_LIST="
  1372. AVFoundation_AVFoundation_h
  1373. alsa_asoundlib_h
  1374. altivec_h
  1375. arpa_inet_h
  1376. cdio_paranoia_h
  1377. cdio_paranoia_paranoia_h
  1378. d3d11_h
  1379. dispatch_dispatch_h
  1380. dev_bktr_ioctl_bt848_h
  1381. dev_bktr_ioctl_meteor_h
  1382. dev_ic_bt8xx_h
  1383. dev_video_bktr_ioctl_bt848_h
  1384. dev_video_meteor_ioctl_meteor_h
  1385. direct_h
  1386. dlfcn_h
  1387. dxva_h
  1388. gsm_h
  1389. io_h
  1390. mach_mach_time_h
  1391. machine_ioctl_bt848_h
  1392. machine_ioctl_meteor_h
  1393. malloc_h
  1394. poll_h
  1395. sndio_h
  1396. soundcard_h
  1397. stdatomic_h
  1398. sys_mman_h
  1399. sys_param_h
  1400. sys_resource_h
  1401. sys_select_h
  1402. sys_soundcard_h
  1403. sys_time_h
  1404. sys_un_h
  1405. sys_videoio_h
  1406. unistd_h
  1407. valgrind_valgrind_h
  1408. windows_h
  1409. winsock2_h
  1410. "
  1411. INTRINSICS_LIST="
  1412. intrinsics_neon
  1413. "
  1414. MATH_FUNCS="
  1415. atanf
  1416. atan2f
  1417. cbrtf
  1418. cosf
  1419. exp2
  1420. exp2f
  1421. expf
  1422. isinf
  1423. isnan
  1424. ldexpf
  1425. llrint
  1426. llrintf
  1427. log2
  1428. log2f
  1429. log10f
  1430. lrint
  1431. lrintf
  1432. powf
  1433. rint
  1434. round
  1435. roundf
  1436. sinf
  1437. trunc
  1438. truncf
  1439. "
  1440. SYSTEM_FUNCS="
  1441. aligned_malloc
  1442. clock_gettime
  1443. closesocket
  1444. CommandLineToArgvW
  1445. CoTaskMemFree
  1446. CryptGenRandom
  1447. fcntl
  1448. flt_lim
  1449. fork
  1450. getaddrinfo
  1451. gethrtime
  1452. getopt
  1453. GetProcessAffinityMask
  1454. GetProcessMemoryInfo
  1455. GetProcessTimes
  1456. getrusage
  1457. GetSystemTimeAsFileTime
  1458. gettimeofday
  1459. gmtime_r
  1460. inet_aton
  1461. isatty
  1462. LoadLibrary
  1463. localtime_r
  1464. mach_absolute_time
  1465. MapViewOfFile
  1466. memalign
  1467. mkstemp
  1468. mmap
  1469. mprotect
  1470. nanosleep
  1471. posix_memalign
  1472. sched_getaffinity
  1473. SetConsoleTextAttribute
  1474. setmode
  1475. setrlimit
  1476. Sleep
  1477. strerror_r
  1478. sysconf
  1479. sysctl
  1480. usleep
  1481. VirtualAlloc
  1482. "
  1483. TOOLCHAIN_FEATURES="
  1484. as_dn_directive
  1485. as_fpu_directive
  1486. as_func
  1487. as_object_arch
  1488. asm_mod_q
  1489. attribute_may_alias
  1490. attribute_packed
  1491. blocks_extension
  1492. ebp_available
  1493. ebx_available
  1494. gnu_as
  1495. ibm_asm
  1496. inline_asm_labels
  1497. pragma_deprecated
  1498. symver_asm_label
  1499. symver_gnu_asm
  1500. vfp_args
  1501. xform_asm
  1502. xmm_clobbers
  1503. "
  1504. TYPES_LIST="
  1505. CONDITION_VARIABLE_Ptr
  1506. socklen_t
  1507. struct_addrinfo
  1508. struct_group_source_req
  1509. struct_ip_mreq_source
  1510. struct_ipv6_mreq
  1511. struct_pollfd
  1512. struct_rusage_ru_maxrss
  1513. struct_sockaddr_in6
  1514. struct_sockaddr_sa_len
  1515. struct_sockaddr_storage
  1516. struct_v4l2_frmivalenum_discrete
  1517. "
  1518. HAVE_LIST="
  1519. $ARCH_EXT_LIST
  1520. $(add_suffix _external $ARCH_EXT_LIST)
  1521. $(add_suffix _inline $ARCH_EXT_LIST)
  1522. $ARCH_FEATURES
  1523. $BUILTIN_LIST
  1524. $HAVE_LIST_CMDLINE
  1525. $HAVE_LIST_PUB
  1526. $HEADERS_LIST
  1527. $INTRINSICS_LIST
  1528. $MATH_FUNCS
  1529. $SYSTEM_FUNCS
  1530. $THREADS_LIST
  1531. $TOOLCHAIN_FEATURES
  1532. $TYPES_LIST
  1533. dos_paths
  1534. dxva2_lib
  1535. libc_msvcrt
  1536. MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS
  1537. sdl
  1538. section_data_rel_ro
  1539. threads
  1540. vaapi_drm
  1541. vaapi_x11
  1542. vdpau_x11
  1543. "
  1544. # options emitted with CONFIG_ prefix but not available on the command line
  1545. CONFIG_EXTRA="
  1546. aandcttables
  1547. ac3dsp
  1548. audio_frame_queue
  1549. audiodsp
  1550. blockdsp
  1551. bswapdsp
  1552. cabac
  1553. dirac_parse
  1554. dvprofile
  1555. faandct
  1556. faanidct
  1557. fdctdsp
  1558. flacdsp
  1559. fmtconvert
  1560. g722dsp
  1561. gmp
  1562. golomb
  1563. gplv3
  1564. h263dsp
  1565. h264chroma
  1566. h264dsp
  1567. h264parse
  1568. h264pred
  1569. h264qpel
  1570. hevc_ps
  1571. hpeldsp
  1572. huffman
  1573. huffyuvdsp
  1574. huffyuvencdsp
  1575. idctdsp
  1576. iirfilter
  1577. imdct15
  1578. intrax8
  1579. iso_media
  1580. ividsp
  1581. jpegtables
  1582. lgplv3
  1583. libx262
  1584. libxcb_shape
  1585. lpc
  1586. lzf
  1587. me_cmp
  1588. mpeg_er
  1589. mpegaudio
  1590. mpegaudiodsp
  1591. mpegaudioheader
  1592. mpegvideo
  1593. mpegvideoenc
  1594. mss34dsp
  1595. pixblockdsp
  1596. qpeldsp
  1597. qsv
  1598. qsvdec
  1599. qsvenc
  1600. rangecoder
  1601. riffdec
  1602. riffenc
  1603. rtpdec
  1604. rtpenc_chain
  1605. rv34dsp
  1606. sinewin
  1607. snappy
  1608. srtp
  1609. startcode
  1610. texturedsp
  1611. texturedspenc
  1612. tpeldsp
  1613. vaapi_encode
  1614. vc1dsp
  1615. videodsp
  1616. vp3dsp
  1617. vp56dsp
  1618. vp8dsp
  1619. wma_freqs
  1620. wmv2dsp
  1621. "
  1622. CMDLINE_SELECT="
  1623. $ARCH_EXT_LIST
  1624. $CONFIG_LIST
  1625. $HAVE_LIST_CMDLINE
  1626. $THREADS_LIST
  1627. asm
  1628. cross_compile
  1629. debug
  1630. extra_warnings
  1631. logging
  1632. lto
  1633. optimizations
  1634. rpath
  1635. "
  1636. PATHS_LIST="
  1637. bindir
  1638. datadir
  1639. docdir
  1640. incdir
  1641. libdir
  1642. mandir
  1643. prefix
  1644. shlibdir
  1645. "
  1646. CMDLINE_SET="
  1647. $PATHS_LIST
  1648. ar
  1649. arch
  1650. as
  1651. cc
  1652. objcc
  1653. cpu
  1654. cross_prefix
  1655. custom_allocator
  1656. dep_cc
  1657. env
  1658. extra_version
  1659. host_cc
  1660. host_cflags
  1661. host_extralibs
  1662. host_ld
  1663. host_ldflags
  1664. host_os
  1665. ignore_tests
  1666. ld
  1667. logfile
  1668. malloc_prefix
  1669. nm
  1670. optflags
  1671. pkg_config
  1672. pkg_config_flags
  1673. random_seed
  1674. samples
  1675. sysinclude
  1676. sysroot
  1677. target_exec
  1678. target_os
  1679. target_path
  1680. target_samples
  1681. toolchain
  1682. x86asmexe
  1683. "
  1684. CMDLINE_APPEND="
  1685. extra_cflags
  1686. extra_objcflags
  1687. host_cppflags
  1688. "
  1689. # code dependency declarations
  1690. # architecture extensions
  1691. armv5te_deps="arm"
  1692. armv6_deps="arm"
  1693. armv6t2_deps="arm"
  1694. armv8_deps="aarch64"
  1695. neon_deps_any="aarch64 arm"
  1696. intrinsics_neon_deps="neon"
  1697. vfp_deps_any="aarch64 arm"
  1698. vfpv3_deps="vfp"
  1699. map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
  1700. altivec_deps="ppc"
  1701. ppc4xx_deps="ppc"
  1702. vsx_deps="altivec"
  1703. power8_deps="vsx"
  1704. cpunop_deps="i686"
  1705. x86_64_select="i686"
  1706. x86_64_suggest="fast_cmov"
  1707. amd3dnow_deps="mmx"
  1708. amd3dnowext_deps="amd3dnow"
  1709. i686_deps="x86"
  1710. mmx_deps="x86"
  1711. mmxext_deps="mmx"
  1712. sse_deps="mmxext"
  1713. sse2_deps="sse"
  1714. sse3_deps="sse2"
  1715. ssse3_deps="sse3"
  1716. sse4_deps="ssse3"
  1717. sse42_deps="sse4"
  1718. avx_deps="sse42"
  1719. xop_deps="avx"
  1720. fma3_deps="avx"
  1721. fma4_deps="avx"
  1722. avx2_deps="avx"
  1723. mmx_external_deps="x86asm"
  1724. mmx_inline_deps="inline_asm"
  1725. mmx_suggest="mmx_external mmx_inline"
  1726. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
  1727. eval dep=\$${ext}_deps
  1728. eval ${ext}_external_deps='"${dep}_external"'
  1729. eval ${ext}_inline_deps='"${dep}_inline"'
  1730. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1731. done
  1732. aligned_stack_if_any="aarch64 ppc x86"
  1733. fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1734. fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
  1735. fast_unaligned_if_any="aarch64 ppc x86"
  1736. simd_align_16_if_any="altivec neon sse"
  1737. simd_align_32_if_any="avx"
  1738. # system capabilities
  1739. symver_if_any="symver_asm_label symver_gnu_asm"
  1740. valgrind_backtrace_conflict="optimizations"
  1741. valgrind_backtrace_deps="valgrind_valgrind_h"
  1742. # threading support
  1743. atomics_gcc_if="sync_val_compare_and_swap"
  1744. atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
  1745. atomics_win32_if="MemoryBarrier"
  1746. atomics_native_if_any="$ATOMICS_LIST"
  1747. w32threads_deps="atomics_native"
  1748. threads_if_any="$THREADS_LIST"
  1749. # subsystems
  1750. dct_select="rdft"
  1751. dirac_parse_select="golomb"
  1752. error_resilience_select="me_cmp"
  1753. faandct_deps="faan fdctdsp"
  1754. faanidct_deps="faan idctdsp"
  1755. h264dsp_select="startcode"
  1756. hevc_ps_select="golomb"
  1757. intrax8_select="blockdsp idctdsp"
  1758. mdct_select="fft"
  1759. rdft_select="fft"
  1760. me_cmp_select="fdctdsp idctdsp pixblockdsp"
  1761. mpeg_er_select="error_resilience"
  1762. mpegaudio_select="mpegaudiodsp mpegaudioheader"
  1763. mpegaudiodsp_select="dct"
  1764. mpegvideo_select="blockdsp hpeldsp idctdsp me_cmp mpeg_er videodsp"
  1765. mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
  1766. vc1dsp_select="h264chroma qpeldsp startcode"
  1767. # decoders / encoders
  1768. aac_decoder_select="imdct15 mdct sinewin"
  1769. aac_encoder_select="audio_frame_queue iirfilter mdct sinewin"
  1770. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1771. ac3_decoder_select="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
  1772. ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
  1773. ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
  1774. adpcm_g722_decoder_select="g722dsp"
  1775. adpcm_g722_encoder_select="g722dsp"
  1776. aic_decoder_select="golomb idctdsp"
  1777. alac_encoder_select="lpc"
  1778. als_decoder_select="bswapdsp"
  1779. amrnb_decoder_select="lsp"
  1780. amrwb_decoder_select="lsp"
  1781. amv_decoder_select="sp5x_decoder"
  1782. ape_decoder_select="bswapdsp"
  1783. asv1_decoder_select="blockdsp bswapdsp idctdsp"
  1784. asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
  1785. asv2_decoder_select="blockdsp bswapdsp idctdsp"
  1786. asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
  1787. atrac1_decoder_select="mdct sinewin"
  1788. atrac3_decoder_select="mdct"
  1789. atrac3p_decoder_select="mdct sinewin"
  1790. bink_decoder_select="blockdsp hpeldsp"
  1791. binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
  1792. binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
  1793. cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
  1794. cllc_decoder_select="bswapdsp"
  1795. comfortnoise_encoder_select="lpc"
  1796. cook_decoder_select="audiodsp mdct sinewin"
  1797. cscd_decoder_select="lzo"
  1798. cscd_decoder_suggest="zlib"
  1799. dca_decoder_select="fmtconvert mdct"
  1800. dds_decoder_select="texturedsp"
  1801. dnxhd_decoder_select="blockdsp idctdsp"
  1802. dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
  1803. dvvideo_decoder_select="dvprofile idctdsp"
  1804. dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
  1805. dxa_decoder_deps="zlib"
  1806. dxv_decoder_select="lzf texturedsp"
  1807. eac3_decoder_select="ac3_decoder"
  1808. eac3_encoder_select="ac3_encoder"
  1809. eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
  1810. eatgq_decoder_select="aandcttables idctdsp"
  1811. eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp"
  1812. exr_decoder_deps="zlib"
  1813. ffv1_decoder_select="rangecoder"
  1814. ffv1_encoder_select="rangecoder"
  1815. ffvhuff_decoder_select="huffyuv_decoder"
  1816. ffvhuff_encoder_select="huffyuv_encoder"
  1817. fic_decoder_select="golomb"
  1818. flac_decoder_select="flacdsp"
  1819. flac_encoder_select="bswapdsp flacdsp lpc"
  1820. flashsv_decoder_deps="zlib"
  1821. flashsv_encoder_deps="zlib"
  1822. flashsv2_decoder_deps="zlib"
  1823. flv_decoder_select="h263_decoder"
  1824. flv_encoder_select="h263_encoder"
  1825. fourxm_decoder_select="blockdsp bswapdsp"
  1826. fraps_decoder_select="bswapdsp huffman"
  1827. g2m_decoder_deps="zlib"
  1828. g2m_decoder_select="blockdsp idctdsp jpegtables"
  1829. h261_decoder_select="mpeg_er mpegvideo"
  1830. h261_encoder_select="aandcttables mpegvideoenc"
  1831. h263_decoder_select="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
  1832. h263_encoder_select="aandcttables h263dsp mpegvideoenc"
  1833. h263i_decoder_select="h263_decoder"
  1834. h263p_encoder_select="h263_encoder"
  1835. h264_decoder_select="cabac golomb h264chroma h264dsp h264parse h264pred h264qpel videodsp"
  1836. h264_decoder_suggest="error_resilience"
  1837. hap_decoder_select="snappy texturedsp"
  1838. hap_encoder_deps="libsnappy"
  1839. hap_encoder_select="texturedspenc"
  1840. hevc_decoder_select="bswapdsp cabac hevc_ps videodsp"
  1841. huffyuv_decoder_select="bswapdsp huffyuvdsp"
  1842. huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp"
  1843. iac_decoder_select="imc_decoder"
  1844. imc_decoder_select="bswapdsp fft mdct sinewin"
  1845. indeo3_decoder_select="hpeldsp"
  1846. indeo4_decoder_select="ividsp"
  1847. indeo5_decoder_select="ividsp"
  1848. interplay_video_decoder_select="hpeldsp"
  1849. jpegls_decoder_select="mjpeg_decoder"
  1850. jv_decoder_select="blockdsp"
  1851. lagarith_decoder_select="huffyuvdsp"
  1852. ljpeg_encoder_select="aandcttables idctdsp jpegtables"
  1853. magicyuv_decoder_select="huffyuvdsp"
  1854. mdec_decoder_select="blockdsp idctdsp mpegvideo"
  1855. metasound_decoder_select="lsp mdct sinewin"
  1856. mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
  1857. mjpeg_decoder_select="blockdsp hpeldsp idctdsp jpegtables"
  1858. mjpeg_encoder_select="aandcttables jpegtables mpegvideoenc"
  1859. mjpegb_decoder_select="mjpeg_decoder"
  1860. mlp_decoder_select="mlp_parser"
  1861. motionpixels_decoder_select="bswapdsp"
  1862. mp1_decoder_select="mpegaudio"
  1863. mp1float_decoder_select="mpegaudio"
  1864. mp2_decoder_select="mpegaudio"
  1865. mp2float_decoder_select="mpegaudio"
  1866. mp3_decoder_select="mpegaudio"
  1867. mp3adu_decoder_select="mpegaudio"
  1868. mp3adufloat_decoder_select="mpegaudio"
  1869. mp3float_decoder_select="mpegaudio"
  1870. mp3on4_decoder_select="mpegaudio"
  1871. mp3on4float_decoder_select="mpegaudio"
  1872. mpc7_decoder_select="bswapdsp mpegaudiodsp"
  1873. mpc8_decoder_select="mpegaudiodsp"
  1874. mpeg1video_decoder_select="error_resilience mpeg_er mpegvideo"
  1875. mpeg1video_encoder_select="aandcttables mpegvideoenc"
  1876. mpeg2video_decoder_select="error_resilience mpeg_er mpegvideo"
  1877. mpeg2video_encoder_select="aandcttables mpegvideoenc"
  1878. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1879. mpeg4_encoder_select="h263_encoder"
  1880. msa1_decoder_select="mss34dsp"
  1881. msmpeg4v1_decoder_select="h263_decoder"
  1882. msmpeg4v2_decoder_select="h263_decoder"
  1883. msmpeg4v2_encoder_select="h263_encoder"
  1884. msmpeg4v3_decoder_select="h263_decoder"
  1885. msmpeg4v3_encoder_select="h263_encoder"
  1886. mss2_decoder_select="error_resilience mpeg_er mpegvideo qpeldsp vc1_decoder"
  1887. mts2_decoder_select="mss34dsp"
  1888. mxpeg_decoder_select="mjpeg_decoder"
  1889. nellymoser_decoder_select="mdct sinewin"
  1890. nellymoser_encoder_select="audio_frame_queue mdct sinewin"
  1891. nuv_decoder_select="idctdsp lzo"
  1892. on2avc_decoder_select="mdct"
  1893. opus_decoder_deps="avresample"
  1894. opus_decoder_select="imdct15"
  1895. png_decoder_deps="zlib"
  1896. png_encoder_deps="zlib"
  1897. png_encoder_select="huffyuvencdsp"
  1898. prores_decoder_select="idctdsp"
  1899. prores_encoder_select="fdctdsp"
  1900. qcelp_decoder_select="lsp"
  1901. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1902. ra_144_encoder_select="audio_frame_queue lpc"
  1903. ralf_decoder_select="golomb"
  1904. rscc_decoder_deps="zlib"
  1905. rv10_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
  1906. rv10_encoder_select="h263_encoder"
  1907. rv20_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
  1908. rv20_encoder_select="h263_encoder"
  1909. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
  1910. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
  1911. screenpresso_decoder_deps="zlib"
  1912. sipr_decoder_select="lsp"
  1913. sp5x_decoder_select="mjpeg_decoder"
  1914. svq1_decoder_select="hpeldsp"
  1915. svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
  1916. svq3_decoder_select="golomb h264dsp h264parse h264pred hpeldsp tpeldsp videodsp"
  1917. svq3_decoder_suggest="zlib"
  1918. tak_decoder_select="audiodsp"
  1919. tdsc_decoder_deps="zlib"
  1920. tdsc_decoder_select="mjpeg_decoder"
  1921. theora_decoder_select="vp3_decoder"
  1922. thp_decoder_select="mjpeg_decoder"
  1923. tiff_decoder_suggest="zlib"
  1924. tiff_encoder_suggest="zlib"
  1925. truehd_decoder_select="mlp_decoder"
  1926. truemotion2_decoder_select="bswapdsp"
  1927. truespeech_decoder_select="bswapdsp"
  1928. tscc_decoder_deps="zlib"
  1929. txd_decoder_select="texturedsp"
  1930. twinvq_decoder_select="mdct lsp sinewin"
  1931. utvideo_decoder_select="bswapdsp huffyuvdsp"
  1932. utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
  1933. vble_decoder_select="huffyuvdsp"
  1934. vc1_decoder_select="blockdsp error_resilience h263_decoder h264qpel intrax8 mpeg_er mpegvideo vc1dsp"
  1935. vc1image_decoder_select="vc1_decoder"
  1936. vorbis_decoder_select="mdct"
  1937. vorbis_encoder_select="mdct"
  1938. vp3_decoder_select="hpeldsp vp3dsp videodsp"
  1939. vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
  1940. vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
  1941. vp6a_decoder_select="vp6_decoder"
  1942. vp6f_decoder_select="vp6_decoder"
  1943. vp7_decoder_select="h264pred videodsp vp8dsp"
  1944. vp8_decoder_select="h264pred videodsp vp8dsp"
  1945. vp9_decoder_select="videodsp vp9_superframe_split_bsf"
  1946. webp_decoder_select="vp8_decoder"
  1947. wmapro_decoder_select="mdct sinewin wma_freqs"
  1948. wmav1_decoder_select="mdct sinewin wma_freqs"
  1949. wmav1_encoder_select="mdct sinewin wma_freqs"
  1950. wmav2_decoder_select="mdct sinewin wma_freqs"
  1951. wmav2_encoder_select="mdct sinewin wma_freqs"
  1952. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1953. wmv1_decoder_select="h263_decoder"
  1954. wmv1_encoder_select="h263_encoder"
  1955. wmv2_decoder_select="blockdsp error_resilience h263_decoder idctdsp intrax8 videodsp wmv2dsp"
  1956. wmv2_encoder_select="h263_encoder wmv2dsp"
  1957. wmv3_decoder_select="vc1_decoder"
  1958. wmv3image_decoder_select="wmv3_decoder"
  1959. zerocodec_decoder_deps="zlib"
  1960. zlib_decoder_deps="zlib"
  1961. zlib_encoder_deps="zlib"
  1962. zmbv_decoder_deps="zlib"
  1963. zmbv_encoder_deps="zlib"
  1964. # hardware accelerators
  1965. d3d11va_deps="d3d11_h dxva_h ID3D11VideoDecoder"
  1966. dxva2_deps="dxva2api_h DXVA2_ConfigPictureDecode"
  1967. dxva2_lib_deps="dxva2"
  1968. vda_deps="VideoDecodeAcceleration_VDADecoder_h blocks_extension pthreads"
  1969. vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
  1970. h263_vaapi_hwaccel_deps="vaapi"
  1971. h263_vaapi_hwaccel_select="h263_decoder"
  1972. h264_d3d11va_hwaccel_deps="d3d11va"
  1973. h264_d3d11va_hwaccel_select="h264_decoder"
  1974. h264_dxva2_hwaccel_deps="dxva2"
  1975. h264_dxva2_hwaccel_select="h264_decoder"
  1976. h264_mmal_hwaccel_deps="mmal"
  1977. h264_qsv_hwaccel_deps="libmfx"
  1978. h264_vaapi_hwaccel_deps="vaapi"
  1979. h264_vaapi_hwaccel_select="h264_decoder"
  1980. h264_vda_hwaccel_deps="vda"
  1981. h264_vda_hwaccel_select="h264_decoder"
  1982. h264_vda_old_hwaccel_deps="vda"
  1983. h264_vda_old_hwaccel_select="h264_decoder"
  1984. h264_vdpau_hwaccel_deps="vdpau"
  1985. h264_vdpau_hwaccel_select="h264_decoder"
  1986. hevc_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_HEVC"
  1987. hevc_d3d11va_hwaccel_select="hevc_decoder"
  1988. hevc_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_HEVC"
  1989. hevc_dxva2_hwaccel_select="hevc_decoder"
  1990. hevc_qsv_hwaccel_deps="libmfx"
  1991. hevc_vaapi_hwaccel_deps="vaapi VAPictureParameterBufferHEVC"
  1992. hevc_vaapi_hwaccel_select="hevc_decoder"
  1993. hevc_vdpau_hwaccel_deps="vdpau VdpPictureInfoHEVC"
  1994. hevc_vdpau_hwaccel_select="hevc_decoder"
  1995. mpeg1_vdpau_hwaccel_deps="vdpau"
  1996. mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
  1997. mpeg2_d3d11va_hwaccel_deps="d3d11va"
  1998. mpeg2_d3d11va_hwaccel_select="mpeg2video_decoder"
  1999. mpeg2_dxva2_hwaccel_deps="dxva2"
  2000. mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
  2001. mpeg2_mmal_hwaccel_deps="mmal"
  2002. mpeg2_qsv_hwaccel_deps="libmfx"
  2003. mpeg2_vaapi_hwaccel_deps="vaapi"
  2004. mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
  2005. mpeg2_vdpau_hwaccel_deps="vdpau"
  2006. mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
  2007. mpeg4_vaapi_hwaccel_deps="vaapi"
  2008. mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
  2009. mpeg4_vdpau_hwaccel_deps="vdpau"
  2010. mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
  2011. vc1_d3d11va_hwaccel_deps="d3d11va"
  2012. vc1_d3d11va_hwaccel_select="vc1_decoder"
  2013. vc1_dxva2_hwaccel_deps="dxva2"
  2014. vc1_dxva2_hwaccel_select="vc1_decoder"
  2015. vc1_mmal_hwaccel_deps="mmal"
  2016. vc1_qsv_hwaccel_deps="libmfx"
  2017. vc1_vaapi_hwaccel_deps="vaapi"
  2018. vc1_vaapi_hwaccel_select="vc1_decoder"
  2019. vc1_vdpau_hwaccel_deps="vdpau"
  2020. vc1_vdpau_hwaccel_select="vc1_decoder"
  2021. vp8_qsv_hwaccel_deps="libmfx"
  2022. vp8_vaapi_hwaccel_deps="vaapi VAPictureParameterBufferVP8"
  2023. vp8_vaapi_hwaccel_select="vp8_decoder"
  2024. wmv3_d3d11va_hwaccel_select="vc1_d3d11va_hwaccel"
  2025. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  2026. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  2027. wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
  2028. # hardware-accelerated codecs
  2029. nvenc_deps_any="libdl LoadLibrary"
  2030. omx_deps="libdl pthreads"
  2031. omx_rpi_select="omx"
  2032. qsvdec_select="qsv"
  2033. qsvenc_select="qsv"
  2034. vaapi_encode_deps="vaapi"
  2035. hwupload_cuda_filter_deps="cuda"
  2036. scale_npp_filter_deps="cuda libnpp"
  2037. h264_mmal_decoder_deps="mmal"
  2038. h264_nvenc_encoder_deps="nvenc"
  2039. h264_omx_encoder_deps="omx"
  2040. h264_qsv_decoder_deps="libmfx"
  2041. h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
  2042. h264_qsv_encoder_deps="libmfx"
  2043. h264_qsv_encoder_select="qsvenc"
  2044. h264_vaapi_encoder_deps="VAEncPictureParameterBufferH264"
  2045. h264_vaapi_encoder_select="vaapi_encode golomb"
  2046. hevc_nvenc_encoder_deps="nvenc"
  2047. hevc_qsv_decoder_deps="libmfx"
  2048. hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser hevc_qsv_hwaccel qsvdec"
  2049. hevc_qsv_encoder_deps="libmfx"
  2050. hevc_qsv_encoder_select="hevc_ps qsvenc"
  2051. hevc_vaapi_encoder_deps="VAEncPictureParameterBufferHEVC"
  2052. hevc_vaapi_encoder_select="vaapi_encode golomb"
  2053. mjpeg_vaapi_encoder_deps="VAEncPictureParameterBufferJPEG"
  2054. mjpeg_vaapi_encoder_select="vaapi_encode jpegtables"
  2055. mpeg2_mmal_decoder_deps="mmal"
  2056. mpeg2_qsv_decoder_deps="libmfx"
  2057. mpeg2_qsv_decoder_select="qsvdec mpeg2_qsv_hwaccel mpegvideo_parser"
  2058. mpeg2_qsv_encoder_deps="libmfx"
  2059. mpeg2_qsv_encoder_select="qsvenc"
  2060. mpeg2_vaapi_encoder_deps="VAEncPictureParameterBufferMPEG2"
  2061. mpeg2_vaapi_encoder_select="vaapi_encode"
  2062. mpeg4_omx_encoder_deps="omx"
  2063. vc1_mmal_decoder_deps="mmal"
  2064. vc1_qsv_decoder_deps="libmfx"
  2065. vc1_qsv_decoder_select="qsvdec vc1_qsv_hwaccel vc1_parser"
  2066. vp8_qsv_decoder_deps="libmfx"
  2067. vp8_qsv_decoder_select="qsvdec vp8_qsv_hwaccel vp8_parser"
  2068. vp8_vaapi_encoder_deps="VAEncPictureParameterBufferVP8"
  2069. vp8_vaapi_encoder_select="vaapi_encode"
  2070. vp9_vaapi_encoder_deps="VAEncPictureParameterBufferVP9"
  2071. vp9_vaapi_encoder_select="vaapi_encode"
  2072. nvenc_h264_encoder_select="h264_nvenc_encoder"
  2073. nvenc_hevc_encoder_select="hevc_nvenc_encoder"
  2074. # parsers
  2075. h264_parser_select="golomb h264dsp h264parse"
  2076. hevc_parser_select="hevc_ps"
  2077. mpegaudio_parser_select="mpegaudioheader"
  2078. mpegvideo_parser_select="mpegvideo"
  2079. mpeg4video_parser_select="error_resilience h263dsp mpegvideo qpeldsp"
  2080. vc1_parser_select="vc1dsp"
  2081. # bitstream_filters
  2082. mjpeg2jpeg_bsf_select="jpegtables"
  2083. # external libraries
  2084. avisynth_deps="LoadLibrary"
  2085. avxsynth_deps="libdl"
  2086. avisynth_demuxer_deps_any="avisynth avxsynth"
  2087. avisynth_demuxer_select="riffdec"
  2088. libdcadec_decoder_deps="libdcadec"
  2089. libfaac_encoder_deps="libfaac"
  2090. libfaac_encoder_select="audio_frame_queue"
  2091. libfdk_aac_decoder_deps="libfdk_aac"
  2092. libfdk_aac_encoder_deps="libfdk_aac"
  2093. libfdk_aac_encoder_select="audio_frame_queue"
  2094. libgsm_decoder_deps="libgsm"
  2095. libgsm_encoder_deps="libgsm"
  2096. libgsm_ms_decoder_deps="libgsm"
  2097. libgsm_ms_encoder_deps="libgsm"
  2098. libilbc_decoder_deps="libilbc"
  2099. libilbc_encoder_deps="libilbc"
  2100. libkvazaar_encoder_deps="libkvazaar"
  2101. libmp3lame_encoder_deps="libmp3lame"
  2102. libmp3lame_encoder_select="audio_frame_queue mpegaudioheader"
  2103. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  2104. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  2105. libopencore_amrnb_encoder_select="audio_frame_queue"
  2106. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  2107. libopenh264_decoder_deps="libopenh264"
  2108. libopenh264_decoder_select="h264_mp4toannexb_bsf"
  2109. libopenh264_encoder_deps="libopenh264"
  2110. libopenjpeg_decoder_deps="libopenjpeg"
  2111. libopenjpeg_encoder_deps="libopenjpeg"
  2112. libopus_decoder_deps="libopus"
  2113. libopus_encoder_deps="libopus"
  2114. libopus_encoder_select="audio_frame_queue"
  2115. libschroedinger_decoder_deps="libschroedinger"
  2116. libschroedinger_encoder_deps="libschroedinger"
  2117. libspeex_decoder_deps="libspeex"
  2118. libspeex_encoder_deps="libspeex"
  2119. libspeex_encoder_select="audio_frame_queue"
  2120. libtheora_encoder_deps="libtheora"
  2121. libtwolame_encoder_deps="libtwolame"
  2122. libvo_aacenc_encoder_deps="libvo_aacenc"
  2123. libvo_aacenc_encoder_select="audio_frame_queue"
  2124. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  2125. libvorbis_encoder_deps="libvorbis"
  2126. libvorbis_encoder_select="audio_frame_queue"
  2127. libvpx_vp8_decoder_deps="libvpx"
  2128. libvpx_vp8_encoder_deps="libvpx"
  2129. libvpx_vp9_decoder_deps="libvpx"
  2130. libvpx_vp9_encoder_deps="libvpx"
  2131. libwavpack_encoder_deps="libwavpack"
  2132. libwavpack_encoder_select="audio_frame_queue"
  2133. libwebp_encoder_deps="libwebp"
  2134. libx262_encoder_deps="libx262"
  2135. libx264_encoder_deps="libx264"
  2136. libx265_encoder_deps="libx265"
  2137. libxavs_encoder_deps="libxavs"
  2138. libxvid_encoder_deps="libxvid mkstemp"
  2139. # demuxers / muxers
  2140. ac3_demuxer_select="ac3_parser"
  2141. asf_demuxer_select="riffdec"
  2142. asf_muxer_select="riffenc"
  2143. asf_stream_muxer_select="asf_muxer"
  2144. avi_demuxer_select="iso_media riffdec"
  2145. avi_muxer_select="riffenc"
  2146. caf_demuxer_select="iso_media riffdec"
  2147. dash_muxer_select="mp4_muxer"
  2148. dirac_demuxer_select="dirac_parser"
  2149. dv_demuxer_select="dvprofile"
  2150. dv_muxer_select="dvprofile"
  2151. dxa_demuxer_select="riffdec"
  2152. eac3_demuxer_select="ac3_parser"
  2153. f4v_muxer_select="mov_muxer"
  2154. flac_demuxer_select="flac_parser"
  2155. hds_muxer_select="flv_muxer"
  2156. hls_muxer_select="mpegts_muxer"
  2157. ipod_muxer_select="mov_muxer"
  2158. ismv_muxer_select="mov_muxer"
  2159. matroska_audio_muxer_select="matroska_muxer"
  2160. matroska_demuxer_select="iso_media riffdec"
  2161. matroska_demuxer_suggest="bzlib lzo zlib"
  2162. matroska_muxer_select="iso_media riffenc"
  2163. mmf_muxer_select="riffenc"
  2164. mov_demuxer_select="iso_media riffdec"
  2165. mov_demuxer_suggest="zlib"
  2166. mov_muxer_select="iso_media riffenc rtpenc_chain"
  2167. mp3_demuxer_select="mpegaudio_parser"
  2168. mp3_muxer_select="mpegaudioheader"
  2169. mp4_muxer_select="mov_muxer"
  2170. mpegts_demuxer_select="iso_media"
  2171. mpegts_muxer_select="adts_muxer latm_muxer"
  2172. mpegtsraw_demuxer_select="mpegts_demuxer"
  2173. mxf_d10_muxer_select="mxf_muxer"
  2174. nut_muxer_select="riffenc"
  2175. nuv_demuxer_select="riffdec"
  2176. oga_muxer_select="ogg_muxer"
  2177. ogg_demuxer_select="dirac_parse"
  2178. opus_muxer_select="ogg_muxer"
  2179. psp_muxer_select="mov_muxer"
  2180. rtp_demuxer_select="sdp_demuxer"
  2181. rtpdec_select="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol srtp"
  2182. rtsp_demuxer_select="http_protocol rtpdec"
  2183. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
  2184. sap_demuxer_select="sdp_demuxer"
  2185. sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
  2186. sdp_demuxer_select="rtpdec"
  2187. smoothstreaming_muxer_select="ismv_muxer"
  2188. spdif_muxer_select="aac_parser"
  2189. spx_muxer_select="ogg_muxer"
  2190. swf_demuxer_suggest="zlib"
  2191. tak_demuxer_select="tak_parser"
  2192. tg2_muxer_select="mov_muxer"
  2193. tgp_muxer_select="mov_muxer"
  2194. w64_demuxer_select="wav_demuxer"
  2195. wav_demuxer_select="riffdec"
  2196. wav_muxer_select="riffenc"
  2197. webm_muxer_select="iso_media riffenc"
  2198. wtv_demuxer_select="mpegts_demuxer riffdec"
  2199. xmv_demuxer_select="riffdec"
  2200. xwma_demuxer_select="riffdec"
  2201. # indevs / outdevs
  2202. alsa_indev_deps="alsa"
  2203. alsa_outdev_deps="alsa"
  2204. avfoundation_indev_deps="AVFoundation_AVFoundation_h objc_arc pthreads"
  2205. avfoundation_indev_extralibs="-framework Foundation -framework AVFoundation -framework CoreVideo -framework CoreMedia"
  2206. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  2207. dv1394_indev_deps="dv1394"
  2208. dv1394_indev_select="dv_demuxer"
  2209. fbdev_indev_deps="linux_fb_h"
  2210. jack_indev_deps="libjack"
  2211. jack_indev_deps_any="sem_timedwait dispatch_dispatch_h"
  2212. libcdio_indev_deps="libcdio"
  2213. libdc1394_indev_deps="libdc1394"
  2214. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  2215. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  2216. pulse_indev_deps="libpulse"
  2217. sndio_indev_deps="sndio"
  2218. sndio_outdev_deps="sndio"
  2219. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  2220. vfwcap_indev_deps="vfw32 vfwcap_defines"
  2221. xcbgrab_indev_deps="libxcb libxcb_shape"
  2222. xcbgrab_indev_suggest="libxcb_shm libxcb_xfixes"
  2223. # protocols
  2224. ffrtmpcrypt_protocol_conflict="librtmp_protocol"
  2225. ffrtmpcrypt_protocol_deps_any="gmp openssl"
  2226. ffrtmpcrypt_protocol_select="tcp_protocol"
  2227. ffrtmphttp_protocol_conflict="librtmp_protocol"
  2228. ffrtmphttp_protocol_select="http_protocol"
  2229. gopher_protocol_select="network"
  2230. http_protocol_select="tcp_protocol"
  2231. httpproxy_protocol_select="tcp_protocol"
  2232. https_protocol_select="tls_protocol"
  2233. icecast_protocol_select="http_protocol"
  2234. librtmp_protocol_deps="librtmp"
  2235. librtmpe_protocol_deps="librtmp"
  2236. librtmps_protocol_deps="librtmp"
  2237. librtmpt_protocol_deps="librtmp"
  2238. librtmpte_protocol_deps="librtmp"
  2239. mmsh_protocol_select="http_protocol"
  2240. mmst_protocol_select="network"
  2241. rtmp_protocol_conflict="librtmp_protocol"
  2242. rtmp_protocol_select="tcp_protocol"
  2243. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  2244. rtmps_protocol_conflict="librtmp_protocol"
  2245. rtmps_protocol_select="tls_protocol"
  2246. rtmpt_protocol_select="ffrtmphttp_protocol"
  2247. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  2248. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  2249. rtp_protocol_select="udp_protocol"
  2250. sctp_protocol_deps="struct_sctp_event_subscribe"
  2251. sctp_protocol_select="network"
  2252. srtp_protocol_select="rtp_protocol srtp"
  2253. tcp_protocol_select="network"
  2254. tls_gnutls_protocol_deps="gnutls"
  2255. tls_gnutls_protocol_select="tcp_protocol"
  2256. tls_openssl_protocol_conflict="tls_gnutls_protocol"
  2257. tls_openssl_protocol_deps="openssl"
  2258. tls_openssl_protocol_select="tcp_protocol"
  2259. tls_protocol_deps_any="tls_gnutls_protocol tls_openssl_protocol"
  2260. udp_protocol_select="network"
  2261. unix_protocol_deps="sys_un_h"
  2262. unix_protocol_select="network"
  2263. # filters
  2264. asyncts_filter_deps="avresample"
  2265. blackframe_filter_deps="gpl"
  2266. boxblur_filter_deps="gpl"
  2267. bs2b_filter_deps="libbs2b"
  2268. cropdetect_filter_deps="gpl"
  2269. deinterlace_qsv_filter_deps="libmfx"
  2270. deinterlace_vaapi_filter_deps="vaapi"
  2271. delogo_filter_deps="gpl"
  2272. drawtext_filter_deps="libfreetype"
  2273. drawtext_filter_suggest="libfontconfig"
  2274. frei0r_filter_deps="frei0r libdl"
  2275. frei0r_src_filter_deps="frei0r libdl"
  2276. hdcd_filter_deps="libhdcd"
  2277. hqdn3d_filter_deps="gpl"
  2278. interlace_filter_deps="gpl"
  2279. movie_filter_deps="avcodec avformat"
  2280. ocv_filter_deps="libopencv"
  2281. resample_filter_deps="avresample"
  2282. scale_filter_deps="swscale"
  2283. scale_qsv_filter_deps="libmfx"
  2284. scale_vaapi_filter_deps="vaapi VAProcPipelineParameterBuffer"
  2285. # examples
  2286. decode_audio_example_deps="avcodec avutil"
  2287. decode_video_example_deps="avcodec avutil"
  2288. encode_audio_example_deps="avcodec avutil"
  2289. encode_video_example_deps="avcodec avutil"
  2290. filter_audio_example_deps="avfilter avutil"
  2291. metadata_example_deps="avformat avutil"
  2292. output_example_deps="avcodec avformat avresample avutil swscale"
  2293. qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder"
  2294. transcode_aac_example_deps="avcodec avformat avresample"
  2295. # EXTRALIBS_LIST
  2296. cpu_init_extralibs="pthreads_extralibs"
  2297. cws2fws_extralibs="zlib_extralibs"
  2298. # libraries, in linking order
  2299. avcodec_deps="avutil"
  2300. avcodec_select="null_bsf"
  2301. avdevice_deps="avformat avcodec avutil"
  2302. avfilter_deps="avutil"
  2303. avformat_deps="avcodec avutil"
  2304. avformat_suggest="network"
  2305. avresample_deps="avutil"
  2306. swscale_deps="avutil"
  2307. avcodec_extralibs="pthreads_extralibs libm_extralibs"
  2308. avdevice_extralibs="libm_extralibs"
  2309. avformat_extralibs="libm_extralibs"
  2310. avfilter_extralibs="pthreads_extralibs libm_extralibs"
  2311. avresample_extralibs="libm_extralibs"
  2312. avutil_extralibs="clock_gettime_extralibs cuda_extralibs libm_extralibs libmfx_extralibs nanosleep_extralibs pthreads_extralibs user32_extralibs vaapi_extralibs vaapi_drm_extralibs vaapi_x11_extralibs vdpau_x11_extralibs wincrypt_extralibs"
  2313. swscale_extralibs="libm_extralibs"
  2314. # programs
  2315. avconv_deps="avcodec avfilter avformat avresample swscale"
  2316. avconv_select="aformat_filter anull_filter asyncts_filter atrim_filter format_filter
  2317. fps_filter null_filter resample_filter scale_filter
  2318. trim_filter"
  2319. avconv_suggest="dxva2_lib ole32 psapi shell32"
  2320. avplay_deps="avcodec avfilter avformat avresample sdl"
  2321. avplay_select="rdft format_filter transpose_filter hflip_filter vflip_filter"
  2322. avplay_suggest="shell32"
  2323. avprobe_deps="avcodec avformat"
  2324. avprobe_suggest="shell32"
  2325. # documentation
  2326. pod2man_deps="doc"
  2327. texi2html_deps="doc"
  2328. # default parameters
  2329. logfile="avbuild/config.log"
  2330. # installation paths
  2331. prefix_default="/usr/local"
  2332. bindir_default='${prefix}/bin'
  2333. datadir_default='${prefix}/share/avconv'
  2334. docdir_default='${prefix}/share/doc/libav'
  2335. incdir_default='${prefix}/include'
  2336. libdir_default='${prefix}/lib'
  2337. mandir_default='${prefix}/share/man'
  2338. shlibdir_default="$libdir_default"
  2339. # toolchain
  2340. ar_default="ar"
  2341. cc_default="gcc"
  2342. host_cc_default="gcc"
  2343. x86asmexe_default="nasm"
  2344. ln_s="ln -s -f"
  2345. nm_default="nm -g"
  2346. pkg_config_default=pkg-config
  2347. ranlib="ranlib"
  2348. strip="strip"
  2349. version_script='--version-script'
  2350. # machine
  2351. arch_default=$(uname -m)
  2352. cpu="generic"
  2353. intrinsics="none"
  2354. # OS
  2355. target_os_default=$(tolower $(uname -s))
  2356. host_os=$target_os_default
  2357. # configurable options
  2358. enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST
  2359. enable asm
  2360. enable debug
  2361. enable doc
  2362. enable faan faandct faanidct
  2363. enable optimizations
  2364. enable safe_bitstream_reader
  2365. enable static
  2366. enable swscale_alpha
  2367. enable valgrind_backtrace
  2368. # By default, enable only those hwaccels that have no external dependencies.
  2369. enable d3d11va dxva2 vda vdpau
  2370. # internal components are enabled by default
  2371. enable $EXTRALIBS_LIST
  2372. # Avoid external, non-system, libraries getting enabled by dependency resolution
  2373. disable $EXTERNAL_LIBRARY_LIST
  2374. # build settings
  2375. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  2376. LIBPREF="lib"
  2377. LIBSUF=".a"
  2378. LIBNAME='$(LIBPREF)$(NAME)$(LIBSUF)'
  2379. SLIBPREF="lib"
  2380. SLIBSUF=".so"
  2381. SLIBNAME='$(SLIBPREF)$(NAME)$(SLIBSUF)'
  2382. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  2383. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  2384. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  2385. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  2386. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  2387. VERSION_SCRIPT_POSTPROCESS_CMD="cat"
  2388. asflags_filter=echo
  2389. cflags_filter=echo
  2390. ldflags_filter=echo
  2391. AS_C='-c'
  2392. AS_O='-o $@'
  2393. CC_C='-c'
  2394. CC_E='-E -o $@'
  2395. CC_O='-o $@'
  2396. OBJCC_C='-c'
  2397. OBJCC_E='-E -o $@'
  2398. OBJCC_O='-o $@'
  2399. X86ASM_O='-o $@'
  2400. LD_O='-o $@'
  2401. LD_LIB='-l%'
  2402. LD_PATH='-L'
  2403. HOSTCC_C='-c'
  2404. HOSTCC_E='-E -o $@'
  2405. HOSTCC_O='-o $@'
  2406. HOSTLD_O='-o $@'
  2407. host_extralibs='-lm'
  2408. host_cflags_filter=echo
  2409. host_ldflags_filter=echo
  2410. target_path='$(CURDIR)'
  2411. # since the object filename is not given with the -MM flag, the compiler
  2412. # is only able to print the basename, and we must add the path ourselves
  2413. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  2414. DEPFLAGS='-MM'
  2415. mkdir -p avbuild
  2416. # find source path
  2417. if test -f configure; then
  2418. source_path=.
  2419. else
  2420. source_path=$(cd $(dirname "$0"); pwd)
  2421. echo "$source_path" | grep -q '[[:blank:]]' &&
  2422. die "Out of tree builds are impossible with whitespace in source path."
  2423. test -e "$source_path/config.h" &&
  2424. die "Out of tree builds are impossible with config.h in source dir."
  2425. fi
  2426. for v in "$@"; do
  2427. r=${v#*=}
  2428. l=${v%"$r"}
  2429. r=$(sh_quote "$r")
  2430. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  2431. done
  2432. find_things(){
  2433. thing=$1
  2434. pattern=$2
  2435. file=$source_path/$3
  2436. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  2437. }
  2438. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  2439. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  2440. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  2441. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  2442. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  2443. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  2444. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  2445. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  2446. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  2447. find_things_extern(){
  2448. thing=$1
  2449. pattern=$2
  2450. file=$source_path/$3
  2451. sed -n "s/^[^#]*extern.*$pattern *ff_\([^ ]*\)_$thing;/\1_$thing/p" "$file"
  2452. }
  2453. BSF_LIST=$(find_things_extern bsf AVBitStreamFilter libavcodec/bitstream_filters.c)
  2454. PROTOCOL_LIST=$(find_things_extern protocol URLProtocol libavformat/protocols.c)
  2455. AVCODEC_COMPONENTS_LIST="
  2456. $BSF_LIST
  2457. $DECODER_LIST
  2458. $ENCODER_LIST
  2459. $HWACCEL_LIST
  2460. $PARSER_LIST
  2461. "
  2462. AVDEVICE_COMPONENTS_LIST="
  2463. $INDEV_LIST
  2464. $OUTDEV_LIST
  2465. "
  2466. AVFILTER_COMPONENTS_LIST="
  2467. $FILTER_LIST
  2468. "
  2469. AVFORMAT_COMPONENTS_LIST="
  2470. $DEMUXER_LIST
  2471. $MUXER_LIST
  2472. $PROTOCOL_LIST
  2473. "
  2474. ALL_COMPONENTS="
  2475. $AVCODEC_COMPONENTS_LIST
  2476. $AVDEVICE_COMPONENTS_LIST
  2477. $AVFILTER_COMPONENTS_LIST
  2478. $AVFORMAT_COMPONENTS_LIST
  2479. "
  2480. for n in $COMPONENT_LIST; do
  2481. v=$(toupper ${n%s})_LIST
  2482. eval enable \$$v
  2483. eval ${n}_if_any="\$$v"
  2484. done
  2485. enable $ARCH_EXT_LIST
  2486. die_unknown(){
  2487. echo "Unknown option \"$1\"."
  2488. echo "See $0 --help for available options."
  2489. exit 1
  2490. }
  2491. print_3_columns() {
  2492. printf "%-25s %-25s %-25s\n" $(cat | tr ' ' '\n' | sort)
  2493. }
  2494. show_list() {
  2495. suffix=_$1
  2496. shift
  2497. echo $* | sed s/$suffix//g | print_3_columns
  2498. exit 0
  2499. }
  2500. rand_list(){
  2501. IFS=', '
  2502. set -- $*
  2503. unset IFS
  2504. for thing; do
  2505. comp=${thing%:*}
  2506. prob=${thing#$comp}
  2507. prob=${prob#:}
  2508. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  2509. echo "prob ${prob:-0.5}"
  2510. printf '%s\n' $comp
  2511. done
  2512. }
  2513. do_random(){
  2514. action=$1
  2515. shift
  2516. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  2517. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  2518. }
  2519. for opt do
  2520. optval="${opt#*=}"
  2521. case "$opt" in
  2522. --extra-ldflags=*)
  2523. add_ldflags $optval
  2524. ;;
  2525. --extra-ldexeflags=*)
  2526. add_ldexeflags $optval
  2527. ;;
  2528. --extra-libs=*)
  2529. add_extralibs $optval
  2530. ;;
  2531. --disable-devices)
  2532. disable $INDEV_LIST $OUTDEV_LIST
  2533. ;;
  2534. --enable-debug=*)
  2535. debuglevel="$optval"
  2536. ;;
  2537. --disable-programs)
  2538. disable $PROGRAM_LIST
  2539. ;;
  2540. --disable-everything)
  2541. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2542. ;;
  2543. --disable-all)
  2544. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2545. disable $LIBRARY_LIST $PROGRAM_LIST doc
  2546. ;;
  2547. --enable-random|--disable-random)
  2548. action=${opt%%-random}
  2549. do_random ${action#--} $COMPONENT_LIST
  2550. ;;
  2551. --enable-random=*|--disable-random=*)
  2552. action=${opt%%-random=*}
  2553. do_random ${action#--} $optval
  2554. ;;
  2555. --enable-*=*|--disable-*=*)
  2556. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  2557. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  2558. eval list=\$$(toupper $thing)_LIST
  2559. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  2560. $action $(filter "$name" $list)
  2561. ;;
  2562. --enable-avserver|--disable-avserver*)
  2563. warn "avserver has been removed, the ${opt} option is only"\
  2564. "provided for compatibility and will be removed in the future"
  2565. ;;
  2566. --enable-yasm|--disable-yasm)
  2567. warn "The ${opt} option is only provided for compatibility and will be\n"\
  2568. "removed in the future. Use --enable-x86asm / --disable-x86asm instead."
  2569. test $opt = --enable-yasm && x86asm=yes || x86asm=no
  2570. ;;
  2571. --enable-?*|--disable-?*)
  2572. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  2573. if is_in $option $COMPONENT_LIST; then
  2574. test $action = disable && action=unset
  2575. eval $action \$$(toupper ${option%s})_LIST
  2576. elif is_in $option $CMDLINE_SELECT; then
  2577. $action $option
  2578. else
  2579. die_unknown $opt
  2580. fi
  2581. ;;
  2582. --list-*)
  2583. NAME="${opt#--list-}"
  2584. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  2585. NAME=${NAME%s}
  2586. eval show_list $NAME \$$(toupper $NAME)_LIST
  2587. ;;
  2588. --help|-h) show_help
  2589. ;;
  2590. --quiet|-q) quiet=yes
  2591. ;;
  2592. *)
  2593. optname="${opt%%=*}"
  2594. optname="${optname#--}"
  2595. optname=$(echo "$optname" | sed 's/-/_/g')
  2596. if is_in $optname $CMDLINE_SET; then
  2597. eval $optname='$optval'
  2598. elif is_in $optname $CMDLINE_APPEND; then
  2599. append $optname "$optval"
  2600. else
  2601. die_unknown $opt
  2602. fi
  2603. ;;
  2604. esac
  2605. done
  2606. for e in $env; do
  2607. eval "export $e"
  2608. done
  2609. disabled logging && logfile=/dev/null
  2610. # Die early if licensing-related configure options are incompatible.
  2611. die_license_disabled() {
  2612. enabled $1 || { enabled $v && die "$v is $1 and --enable-$1 is not specified."; }
  2613. }
  2614. map "die_license_disabled gpl" $EXTERNAL_LIBRARY_GPL_LIST
  2615. map "die_license_disabled nonfree" $EXTERNAL_LIBRARY_NONFREE_LIST $HWACCEL_LIBRARY_NONFREE_LIST
  2616. map "die_license_disabled version3" $EXTERNAL_LIBRARY_VERSION3_LIST
  2617. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2618. # Disable all the library-specific components if the library itself
  2619. # is disabled, see AVCODEC_LIST and following _LIST variables.
  2620. disable_components(){
  2621. disabled ${1} && disable $(
  2622. eval components="\$$(toupper ${1})_COMPONENTS"
  2623. map 'eval echo \${$(toupper ${v%s})_LIST}' $components
  2624. )
  2625. }
  2626. map 'disable_components $v' $LIBRARY_LIST
  2627. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  2628. set >> $logfile
  2629. case "$toolchain" in
  2630. *-asan)
  2631. cc_default="${toolchain%-asan}"
  2632. add_cflags -fsanitize=address
  2633. add_ldflags -fsanitize=address
  2634. ;;
  2635. *-msan)
  2636. cc_default="${toolchain%-msan}"
  2637. add_cflags -fsanitize=memory -fsanitize-memory-track-origins
  2638. add_ldflags -fsanitize=memory
  2639. ;;
  2640. *-tsan)
  2641. cc_default="${toolchain%-tsan}"
  2642. add_cflags -fsanitize=thread -fPIE
  2643. add_ldflags -fsanitize=thread -pie
  2644. case "$toolchain" in
  2645. gcc-tsan)
  2646. add_cflags -fPIC
  2647. add_ldflags -fPIC
  2648. ;;
  2649. esac
  2650. ;;
  2651. *-usan)
  2652. cc_default="${toolchain%-usan}"
  2653. add_cflags -fsanitize=undefined
  2654. add_ldflags -fsanitize=undefined
  2655. case "$toolchain" in
  2656. clang-usan)
  2657. add_cflags -O1
  2658. ;;
  2659. esac
  2660. ;;
  2661. valgrind-*)
  2662. target_exec_default="valgrind"
  2663. case "$toolchain" in
  2664. valgrind-massif)
  2665. target_exec_args="--alloc-fn=av_malloc --alloc-fn=av_mallocz"
  2666. ;;
  2667. valgrind-memcheck)
  2668. target_exec_args="--track-origins=yes --leak-check=full"
  2669. ;;
  2670. esac
  2671. ;;
  2672. msvc)
  2673. # Check whether the current MSVC version needs the C99 converter.
  2674. # From MSVC 2013 (compiler major version 18) onwards, it does actually
  2675. # support enough of C99 to build libav. Default to the new
  2676. # behaviour if the regexp was unable to match anything, since this
  2677. # successfully parses the version number of existing supported
  2678. # versions that require the converter (MSVC 2010 and 2012).
  2679. cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
  2680. if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
  2681. cc_default="cl"
  2682. else
  2683. cc_default="c99wrap cl"
  2684. fi
  2685. ld_default="$source_path/compat/windows/mslink"
  2686. nm_default="dumpbin -symbols"
  2687. ar_default="lib"
  2688. case "$arch" in
  2689. arm*)
  2690. as_default="armasm"
  2691. ;;
  2692. esac
  2693. target_os_default="win32"
  2694. # Use a relative path for TMPDIR. This makes sure all the
  2695. # ffconf temp files are written with a relative path, avoiding
  2696. # issues with msys/win32 path conversion for MSVC parameters
  2697. # such as -Fo<file> or -out:<file>.
  2698. TMPDIR=.
  2699. ;;
  2700. icl)
  2701. cc_default="icl"
  2702. ld_default="xilink"
  2703. nm_default="dumpbin -symbols"
  2704. ar_default="xilib"
  2705. target_os_default="win32"
  2706. TMPDIR=.
  2707. ;;
  2708. gcov)
  2709. add_cflags -fprofile-arcs -ftest-coverage
  2710. add_ldflags -fprofile-arcs -ftest-coverage
  2711. ;;
  2712. llvm-cov)
  2713. add_cflags -fprofile-arcs -ftest-coverage
  2714. add_ldflags --coverage
  2715. ;;
  2716. hardened)
  2717. add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
  2718. add_cflags -fno-strict-overflow -fstack-protector-all
  2719. add_ldflags -Wl,-z,relro -Wl,-z,now
  2720. ;;
  2721. ?*)
  2722. die "Unknown toolchain $toolchain"
  2723. ;;
  2724. esac
  2725. test -n "$cross_prefix" && enable cross_compile
  2726. if enabled cross_compile; then
  2727. test -n "$arch" && test -n "$target_os" ||
  2728. die "Must specify target arch (--arch) and OS (--target-os) when cross-compiling"
  2729. fi
  2730. ar_default="${cross_prefix}${ar_default}"
  2731. cc_default="${cross_prefix}${cc_default}"
  2732. objcc_default="${cross_prefix}${objcc_default}"
  2733. x86asmexe_default="${cross_prefix}${x86asmexe_default}"
  2734. nm_default="${cross_prefix}${nm_default}"
  2735. pkg_config_default="${cross_prefix}${pkg_config_default}"
  2736. ranlib="${cross_prefix}${ranlib}"
  2737. strip="${cross_prefix}${strip}"
  2738. sysinclude_default="${sysroot}/usr/include"
  2739. set_default arch cc pkg_config sysinclude target_exec target_os x86asmexe
  2740. enabled cross_compile || host_cc_default=$cc
  2741. set_default host_cc
  2742. if ! $pkg_config --version >/dev/null 2>&1; then
  2743. warn "$pkg_config not found, library detection may fail."
  2744. pkg_config=false
  2745. fi
  2746. exesuf() {
  2747. case $1 in
  2748. mingw32*|mingw64*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  2749. esac
  2750. }
  2751. EXESUF=$(exesuf $target_os)
  2752. HOSTEXESUF=$(exesuf $host_os)
  2753. # set temporary file name
  2754. : ${TMPDIR:=$TEMPDIR}
  2755. : ${TMPDIR:=$TMP}
  2756. : ${TMPDIR:=/tmp}
  2757. if ! check_cmd mktemp -u XXXXXX; then
  2758. # simple replacement for missing mktemp
  2759. # NOT SAFE FOR GENERAL USE
  2760. mktemp(){
  2761. tmpname="${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  2762. echo "$tmpname"
  2763. mkdir "$tmpname"
  2764. }
  2765. fi
  2766. AVTMPDIR=$(mktemp -d "${TMPDIR}/avconf.XXXXXXXX" 2> /dev/null) ||
  2767. die "Unable to create temporary directory in $TMPDIR."
  2768. tmpfile(){
  2769. tmp="${AVTMPDIR}/test"$2
  2770. (set -C; exec > $tmp) 2> /dev/null ||
  2771. die "Unable to create temporary file in $AVTMPDIR."
  2772. eval $1=$tmp
  2773. }
  2774. trap 'rm -rf -- "$AVTMPDIR"' EXIT
  2775. trap 'exit 2' INT
  2776. tmpfile TMPASM .asm
  2777. tmpfile TMPC .c
  2778. tmpfile TMPE $EXESUF
  2779. tmpfile TMPH .h
  2780. tmpfile TMPO .o
  2781. tmpfile TMPS .S
  2782. tmpfile TMPSH .sh
  2783. tmpfile TMPV .ver
  2784. unset -f mktemp
  2785. chmod +x $TMPE
  2786. # make sure we can execute files in $TMPDIR
  2787. cat > $TMPSH 2>> $logfile <<EOF
  2788. #! /bin/sh
  2789. EOF
  2790. chmod +x $TMPSH >> $logfile 2>&1
  2791. if ! $TMPSH >> $logfile 2>&1; then
  2792. cat <<EOF
  2793. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2794. variable to another directory and make sure that it is not mounted noexec.
  2795. EOF
  2796. die "Sanity test failed."
  2797. fi
  2798. armasm_flags(){
  2799. for flag; do
  2800. case $flag in
  2801. # Filter out MSVC cl.exe options from cflags that shouldn't
  2802. # be passed to gas-preprocessor
  2803. -M[TD]*) ;;
  2804. *) echo $flag ;;
  2805. esac
  2806. done
  2807. }
  2808. ccc_flags(){
  2809. for flag; do
  2810. case $flag in
  2811. -std=c99) echo -c99 ;;
  2812. -mcpu=*) echo -arch ${flag#*=} ;;
  2813. -mieee) echo -ieee ;;
  2814. -O*|-fast) echo $flag ;;
  2815. -fno-math-errno) echo -assume nomath_errno ;;
  2816. -g) echo -g3 ;;
  2817. -Wall) echo -msg_enable level2 ;;
  2818. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  2819. -Wl,*) echo $flag ;;
  2820. -f*|-W*) ;;
  2821. *) echo $flag ;;
  2822. esac
  2823. done
  2824. }
  2825. cparser_flags(){
  2826. for flag; do
  2827. case $flag in
  2828. -Wno-switch) echo -Wno-switch-enum ;;
  2829. -Wno-format-zero-length) ;;
  2830. -Wdisabled-optimization) ;;
  2831. -Wno-pointer-sign) echo -Wno-other ;;
  2832. *) echo $flag ;;
  2833. esac
  2834. done
  2835. }
  2836. msvc_common_flags(){
  2837. for flag; do
  2838. case $flag in
  2839. # In addition to specifying certain flags under the compiler
  2840. # specific filters, they must be specified here as well or else the
  2841. # generic catch all at the bottom will print the original flag.
  2842. -Wall) ;;
  2843. -Wextra) ;;
  2844. -std=c99) ;;
  2845. # Common flags
  2846. -fomit-frame-pointer) ;;
  2847. -g) echo -Z7 ;;
  2848. -fno-math-errno) ;;
  2849. -fno-common) ;;
  2850. -fno-signed-zeros) ;;
  2851. -fPIC) ;;
  2852. -mthumb) ;;
  2853. -march=*) ;;
  2854. -lz) echo zlib.lib ;;
  2855. -lx264) echo libx264.lib ;;
  2856. -l*) echo ${flag#-l}.lib ;;
  2857. -L*) echo -libpath:${flag#-L} ;;
  2858. *) echo $flag ;;
  2859. esac
  2860. done
  2861. }
  2862. msvc_flags(){
  2863. msvc_common_flags "$@"
  2864. for flag; do
  2865. case $flag in
  2866. -Wall) echo -W3 -wd4018 -wd4146 -wd4244 -wd4305 \
  2867. -wd4554 ;;
  2868. -Wextra) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2869. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2870. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2871. -wd4273 -wd4554 -wd4701 -wd4703 ;;
  2872. esac
  2873. done
  2874. }
  2875. icl_flags(){
  2876. msvc_common_flags "$@"
  2877. for flag; do
  2878. case $flag in
  2879. # Despite what Intel's documentation says -Wall, which is supported
  2880. # on Windows, does enable remarks so disable them here.
  2881. -Wall) echo $flag -Qdiag-disable:remark ;;
  2882. -std=c99) echo -Qstd=c99 ;;
  2883. esac
  2884. done
  2885. }
  2886. pgi_flags(){
  2887. for flag; do
  2888. case $flag in
  2889. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  2890. -fomit-frame-pointer) echo -Mnoframe ;;
  2891. -g) echo -gopt ;;
  2892. *) echo $flag ;;
  2893. esac
  2894. done
  2895. }
  2896. suncc_flags(){
  2897. for flag; do
  2898. case $flag in
  2899. -march=*|-mcpu=*)
  2900. case "${flag#*=}" in
  2901. native) echo -xtarget=native ;;
  2902. v9|niagara) echo -xarch=sparc ;;
  2903. ultrasparc) echo -xarch=sparcvis ;;
  2904. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2905. i586|pentium) echo -xchip=pentium ;;
  2906. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2907. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2908. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2909. pentium4*) echo -xtarget=pentium4 ;;
  2910. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2911. *-sse3) echo -xarch=sse3 ;;
  2912. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2913. corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
  2914. corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
  2915. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2916. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2917. k8|opteron|athlon64|athlon-fx)
  2918. echo -xarch=sse2a ;;
  2919. athlon*) echo -xarch=pentium_proa ;;
  2920. esac
  2921. ;;
  2922. -std=c99) echo -xc99 ;;
  2923. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2924. -fPIC) echo -KPIC -xcode=pic32 ;;
  2925. -W*,*) echo $flag ;;
  2926. -f*-*|-W*|-mimpure-text) ;;
  2927. -shared) echo -G ;;
  2928. *) echo $flag ;;
  2929. esac
  2930. done
  2931. }
  2932. tms470_flags(){
  2933. for flag; do
  2934. case $flag in
  2935. -march=*|-mcpu=*)
  2936. case "${flag#*=}" in
  2937. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2938. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2939. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2940. armv6*|arm11*) echo -mv=6 ;;
  2941. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2942. echo -mv=5e ;;
  2943. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2944. esac
  2945. ;;
  2946. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2947. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2948. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2949. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2950. -msoft-float) echo --float_support=vfplib ;;
  2951. -O[0-3]|-mf=*) echo $flag ;;
  2952. -g) echo -g -mn ;;
  2953. -pds=*) echo $flag ;;
  2954. -D*|-I*) echo $flag ;;
  2955. --gcc|--abi=*) echo $flag ;;
  2956. -me) echo $flag ;;
  2957. esac
  2958. done
  2959. }
  2960. probe_cc(){
  2961. pfx=$1
  2962. _cc=$2
  2963. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2964. unset _ld_o _ldflags _ld_lib _ld_path
  2965. unset _depflags _DEPCMD _DEPFLAGS
  2966. _flags_filter=echo
  2967. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2968. _type=llvm_gcc
  2969. gcc_extra_ver=$(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)')
  2970. _ident="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver"
  2971. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2972. _cflags_speed='-O3'
  2973. _cflags_size='-Os'
  2974. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2975. _type=gcc
  2976. gcc_version=$($_cc --version | head -n1)
  2977. gcc_basever=$($_cc -dumpversion)
  2978. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2979. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2980. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2981. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2982. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2983. fi
  2984. _cflags_speed='-O3'
  2985. _cflags_size='-Os'
  2986. elif $_cc --version 2>/dev/null | grep -q ^icc; then
  2987. _type=icc
  2988. _ident=$($_cc --version | head -n1)
  2989. _depflags='-MMD'
  2990. _cflags_speed='-O3'
  2991. _cflags_size='-Os'
  2992. _cflags_noopt='-O1'
  2993. elif $_cc -v 2>&1 | grep -q xlc; then
  2994. _type=xlc
  2995. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2996. _cflags_speed='-O5'
  2997. _cflags_size='-O5 -qcompact'
  2998. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2999. _type=ccc
  3000. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  3001. _DEPFLAGS='-M'
  3002. _cflags_speed='-fast'
  3003. _cflags_size='-O1'
  3004. _flags_filter=ccc_flags
  3005. elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
  3006. test -d "$sysroot" || die "No valid sysroot specified."
  3007. _type=armcc
  3008. _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
  3009. armcc_conf="$PWD/armcc.conf"
  3010. $_cc --arm_linux_configure \
  3011. --arm_linux_config_file="$armcc_conf" \
  3012. --configure_sysroot="$sysroot" \
  3013. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  3014. die "Error creating armcc configuration file."
  3015. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  3016. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  3017. as_default="${cross_prefix}gcc"
  3018. _depflags='-MMD'
  3019. _cflags_speed='-O3'
  3020. _cflags_size='-Os'
  3021. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  3022. _type=tms470
  3023. _ident=$($_cc -version | head -n1 | tr -s ' ')
  3024. _flags='--gcc --abi=eabi -me'
  3025. _cc_e='-ppl -fe=$@'
  3026. _cc_o='-fe=$@'
  3027. _depflags='-ppa -ppd=$(@:.o=.d)'
  3028. _cflags_speed='-O3 -mf=5'
  3029. _cflags_size='-O3 -mf=2'
  3030. _flags_filter=tms470_flags
  3031. elif $_cc -v 2>&1 | grep -q clang; then
  3032. _type=clang
  3033. _ident=$($_cc --version 2>/dev/null | head -n1)
  3034. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3035. _cflags_speed='-O3'
  3036. _cflags_size='-Os'
  3037. elif $_cc -V 2>&1 | grep -q Sun; then
  3038. _type=suncc
  3039. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  3040. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  3041. _DEPFLAGS='-xM1 -xc99'
  3042. _ldflags='-std=c99'
  3043. _cflags_speed='-O5'
  3044. _cflags_size='-O5 -xspace'
  3045. _flags_filter=suncc_flags
  3046. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  3047. _type=pathscale
  3048. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  3049. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3050. _cflags_speed='-O2'
  3051. _cflags_size='-Os'
  3052. _flags_filter='filter_out -Wdisabled-optimization'
  3053. elif $_cc -v 2>&1 | grep -q Open64; then
  3054. _type=open64
  3055. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  3056. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  3057. _cflags_speed='-O2'
  3058. _cflags_size='-Os'
  3059. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  3060. elif $_cc -V 2>&1 | grep -q Portland; then
  3061. _type=pgi
  3062. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  3063. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  3064. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  3065. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  3066. _cflags_noopt="-O1"
  3067. _flags_filter=pgi_flags
  3068. elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
  3069. _type=armasm
  3070. _ident=$($_cc | head -n1)
  3071. # 4509: "This form of conditional instruction is deprecated"
  3072. _flags="-nologo -ignore 4509"
  3073. _flags_filter=armasm_flags
  3074. elif $_cc -nologo- 2>&1 | grep -q Microsoft; then
  3075. _type=msvc
  3076. _ident=$($_cc 2>&1 | head -n1)
  3077. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  3078. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  3079. _cflags_speed="-O2"
  3080. _cflags_size="-O1"
  3081. _cflags_noopt="-O1"
  3082. if $_cc -nologo- 2>&1 | grep -q Linker; then
  3083. _ld_o='-out:$@'
  3084. else
  3085. _ld_o='-Fe$@'
  3086. fi
  3087. _cc_o='-Fo$@'
  3088. _cc_e='-P -Fi$@'
  3089. _flags_filter=msvc_flags
  3090. _ld_lib='lib%.a'
  3091. _ld_path='-libpath:'
  3092. _flags='-nologo'
  3093. elif $_cc 2>&1 | grep -q Intel; then
  3094. _type=icl
  3095. _ident=$($_cc 2>&1 | head -n1)
  3096. _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
  3097. # Not only is O3 broken on 13.x+ but it is slower on all previous
  3098. # versions (tested) as well.
  3099. _cflags_speed="-O2"
  3100. _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
  3101. if $_cc 2>&1 | grep -q Linker; then
  3102. _ld_o='-out:$@'
  3103. else
  3104. _ld_o='-Fe$@'
  3105. fi
  3106. _cc_o='-Fo$@'
  3107. _cc_e='-P'
  3108. _flags_filter=icl_flags
  3109. _ld_lib='lib%.a'
  3110. _ld_path='-libpath:'
  3111. # -Qdiag-error to make icl error when seeing certain unknown arguments
  3112. _flags='-nologo -Qdiag-error:4044,10157'
  3113. # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
  3114. # with MSVC which enables it by default.
  3115. _cflags='-Qms0 -Qvec- -Qsimd- -GS'
  3116. elif $_cc -? 2>/dev/null | grep -q 'LLVM.*Linker'; then
  3117. # lld can emulate multiple different linkers; in ms link.exe mode,
  3118. # the -? parameter gives the help output which contains an identifyable
  3119. # string, while it gives an error in other modes.
  3120. _type=lld-link
  3121. # The link.exe mode doesn't have a switch for getting the version,
  3122. # but we can force it back to gnu mode and get the version from there.
  3123. _ident=$($_cc -flavor gnu --version 2>/dev/null)
  3124. _ld_o='-out:$@'
  3125. _flags_filter=msvc_flags
  3126. _ld_lib='lib%.a'
  3127. _ld_path='-libpath:'
  3128. elif $_cc --version 2>/dev/null | grep -q ^cparser; then
  3129. _type=cparser
  3130. _ident=$($_cc --version | head -n1)
  3131. _depflags='-MMD'
  3132. _cflags_speed='-O4'
  3133. _cflags_size='-O2'
  3134. _flags_filter=cparser_flags
  3135. fi
  3136. eval ${pfx}_type=\$_type
  3137. eval ${pfx}_ident=\$_ident
  3138. }
  3139. set_ccvars(){
  3140. eval ${1}_C=\${_cc_c-\${${1}_C}}
  3141. eval ${1}_E=\${_cc_e-\${${1}_E}}
  3142. eval ${1}_O=\${_cc_o-\${${1}_O}}
  3143. if [ -n "$_depflags" ]; then
  3144. eval ${1}_DEPFLAGS=\$_depflags
  3145. else
  3146. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  3147. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  3148. eval DEP${1}FLAGS=\$_flags
  3149. fi
  3150. }
  3151. probe_cc cc "$cc"
  3152. cflags_filter=$_flags_filter
  3153. cflags_speed=$_cflags_speed
  3154. cflags_size=$_cflags_size
  3155. cflags_noopt=$_cflags_noopt
  3156. add_cflags $_flags $_cflags
  3157. cc_ldflags=$_ldflags
  3158. set_ccvars CC
  3159. probe_cc hostcc "$host_cc"
  3160. host_cflags_filter=$_flags_filter
  3161. host_cflags_speed=$_cflags_speed
  3162. add_host_cflags $_flags $_cflags
  3163. set_ccvars HOSTCC
  3164. test -n "$cc_type" && enable $cc_type ||
  3165. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  3166. : ${as_default:=$cc}
  3167. : ${objcc_default:=$cc}
  3168. : ${dep_cc_default:=$cc}
  3169. : ${ld_default:=$cc}
  3170. : ${host_ld_default:=$host_cc}
  3171. set_default ar as objcc dep_cc ld host_ld
  3172. probe_cc as "$as"
  3173. asflags_filter=$_flags_filter
  3174. add_asflags $_flags $_cflags
  3175. set_ccvars AS
  3176. probe_cc objcc "$objcc"
  3177. objcflags_filter=$_flags_filter
  3178. add_objcflags $_flags $_cflags
  3179. set_ccvars OBJC
  3180. probe_cc ld "$ld"
  3181. ldflags_filter=$_flags_filter
  3182. add_ldflags $_flags $_ldflags
  3183. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  3184. LD_O=${_ld_o-$LD_O}
  3185. LD_LIB=${_ld_lib-$LD_LIB}
  3186. LD_PATH=${_ld_path-$LD_PATH}
  3187. probe_cc hostld "$host_ld"
  3188. host_ldflags_filter=$_flags_filter
  3189. add_host_ldflags $_flags $_ldflags
  3190. HOSTLD_O=${_ld_o-$HOSTLD_O}
  3191. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  3192. probe_cc depcc "$dep_cc"
  3193. CCDEP=${_DEPCMD:-$DEPCMD}
  3194. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  3195. DEPCCFLAGS=$_flags
  3196. fi
  3197. if $ar 2>&1 | grep -q Microsoft; then
  3198. arflags="-nologo"
  3199. ar_o='-out:$@'
  3200. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  3201. arflags="rq"
  3202. ar_o='$@'
  3203. elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
  3204. arflags='-Xany -r -c'
  3205. ar_o='$@'
  3206. else
  3207. arflags="rc"
  3208. ar_o='$@'
  3209. fi
  3210. add_cflags $extra_cflags
  3211. add_objcflags $extra_objcflags
  3212. add_asflags $extra_cflags
  3213. if test -n "$sysroot"; then
  3214. case "$cc_type" in
  3215. gcc|llvm_gcc|clang)
  3216. add_cppflags --sysroot="$sysroot"
  3217. add_ldflags --sysroot="$sysroot"
  3218. ;;
  3219. tms470)
  3220. add_cppflags -I"$sysinclude"
  3221. add_ldflags --sysroot="$sysroot"
  3222. ;;
  3223. esac
  3224. fi
  3225. if test "$cpu" = host; then
  3226. enabled cross_compile &&
  3227. die "--cpu=host makes no sense when cross-compiling."
  3228. case "$cc_type" in
  3229. gcc|llvm_gcc)
  3230. check_native(){
  3231. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  3232. sed -n "/cc1.*$1=/{
  3233. s/.*$1=\\([^ ]*\\).*/\\1/
  3234. p
  3235. q
  3236. }" $TMPE
  3237. }
  3238. cpu=$(check_native -march || check_native -mcpu)
  3239. ;;
  3240. esac
  3241. test "${cpu:-host}" = host &&
  3242. die "--cpu=host not supported with compiler $cc"
  3243. fi
  3244. # Deal with common $arch aliases
  3245. case "$arch" in
  3246. aarch64|arm64)
  3247. arch="aarch64"
  3248. ;;
  3249. arm*)
  3250. arch="arm"
  3251. ;;
  3252. mips*|IP*)
  3253. case "$arch" in
  3254. *el)
  3255. add_cppflags -EL
  3256. add_ldflags -EL
  3257. ;;
  3258. *eb)
  3259. add_cppflags -EB
  3260. add_ldflags -EB
  3261. ;;
  3262. esac
  3263. arch="mips"
  3264. ;;
  3265. parisc*|hppa*)
  3266. arch="parisc"
  3267. ;;
  3268. "Power Macintosh"|ppc*|powerpc*)
  3269. arch="ppc"
  3270. ;;
  3271. s390|s390x)
  3272. arch="s390"
  3273. ;;
  3274. sh4|sh)
  3275. arch="sh4"
  3276. ;;
  3277. sun4u|sparc*)
  3278. arch="sparc"
  3279. ;;
  3280. tilegx|tile-gx)
  3281. arch="tilegx"
  3282. ;;
  3283. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  3284. arch="x86"
  3285. ;;
  3286. esac
  3287. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  3288. enable $arch
  3289. # Add processor-specific flags
  3290. if enabled aarch64; then
  3291. case $cpu in
  3292. armv*)
  3293. cpuflags="-march=$cpu"
  3294. ;;
  3295. *)
  3296. cpuflags="-mcpu=$cpu"
  3297. ;;
  3298. esac
  3299. elif enabled alpha; then
  3300. cpuflags="-mcpu=$cpu"
  3301. elif enabled arm; then
  3302. check_arm_arch() {
  3303. check_cpp_condition stddef.h \
  3304. "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
  3305. $cpuflags
  3306. }
  3307. probe_arm_arch() {
  3308. if check_arm_arch 4; then echo armv4
  3309. elif check_arm_arch 4T; then echo armv4t
  3310. elif check_arm_arch 5; then echo armv5
  3311. elif check_arm_arch 5E; then echo armv5e
  3312. elif check_arm_arch 5T; then echo armv5t
  3313. elif check_arm_arch 5TE; then echo armv5te
  3314. elif check_arm_arch 5TEJ; then echo armv5te
  3315. elif check_arm_arch 6; then echo armv6
  3316. elif check_arm_arch 6J; then echo armv6j
  3317. elif check_arm_arch 6K; then echo armv6k
  3318. elif check_arm_arch 6Z; then echo armv6z
  3319. elif check_arm_arch 6ZK; then echo armv6zk
  3320. elif check_arm_arch 6T2; then echo armv6t2
  3321. elif check_arm_arch 7; then echo armv7
  3322. elif check_arm_arch 7A 7_A; then echo armv7-a
  3323. elif check_arm_arch 7S; then echo armv7-a
  3324. elif check_arm_arch 7R 7_R; then echo armv7-r
  3325. elif check_arm_arch 7M 7_M; then echo armv7-m
  3326. elif check_arm_arch 7EM 7E_M; then echo armv7-m
  3327. elif check_arm_arch 8A 8_A; then echo armv8-a
  3328. fi
  3329. }
  3330. [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
  3331. case $cpu in
  3332. armv*)
  3333. cpuflags="-march=$cpu"
  3334. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  3335. ;;
  3336. *)
  3337. cpuflags="-mcpu=$cpu"
  3338. case $cpu in
  3339. cortex-a*) subarch=armv7a ;;
  3340. cortex-r*) subarch=armv7r ;;
  3341. cortex-m*) enable thumb; subarch=armv7m ;;
  3342. arm11*) subarch=armv6 ;;
  3343. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  3344. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  3345. *) subarch=$(probe_arm_arch) ;;
  3346. esac
  3347. ;;
  3348. esac
  3349. case "$subarch" in
  3350. armv5t*) enable fast_clz ;;
  3351. armv[6-8]*) enable fast_clz fast_unaligned ;;
  3352. esac
  3353. elif enabled avr32; then
  3354. case $cpu in
  3355. ap7[02]0[0-2])
  3356. subarch="avr32_ap"
  3357. cpuflags="-mpart=$cpu"
  3358. ;;
  3359. ap)
  3360. subarch="avr32_ap"
  3361. cpuflags="-march=$cpu"
  3362. ;;
  3363. uc3[ab]*)
  3364. subarch="avr32_uc"
  3365. cpuflags="-mcpu=$cpu"
  3366. ;;
  3367. uc)
  3368. subarch="avr32_uc"
  3369. cpuflags="-march=$cpu"
  3370. ;;
  3371. esac
  3372. elif enabled bfin; then
  3373. cpuflags="-mcpu=$cpu"
  3374. elif enabled mips; then
  3375. cpuflags="-march=$cpu"
  3376. elif enabled ppc; then
  3377. disable ldbrx
  3378. case $(tolower $cpu) in
  3379. 601|ppc601|powerpc601)
  3380. cpuflags="-mcpu=601"
  3381. disable altivec
  3382. ;;
  3383. 603*|ppc603*|powerpc603*)
  3384. cpuflags="-mcpu=603"
  3385. disable altivec
  3386. ;;
  3387. 604*|ppc604*|powerpc604*)
  3388. cpuflags="-mcpu=604"
  3389. disable altivec
  3390. ;;
  3391. g3|75*|ppc75*|powerpc75*)
  3392. cpuflags="-mcpu=750"
  3393. disable altivec
  3394. ;;
  3395. g4|745*|ppc745*|powerpc745*)
  3396. cpuflags="-mcpu=7450"
  3397. disable vsx
  3398. ;;
  3399. 74*|ppc74*|powerpc74*)
  3400. cpuflags="-mcpu=7400"
  3401. disable vsx
  3402. ;;
  3403. g5|970|ppc970|powerpc970)
  3404. cpuflags="-mcpu=970"
  3405. disable vsx
  3406. ;;
  3407. power[3-6]*)
  3408. cpuflags="-mcpu=$cpu"
  3409. disable vsx
  3410. ;;
  3411. power[7-8]*)
  3412. cpuflags="-mcpu=$cpu"
  3413. enable ldbrx
  3414. ;;
  3415. cell)
  3416. cpuflags="-mcpu=cell"
  3417. enable ldbrx
  3418. disable vsx
  3419. ;;
  3420. e500mc)
  3421. cpuflags="-mcpu=e500mc"
  3422. disable altivec
  3423. ;;
  3424. e500v2)
  3425. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  3426. disable altivec
  3427. disable dcbzl
  3428. ;;
  3429. e500)
  3430. cpuflags="-mcpu=8540 -mhard-float"
  3431. disable altivec
  3432. disable dcbzl
  3433. ;;
  3434. esac
  3435. elif enabled sparc; then
  3436. case $cpu in
  3437. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  3438. cpuflags="-mcpu=$cpu"
  3439. ;;
  3440. ultrasparc*|niagara[234])
  3441. cpuflags="-mcpu=$cpu"
  3442. ;;
  3443. esac
  3444. elif enabled x86; then
  3445. case $cpu in
  3446. i[345]86|pentium)
  3447. cpuflags="-march=$cpu"
  3448. disable i686
  3449. disable mmx
  3450. ;;
  3451. # targets that do NOT support nopl and conditional mov (cmov)
  3452. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  3453. cpuflags="-march=$cpu"
  3454. disable i686
  3455. ;;
  3456. # targets that do support nopl and conditional mov (cmov)
  3457. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
  3458. cpuflags="-march=$cpu"
  3459. enable i686
  3460. enable fast_cmov
  3461. ;;
  3462. # targets that do support conditional mov but on which it's slow
  3463. pentium4|pentium4m|prescott|nocona)
  3464. cpuflags="-march=$cpu"
  3465. enable i686
  3466. disable fast_cmov
  3467. ;;
  3468. esac
  3469. fi
  3470. if [ "$cpu" != generic ]; then
  3471. add_cflags $cpuflags
  3472. add_asflags $cpuflags
  3473. test "$cc_type" = "$ld_type" && add_ldflags $cpuflags
  3474. fi
  3475. # compiler sanity check
  3476. check_exec <<EOF
  3477. int main(void){ return 0; }
  3478. EOF
  3479. if test "$?" != 0; then
  3480. echo "$cc is unable to create an executable file."
  3481. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  3482. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  3483. echo "Only do this if you know what cross compiling means."
  3484. fi
  3485. die "C compiler test failed."
  3486. fi
  3487. add_cppflags -D_ISOC99_SOURCE
  3488. # some compilers silently accept -std=c11, so we also need to check that the
  3489. # version macro is defined properly
  3490. check_cpp_condition stdlib.h "__STDC_VERSION__ >= 201112L" -std=c11 &&
  3491. add_cflags -std=c11 ||
  3492. check_cflags -std=c99
  3493. check_cppflags -D_FILE_OFFSET_BITS=64
  3494. check_cppflags -D_LARGEFILE_SOURCE
  3495. add_host_cppflags -D_ISOC99_SOURCE
  3496. check_host_cflags -std=c99
  3497. check_host_cflags -Wall
  3498. check_host_cflags $host_cflags_speed
  3499. check_64bit(){
  3500. arch32=$1
  3501. arch64=$2
  3502. expr=$3
  3503. check_code cc "" "int test[2*($expr) - 1]" &&
  3504. subarch=$arch64 || subarch=$arch32
  3505. }
  3506. case "$arch" in
  3507. aarch64|alpha|ia64)
  3508. spic=$shared
  3509. ;;
  3510. mips)
  3511. check_64bit mips mips64 '_MIPS_SIM > 1'
  3512. spic=$shared
  3513. ;;
  3514. parisc)
  3515. check_64bit parisc parisc64 'sizeof(void *) > 4'
  3516. spic=$shared
  3517. ;;
  3518. ppc)
  3519. check_64bit ppc ppc64 'sizeof(void *) > 4'
  3520. spic=$shared
  3521. ;;
  3522. s390)
  3523. check_64bit s390 s390x 'sizeof(void *) > 4'
  3524. spic=$shared
  3525. ;;
  3526. sparc)
  3527. check_64bit sparc sparc64 'sizeof(void *) > 4'
  3528. spic=$shared
  3529. ;;
  3530. x86)
  3531. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  3532. if test "$subarch" = "x86_64"; then
  3533. spic=$shared
  3534. fi
  3535. ;;
  3536. esac
  3537. enable $subarch
  3538. enabled spic && enable_weak pic
  3539. enabled x86_64 && objformat=elf64 || objformat="elf32"
  3540. # OS specific
  3541. case $target_os in
  3542. aix)
  3543. SHFLAGS=-shared
  3544. add_cppflags '-I\$(SRC_PATH)/compat/aix'
  3545. enabled shared && add_ldflags -Wl,-brtl
  3546. ;;
  3547. android)
  3548. disable symver
  3549. enable section_data_rel_ro
  3550. SLIB_INSTALL_NAME='$(SLIBNAME)'
  3551. SLIB_INSTALL_LINKS=
  3552. SHFLAGS='-shared -Wl,-soname,$(SLIBNAME)'
  3553. ;;
  3554. haiku)
  3555. prefix_default="/boot/common"
  3556. network_extralibs="-lnetwork"
  3557. host_extralibs=
  3558. ;;
  3559. sunos)
  3560. SHFLAGS='-shared -Wl,-h,$$(@F)'
  3561. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  3562. network_extralibs="-lsocket -lnsl"
  3563. # When using suncc to build, the Solaris linker will mark
  3564. # an executable with each instruction set encountered by
  3565. # the Solaris assembler. As our libraries contain their own
  3566. # guards for processor-specific code, instead suppress
  3567. # generation of the HWCAPS ELF section on Solaris x86 only.
  3568. enabled_all suncc x86 &&
  3569. echo "hwcap_1 = OVERRIDE;" > mapfile &&
  3570. add_ldflags -Wl,-M,mapfile
  3571. nm_default='nm -P -g'
  3572. version_script='-M'
  3573. VERSION_SCRIPT_POSTPROCESS_CMD='perl $(SRC_PATH)/compat/solaris/make_sunver.pl - $(OBJS)'
  3574. ;;
  3575. netbsd)
  3576. disable symver
  3577. oss_indev_extralibs="-lossaudio"
  3578. oss_outdev_extralibs="-lossaudio"
  3579. ;;
  3580. openbsd|bitrig)
  3581. disable symver
  3582. SHFLAGS='-shared'
  3583. SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
  3584. SLIB_INSTALL_LINKS=
  3585. oss_indev_extralibs="-lossaudio"
  3586. oss_outdev_extralibs="-lossaudio"
  3587. ;;
  3588. dragonfly)
  3589. disable symver
  3590. ;;
  3591. freebsd)
  3592. ;;
  3593. bsd/os)
  3594. add_extralibs -lpoll -lgnugetopt
  3595. ;;
  3596. darwin)
  3597. enabled ppc && add_asflags -force_cpusubtype_ALL
  3598. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  3599. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  3600. add_ldflags -Wl,-dynamic,-search_paths_first
  3601. check_cflags -Werror=partial-availability
  3602. SLIBSUF=".dylib"
  3603. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)'
  3604. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)'
  3605. enabled x86_64 && objformat="macho64" || objformat="macho32"
  3606. enabled_any pic shared ||
  3607. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  3608. check_header dispatch/dispatch.h &&
  3609. add_cppflags '-I\$(SRC_PATH)/compat/dispatch_semaphore'
  3610. ;;
  3611. msys*)
  3612. die "Native MSYS builds are discouraged, please use the MINGW environment."
  3613. ;;
  3614. mingw32*|mingw64*)
  3615. if test $target_os = "mingw32ce"; then
  3616. disable network
  3617. else
  3618. target_os=mingw32
  3619. fi
  3620. LIBTARGET=i386
  3621. if enabled x86_64; then
  3622. LIBTARGET="i386:x86-64"
  3623. elif enabled arm; then
  3624. LIBTARGET=arm-wince
  3625. fi
  3626. check_ldflags -Wl,--nxcompat
  3627. check_ldflags -Wl,--dynamicbase
  3628. shlibdir_default="$bindir_default"
  3629. SLIBPREF=""
  3630. SLIBSUF=".dll"
  3631. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3632. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
  3633. SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  3634. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3635. SLIB_INSTALL_LINKS=
  3636. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3637. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3638. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  3639. enabled x86_64 && objformat="win64" || objformat="win32"
  3640. dlltool="${cross_prefix}dlltool"
  3641. ranlib=:
  3642. enable dos_paths
  3643. ;;
  3644. win32|win64)
  3645. disable symver
  3646. if enabled shared; then
  3647. # Link to the import library instead of the normal static library
  3648. # for shared libs.
  3649. LD_LIB='%.lib'
  3650. # Cannot build both shared and static libs with MSVC or icl.
  3651. disable static
  3652. fi
  3653. shlibdir_default="$bindir_default"
  3654. SLIBPREF=""
  3655. SLIBSUF=".dll"
  3656. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3657. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
  3658. SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  3659. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3660. SLIB_INSTALL_LINKS=
  3661. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3662. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3663. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  3664. enabled x86_64 && objformat="win64" || objformat="win32"
  3665. ranlib=:
  3666. enable dos_paths
  3667. ;;
  3668. cygwin*)
  3669. target_os=cygwin
  3670. shlibdir_default="$bindir_default"
  3671. SLIBPREF="cyg"
  3672. SLIBSUF=".dll"
  3673. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3674. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
  3675. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3676. SLIB_INSTALL_LINKS=
  3677. SLIB_INSTALL_EXTRA_LIB='lib$(NAME).dll.a'
  3678. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(NAME).dll.a'
  3679. enabled x86_64 && objformat="win64" || objformat="win32"
  3680. enable dos_paths
  3681. ;;
  3682. *-dos|freedos|opendos)
  3683. network_extralibs="-lsocket"
  3684. objformat="coff"
  3685. enable dos_paths
  3686. add_cppflags -U__STRICT_ANSI__
  3687. ;;
  3688. linux)
  3689. enable dv1394
  3690. enable section_data_rel_ro
  3691. ;;
  3692. irix*)
  3693. target_os=irix
  3694. ranlib="echo ignoring ranlib"
  3695. ;;
  3696. os/2*)
  3697. ln_s="cp -f"
  3698. objformat="aout"
  3699. add_cppflags -D_GNU_SOURCE
  3700. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zhigh-mem -Zmap
  3701. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  3702. LIBSUF="_s.a"
  3703. SLIBPREF=""
  3704. SLIBSUF=".dll"
  3705. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3706. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  3707. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  3708. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  3709. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  3710. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  3711. emxexp $(OBJS) >> $(SUBDIR)$(NAME).def'
  3712. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  3713. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  3714. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  3715. enable dos_paths
  3716. ;;
  3717. gnu/kfreebsd)
  3718. add_cppflags -D_BSD_SOURCE
  3719. ;;
  3720. gnu)
  3721. ;;
  3722. qnx)
  3723. add_cppflags -D_QNX_SOURCE
  3724. network_extralibs="-lsocket"
  3725. ;;
  3726. symbian)
  3727. SLIBSUF=".dll"
  3728. enable dos_paths
  3729. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  3730. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  3731. add_ldflags -Wl,--target1-abs,--no-undefined \
  3732. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  3733. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  3734. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  3735. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  3736. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  3737. ;;
  3738. osf1)
  3739. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  3740. ;;
  3741. minix)
  3742. ;;
  3743. none)
  3744. ;;
  3745. *)
  3746. die "Unknown OS '$target_os'."
  3747. ;;
  3748. esac
  3749. # determine libc flavour
  3750. probe_libc(){
  3751. pfx=$1
  3752. pfx_no_=${pfx%_}
  3753. # uclibc defines __GLIBC__, so it needs to be checked before glibc.
  3754. if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
  3755. eval ${pfx}libc_type=uclibc
  3756. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3757. elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
  3758. eval ${pfx}libc_type=glibc
  3759. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3760. # MinGW headers can be installed on Cygwin, so check for newlib first.
  3761. elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  3762. eval ${pfx}libc_type=newlib
  3763. add_${pfx}cppflags -U__STRICT_ANSI__ -D_XOPEN_SOURCE=600
  3764. # MinGW64 is backwards compatible with MinGW32, so check for it first.
  3765. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
  3766. eval ${pfx}libc_type=mingw64
  3767. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3768. eval test \$${pfx_no_}cc_type = "gcc" &&
  3769. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3770. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
  3771. check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
  3772. eval ${pfx}libc_type=mingw32
  3773. check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
  3774. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  3775. die "ERROR: MinGW32 runtime version must be >= 3.15."
  3776. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3777. check_${pfx}cpp_condition _mingw.h "__MSVCRT_VERSION__ < 0x0700__" &&
  3778. add_${pfx}cppflags -D__MSVCRT_VERSION__=0x0700
  3779. eval test \$${pfx_no_}cc_type = "gcc" &&
  3780. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3781. elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
  3782. eval ${pfx}libc_type=msvcrt
  3783. if check_${pfx}cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION < 14"; then
  3784. if [ "$pfx" = host_ ]; then
  3785. add_host_cppflags -Dsnprintf=_snprintf
  3786. else
  3787. add_compat strtod.o strtod=avpriv_strtod
  3788. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  3789. _snprintf=avpriv_snprintf \
  3790. vsnprintf=avpriv_vsnprintf
  3791. fi
  3792. fi
  3793. add_${pfx}cppflags -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS
  3794. # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
  3795. # 0x601 by default unless something else is set by the user.
  3796. # This can easily lead to us detecting functions only present
  3797. # in such new versions and producing binaries requiring windows 7.0.
  3798. # Therefore explicitly set the default to XP unless the user has
  3799. # set something else on the command line.
  3800. # Don't do this if WINAPI_FAMILY is set and is set to a non-desktop
  3801. # family. For these cases, configure is free to use any functions
  3802. # found in the SDK headers by default. (Alternatively, we could force
  3803. # _WIN32_WINNT to 0x0602 in that case.)
  3804. check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
  3805. { check_${pfx}cpp <<EOF && add_${pfx}cppflags -D_WIN32_WINNT=0x0502; }
  3806. #ifdef WINAPI_FAMILY
  3807. #include <winapifamily.h>
  3808. #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
  3809. #error not desktop
  3810. #endif
  3811. #endif
  3812. EOF
  3813. if [ "$pfx" = "" ]; then
  3814. check_func strtoll || add_cflags -Dstrtoll=_strtoi64
  3815. fi
  3816. elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
  3817. eval ${pfx}libc_type=klibc
  3818. elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
  3819. eval ${pfx}libc_type=bionic
  3820. elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
  3821. eval ${pfx}libc_type=solaris
  3822. add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  3823. else
  3824. eval ${pfx}libc_type=default
  3825. add_${pfx}cppflags -D_DEFAULT_SOURCE
  3826. fi
  3827. }
  3828. probe_libc
  3829. test -n "$libc_type" && enable libc_$libc_type
  3830. probe_libc host_
  3831. test -n "$host_libc_type" && enable host_libc_$host_libc_type
  3832. # hacks for compiler/libc/os combinations
  3833. case $libc_type in
  3834. bionic)
  3835. add_compat strtod.o strtod=avpriv_strtod
  3836. ;;
  3837. glibc)
  3838. if enabled tms470; then
  3839. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  3840. add_cppflags -D__USER_LABEL_PREFIX__=
  3841. add_cppflags -D__builtin_memset=memset
  3842. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  3843. add_cflags -pds=48 # incompatible redefinition of macro
  3844. elif enabled ccc; then
  3845. add_ldflags -Wl,-z,now # calls to libots crash without this
  3846. fi
  3847. ;;
  3848. esac
  3849. check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
  3850. add_cppflags '-I\$(SRC_PATH)/compat/float'
  3851. esc(){
  3852. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  3853. }
  3854. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" > avbuild/config.fate
  3855. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
  3856. set_default $PATHS_LIST
  3857. set_default nm
  3858. # we need to build at least one lib type
  3859. if ! enabled_any static shared; then
  3860. cat <<EOF
  3861. At least one library type must be built.
  3862. Specify --enable-static to build the static libraries or --enable-shared to
  3863. build the shared libraries as well. To only build the shared libraries specify
  3864. --disable-static in addition to --enable-shared.
  3865. EOF
  3866. exit 1
  3867. fi
  3868. disabled optimizations || check_cflags -fomit-frame-pointer
  3869. enable_weak_pic() {
  3870. disabled pic && return
  3871. enable pic
  3872. add_cppflags -DPIC
  3873. case "$target_os" in
  3874. mingw*|cygwin*)
  3875. ;;
  3876. *)
  3877. add_cflags -fPIC
  3878. ;;
  3879. esac
  3880. add_asflags -fPIC
  3881. }
  3882. enabled pic && enable_weak_pic
  3883. check_cc <<EOF || die "Symbol mangling check failed."
  3884. int ff_extern;
  3885. EOF
  3886. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  3887. extern_prefix=${sym%%ff_extern*}
  3888. ! disabled inline_asm && check_inline_asm inline_asm '"" ::'
  3889. _restrict=
  3890. for restrict_keyword in restrict __restrict__ __restrict; do
  3891. check_cc <<EOF && _restrict=$restrict_keyword && break
  3892. void foo(char * $restrict_keyword p);
  3893. EOF
  3894. done
  3895. check_cc <<EOF && enable pragma_deprecated
  3896. void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
  3897. EOF
  3898. check_cc <<EOF && enable attribute_packed
  3899. struct { int x; } __attribute__((packed)) x;
  3900. EOF
  3901. check_cc <<EOF && enable attribute_may_alias
  3902. union { int x; } __attribute__((may_alias)) x;
  3903. EOF
  3904. check_cc <<EOF || die "endian test failed"
  3905. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  3906. EOF
  3907. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  3908. check_gas() {
  3909. log "check_gas using '$as' as AS"
  3910. # :vararg is used on aarch64, arm and ppc altivec
  3911. check_as <<EOF || return 1
  3912. .macro m n, y:vararg=0
  3913. \n: .int \y
  3914. .endm
  3915. m x
  3916. EOF
  3917. # .altmacro is only used in arm asm
  3918. ! enabled arm || check_as <<EOF || return 1
  3919. .altmacro
  3920. EOF
  3921. enable gnu_as
  3922. return 0
  3923. }
  3924. if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
  3925. nogas=:
  3926. enabled_any arm aarch64 && nogas=die
  3927. enabled_all ppc altivec && nogas=warn
  3928. as_noop=-v
  3929. case $as_type in
  3930. arm*) gaspp_as_type=armasm; as_noop=-h ;;
  3931. gcc) gaspp_as_type=gas ;;
  3932. *) gaspp_as_type=$as_type ;;
  3933. esac
  3934. [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
  3935. check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- $as $as_noop &&
  3936. gas="gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- $as"
  3937. if ! check_gas ; then
  3938. as=${gas:=$as}
  3939. check_gas || \
  3940. $nogas "GNU assembler not found, install/update gas-preprocessor"
  3941. fi
  3942. check_as <<EOF && enable as_func
  3943. .func test
  3944. .endfunc
  3945. EOF
  3946. fi
  3947. check_inline_asm inline_asm_labels '"1:\n"'
  3948. if enabled aarch64; then
  3949. enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
  3950. # internal assembler in clang 3.3 does not support this instruction
  3951. enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
  3952. enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
  3953. map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
  3954. elif enabled alpha; then
  3955. check_cflags -mieee
  3956. elif enabled arm; then
  3957. enabled msvc && check_cpp_condition stddef.h "defined _M_ARMT" && enable thumb
  3958. check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb
  3959. enabled thumb && check_cflags -mthumb || check_cflags -marm
  3960. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  3961. enable vfp_args
  3962. elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
  3963. enable vfp_args
  3964. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin ]; then
  3965. case "${cross_prefix:-$cc}" in
  3966. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  3967. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  3968. __asm__ (".eabi_attribute 28, 1");
  3969. int main(void) { return 0; }
  3970. EOF
  3971. esac
  3972. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  3973. fi
  3974. enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
  3975. enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
  3976. enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
  3977. enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
  3978. enabled vfp && check_insn vfp 'fadds s0, s0, s0'
  3979. enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
  3980. [ $target_os = linux ] || [ $target_os = android ] ||
  3981. map 'enabled_any ${v}_external ${v}_inline || disable $v' \
  3982. $ARCH_EXT_LIST_ARM
  3983. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  3984. check_as <<EOF && enable as_dn_directive
  3985. ra .dn d0.i16
  3986. .unreq ra
  3987. EOF
  3988. check_as <<EOF && enable as_fpu_directive
  3989. .fpu neon
  3990. EOF
  3991. # llvm's integrated assembler supports .object_arch from llvm 3.5
  3992. [ "$objformat" = elf32 ] || [ "$objformat" = elf64 ] &&
  3993. check_as <<EOF && enable as_object_arch
  3994. .object_arch armv4
  3995. EOF
  3996. [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
  3997. elif enabled mips; then
  3998. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  3999. # make sure that only an instruction set is enabled
  4000. disable mips64r6 mips32r6 mips64r2 mips32r2 mips64r1 mips32r1
  4001. if enabled mips64; then
  4002. check_inline_asm mips64r6 '"dlsa $0, $0, $0, 1"' ||
  4003. check_inline_asm mips64r2 '"dext $0, $0, 0, 1"' ||
  4004. check_inline_asm mips64r1 '"daddi $0, $0, 0"'
  4005. else
  4006. check_inline_asm mips32r6 '"aui $0, $0, 0"' ||
  4007. check_inline_asm mips32r2 '"ext $0, $0, 0, 1"' ||
  4008. check_inline_asm mips32r1 '"addi $0, $0, 0"'
  4009. fi
  4010. elif enabled parisc; then
  4011. if enabled gcc; then
  4012. case $($cc -dumpversion) in
  4013. 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
  4014. esac
  4015. fi
  4016. elif enabled ppc; then
  4017. enable local_aligned_8 local_aligned_16 local_aligned_32
  4018. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  4019. check_inline_asm ibm_asm '"add 0, 0, 0"'
  4020. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  4021. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  4022. # AltiVec flags: The FSF version of GCC differs from the Apple version
  4023. if enabled altivec; then
  4024. check_cflags -maltivec -mabi=altivec &&
  4025. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  4026. check_cflags -faltivec
  4027. # check if our compiler supports Motorola AltiVec C API
  4028. check_cc <<EOF || disable altivec
  4029. $inc_altivec_h
  4030. int main(void) {
  4031. vector signed int v1 = (vector signed int) { 0 };
  4032. vector signed int v2 = (vector signed int) { 1 };
  4033. v1 = vec_add(v1, v2);
  4034. return 0;
  4035. }
  4036. EOF
  4037. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  4038. fi
  4039. if enabled vsx; then
  4040. check_cflags -mvsx &&
  4041. check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
  4042. fi
  4043. if enabled power8; then
  4044. check_cpp_condition "altivec.h" "defined(_ARCH_PWR8)" || disable power8
  4045. fi
  4046. elif enabled x86; then
  4047. check_builtin rdtsc intrin.h "__rdtsc()"
  4048. check_builtin mm_empty mmintrin.h "_mm_empty()"
  4049. enable local_aligned_8 local_aligned_16 local_aligned_32
  4050. # check whether EBP is available on x86
  4051. # As 'i' is stored on the stack, this program will crash
  4052. # if the base pointer is used to access it because the
  4053. # base pointer is cleared in the inline assembly code.
  4054. check_exec_crash <<EOF && enable ebp_available
  4055. volatile int i=0;
  4056. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  4057. return i;
  4058. EOF
  4059. # check whether EBX is available on x86
  4060. check_inline_asm ebx_available '""::"b"(0)' &&
  4061. check_inline_asm ebx_available '"":::"%ebx"'
  4062. # check whether xmm clobbers are supported
  4063. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  4064. # check whether binutils is new enough to compile SSSE3/MMXEXT
  4065. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  4066. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  4067. probe_x86asm(){
  4068. x86asmexe_probe=$1
  4069. if check_cmd $x86asmexe_probe -v; then
  4070. x86asmexe=$x86asmexe_probe
  4071. x86asm_type=nasm
  4072. x86asm_debug="-g -F dwarf"
  4073. X86ASM_DEPFLAGS='-MD $(@:.o=.d)'
  4074. elif check_cmd $x86asmexe_probe --version; then
  4075. x86asmexe=$x86asmexe_probe
  4076. x86asm_type=yasm
  4077. x86asm_debug="-g dwarf2"
  4078. X86ASMDEP='$(DEPX86ASM) $(X86ASMFLAGS) -M $(X86ASM_O) $< > $(@:.o=.d)'
  4079. fi
  4080. }
  4081. if ! disabled_any asm mmx x86asm; then
  4082. for program in $x86asmexe nasm yasm; do
  4083. probe_x86asm $program
  4084. test -n "$x86asm_type" && break
  4085. done
  4086. X86ASMFLAGS="-f $objformat"
  4087. enabled pic && append X86ASMFLAGS "-DPIC"
  4088. test -n "$extern_prefix" && append X86ASMFLAGS "-DPREFIX"
  4089. case "$objformat" in
  4090. elf*) enabled debug && append X86ASMFLAGS $x86asm_debug ;;
  4091. esac
  4092. check_x86asm "movbe ecx, [5]" && enable x86asm ||
  4093. die "nasm/yasm not found or too old. Use --disable-x86asm for a crippled build."
  4094. check_x86asm "vextracti128 xmm0, ymm0, 0" || disable avx2_external
  4095. check_x86asm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
  4096. check_x86asm "vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external
  4097. check_x86asm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  4098. check_x86asm "CPU amdnop" || disable cpunop
  4099. fi
  4100. case "$cpu" in
  4101. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  4102. disable fast_clz
  4103. ;;
  4104. esac
  4105. fi
  4106. check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
  4107. check_ldflags -Wl,--as-needed
  4108. if ! disabled network; then
  4109. check_func getaddrinfo $network_extralibs
  4110. check_func inet_aton $network_extralibs
  4111. check_type netdb.h "struct addrinfo"
  4112. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  4113. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  4114. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  4115. check_type poll.h "struct pollfd"
  4116. check_type netinet/sctp.h "struct sctp_event_subscribe"
  4117. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  4118. check_type netinet/in.h "struct sockaddr_in6"
  4119. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  4120. check_type "sys/types.h sys/socket.h" socklen_t
  4121. # Prefer arpa/inet.h over winsock2
  4122. if check_header arpa/inet.h ; then
  4123. check_func closesocket
  4124. elif check_header winsock2.h ; then
  4125. check_func_headers winsock2.h closesocket -lws2 &&
  4126. network_extralibs="-lws2" ||
  4127. { check_func_headers winsock2.h closesocket -lws2_32 &&
  4128. network_extralibs="-lws2_32"; } || disable winsock2_h network
  4129. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  4130. check_type ws2tcpip.h socklen_t
  4131. check_type ws2tcpip.h "struct addrinfo"
  4132. check_type ws2tcpip.h "struct group_source_req"
  4133. check_type ws2tcpip.h "struct ip_mreq_source"
  4134. check_type ws2tcpip.h "struct ipv6_mreq"
  4135. check_type winsock2.h "struct pollfd"
  4136. check_struct winsock2.h "struct sockaddr" sa_len
  4137. check_type ws2tcpip.h "struct sockaddr_in6"
  4138. check_type ws2tcpip.h "struct sockaddr_storage"
  4139. else
  4140. disable network
  4141. fi
  4142. fi
  4143. check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
  4144. check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
  4145. check_builtin MemoryBarrier windows.h "MemoryBarrier()"
  4146. check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
  4147. case "$custom_allocator" in
  4148. jemalloc)
  4149. # jemalloc by default does not use a prefix
  4150. require libjemalloc jemalloc/jemalloc.h malloc -ljemalloc
  4151. ;;
  4152. tcmalloc)
  4153. require_pkg_config libtcmalloc libtcmalloc gperftools/tcmalloc.h tc_malloc
  4154. malloc_prefix=tc_
  4155. ;;
  4156. esac
  4157. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  4158. check_func ${malloc_prefix}memalign && enable memalign
  4159. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  4160. check_cpp_condition unistd.h "defined(_POSIX_MONOTONIC_CLOCK)" &&
  4161. { check_lib clock_gettime time.h clock_gettime ||
  4162. check_lib clock_gettime time.h clock_gettime -lrt; }
  4163. check_func fcntl
  4164. check_func fork
  4165. check_func gethrtime
  4166. check_func getopt
  4167. check_func getrusage
  4168. check_func gettimeofday
  4169. check_func gmtime_r
  4170. check_func isatty
  4171. check_func localtime_r
  4172. check_func mach_absolute_time
  4173. check_func mkstemp
  4174. check_func mmap
  4175. check_func mprotect
  4176. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  4177. check_func_headers time.h nanosleep || check_lib nanosleep time.h nanosleep -lrt
  4178. check_func sched_getaffinity
  4179. check_func setrlimit
  4180. check_func strerror_r
  4181. check_func sysconf
  4182. check_func sysctl
  4183. check_func usleep
  4184. check_func_headers io.h setmode
  4185. check_func_headers stdlib.h getenv
  4186. check_func_headers windows.h GetProcessAffinityMask
  4187. check_func_headers windows.h GetProcessTimes
  4188. check_func_headers windows.h GetSystemTimeAsFileTime
  4189. check_func_headers windows.h LoadLibrary
  4190. check_func_headers windows.h MapViewOfFile
  4191. check_func_headers windows.h SetConsoleTextAttribute
  4192. check_func_headers windows.h Sleep
  4193. check_func_headers windows.h VirtualAlloc
  4194. check_struct windows.h "CONDITION_VARIABLE" Ptr
  4195. check_header d3d11.h
  4196. check_header direct.h
  4197. check_header dlfcn.h
  4198. check_header dxva.h
  4199. check_header dxva2api.h
  4200. check_header io.h
  4201. check_header mach/mach_time.h
  4202. check_header malloc.h
  4203. check_header poll.h
  4204. check_header sys/mman.h
  4205. check_header sys/param.h
  4206. check_header sys/resource.h
  4207. check_header sys/select.h
  4208. check_header sys/time.h
  4209. check_header sys/un.h
  4210. check_header unistd.h
  4211. check_header valgrind/valgrind.h
  4212. check_header VideoDecodeAcceleration/VDADecoder.h
  4213. check_header windows.h
  4214. # it seems there are versions of clang in some distros that try to use the
  4215. # gcc headers, which explodes for stdatomic
  4216. # so we also check that atomics actually work here
  4217. check_builtin stdatomic_h stdatomic.h "atomic_int foo; atomic_store(&foo, 0)"
  4218. check_lib shell32 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  4219. check_lib wincrypt "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  4220. check_lib psapi "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  4221. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  4222. check_type "windows.h dxva.h" "DXVA_PicParams_HEVC" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
  4223. check_type "windows.h d3d11.h" "ID3D11VideoDecoder"
  4224. check_type "d3d9.h dxva2api.h" DXVA2_ConfigPictureDecode -D_WIN32_WINNT=0x0602
  4225. check_type "va/va.h va/va_dec_hevc.h" "VAPictureParameterBufferHEVC"
  4226. check_type "va/va.h va/va_dec_vp8.h" "VAPictureParameterBufferVP8"
  4227. check_type "va/va.h va/va_vpp.h" "VAProcPipelineParameterBuffer"
  4228. check_type "va/va.h va/va_enc_h264.h" "VAEncPictureParameterBufferH264"
  4229. check_type "va/va.h va/va_enc_hevc.h" "VAEncPictureParameterBufferHEVC"
  4230. check_type "va/va.h va/va_enc_jpeg.h" "VAEncPictureParameterBufferJPEG"
  4231. check_type "va/va.h va/va_enc_mpeg2.h" "VAEncPictureParameterBufferMPEG2"
  4232. check_type "va/va.h va/va_enc_vp8.h" "VAEncPictureParameterBufferVP8"
  4233. check_type "va/va.h va/va_enc_vp9.h" "VAEncPictureParameterBufferVP9"
  4234. check_type "vdpau/vdpau.h" "VdpPictureInfoHEVC"
  4235. if ! disabled w32threads && ! enabled pthreads; then
  4236. check_lib w32threads "windows.h process.h" _beginthreadex
  4237. fi
  4238. # check for some common methods of building with pthread support
  4239. # do this before the optional library checks as some of them require pthreads
  4240. if ! disabled pthreads && ! enabled w32threads; then
  4241. if check_lib pthreads pthread.h pthread_join -pthread; then
  4242. add_cflags -pthread
  4243. elif check_lib pthreads pthread.h pthread_join -pthreads; then
  4244. add_cflags -pthreads
  4245. elif check_lib pthreads pthread.h pthread_join -lpthreadGC2; then
  4246. :
  4247. elif check_lib pthreads pthread.h pthread_join -lpthread; then
  4248. :
  4249. elif check_func pthread_join; then
  4250. enable pthreads
  4251. fi
  4252. fi
  4253. enabled pthreads &&
  4254. check_builtin sem_timedwait semaphore.h "sem_t *s; sem_init(s,0,0); sem_timedwait(s,0); sem_destroy(s)" $pthreads_extralibs
  4255. disabled zlib || check_lib zlib zlib.h zlibVersion -lz
  4256. disabled bzlib || check_lib bzlib bzlib.h BZ2_bzlibVersion -lbz2
  4257. # On some systems dynamic loading requires no extra linker flags
  4258. check_lib libdl dlfcn.h dlopen || check_lib libdl dlfcn.h dlopen -ldl
  4259. check_lib libm math.h sin -lm
  4260. atan2f_args=2
  4261. ldexpf_args=2
  4262. powf_args=2
  4263. for func in $MATH_FUNCS; do
  4264. eval check_mathfunc $func \${${func}_args:-1} $libm_extralibs
  4265. done
  4266. # these are off by default, so fail if requested and not available
  4267. enabled avisynth && require_header avisynth/avisynth_c.h
  4268. enabled avxsynth && require_header avxsynth/avxsynth_c.h
  4269. enabled cuda && require cuda cuda.h cuInit -lcuda
  4270. enabled frei0r && require_header frei0r.h
  4271. enabled gnutls && require_pkg_config gnutls gnutls gnutls/gnutls.h gnutls_global_init
  4272. enabled libbs2b && require_pkg_config libbs2b libbs2b bs2b.h bs2b_open
  4273. enabled libdc1394 && require_pkg_config libdc1394 libdc1394-2 dc1394/dc1394.h dc1394_new
  4274. enabled libdcadec && require libdcadec libdcadec/dca_context.h dcadec_context_create -ldcadec
  4275. enabled libfaac && require libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  4276. enabled libfdk_aac && require_pkg_config libfdk_aac fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen
  4277. enabled libfontconfig && require_pkg_config libfontconfig fontconfig "fontconfig/fontconfig.h" FcInit
  4278. enabled libfreetype && require_pkg_config libfreetype freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType
  4279. enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
  4280. check_lib libgsm "${gsm_hdr}" gsm_create -lgsm && break;
  4281. done || die "ERROR: libgsm not found"; }
  4282. enabled libhdcd && require_pkg_config libhdcd libhdcd "hdcd/hdcd_simple.h" hdcd_new
  4283. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  4284. enabled libkvazaar && require_pkg_config libkvazaar "kvazaar >= 0.8.1" kvazaar.h kvz_api_get
  4285. enabled libmfx && require_pkg_config libmfx libmfx "mfx/mfxvideo.h" MFXInit
  4286. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  4287. enabled libnpp && require libnpp npp.h nppGetLibVersion -lnppi -lnppc
  4288. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  4289. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  4290. enabled libopencv && require_pkg_config libopencv opencv opencv/cv.h cvCreateImageHeader
  4291. enabled libopenh264 && require_pkg_config libopenh264 openh264 wels/codec_api.h WelsGetCodecVersion
  4292. enabled libopenjpeg && { check_lib libopenjpeg openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
  4293. require_pkg_config libopenjpeg libopenjpeg1 openjpeg.h opj_version -DOPJ_STATIC; }
  4294. enabled libopus && require_pkg_config libopus opus opus_multistream.h opus_multistream_decoder_create
  4295. enabled libpulse && require_pkg_config libpulse libpulse-simple pulse/simple.h pa_simple_new
  4296. enabled librtmp && require_pkg_config librtmp librtmp librtmp/rtmp.h RTMP_Socket
  4297. enabled libschroedinger && require_pkg_config libschroedinger schroedinger-1.0 schroedinger/schro.h schro_init
  4298. enabled libsnappy && require libsnappy snappy-c.h snappy_compress -lsnappy
  4299. enabled libspeex && require_pkg_config libspeex speex speex/speex.h speex_decoder_init -lspeex
  4300. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  4301. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame
  4302. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  4303. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  4304. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  4305. enabled libvpx && require_pkg_config libvpx "vpx >= 1.3.0" vpx/vpx_codec.h vpx_codec_version &&
  4306. { enabled libvpx_vp8_decoder &&
  4307. check_pkg_config libvpx_vp8_decoder vpx "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx
  4308. enabled libvpx_vp8_encoder &&
  4309. check_pkg_config libvpx_vp8_encoder vpx "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx
  4310. enabled libvpx_vp9_decoder &&
  4311. check_pkg_config libvpx_vp9_decoder vpx "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp9_dx
  4312. enabled libvpx_vp9_encoder &&
  4313. check_pkg_config libvpx_vp9_encoder vpx "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp9_cx
  4314. disabled_all libvpx_vp8_decoder libvpx_vp9_decoder libvpx_vp8_encoder libvpx_vp9_encoder &&
  4315. die "libvpx enabled but no supported decoders/encoders found"
  4316. }
  4317. enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
  4318. enabled libwebp && require_pkg_config libwebp libwebp webp/encode.h WebPGetEncoderVersion
  4319. enabled libx264 && require_pkg_config libx264 x264 "stdint.h x264.h" x264_encoder_encode &&
  4320. require_cpp_condition x264.h "X264_BUILD >= 118" &&
  4321. { check_cpp_condition x264.h "X264_MPEG2" &&
  4322. enable libx262; }
  4323. enabled libx265 && require_pkg_config libx265 x265 x265.h x265_api_get &&
  4324. require_cpp_condition x265.h "X265_BUILD >= 57"
  4325. enabled libxavs && require libxavs "stdint.h xavs.h" xavs_encoder_encode -lxavs
  4326. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  4327. enabled mmal && { check_lib mmal interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ||
  4328. { ! enabled cross_compile &&
  4329. add_cflags -isystem/opt/vc/include/ -isystem/opt/vc/include/interface/vmcs_host/linux -isystem/opt/vc/include/interface/vcos/pthreads -fgnu89-inline &&
  4330. add_ldflags -L/opt/vc/lib/ &&
  4331. check_lib mmal interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host; } ||
  4332. die "ERROR: mmal not found" &&
  4333. check_func_headers interface/mmal/mmal.h "MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS"; }
  4334. enabled omx && require_header OMX_Core.h
  4335. enabled omx_rpi && { check_header OMX_Core.h ||
  4336. { ! enabled cross_compile && add_cflags -isystem/opt/vc/include/IL && check_header OMX_Core.h ; } ||
  4337. die "ERROR: OpenMAX IL headers not found"; } && enable omx
  4338. enabled openssl && { { check_pkg_config openssl openssl openssl/ssl.h OPENSSL_init_ssl ||
  4339. check_pkg_config openssl openssl openssl/ssl.h SSL_library_init; } ||
  4340. check_lib openssl openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  4341. check_lib openssl openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  4342. check_lib openssl openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  4343. die "ERROR: openssl not found"; }
  4344. enabled gnutls && check_lib gmp gmp.h mpz_export -lgmp
  4345. if enabled nvenc; then
  4346. require_header nvEncodeAPI.h
  4347. require_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 6"
  4348. fi
  4349. # SDL is "special" and adds some CFLAGS that should not pollute anything else.
  4350. if enabled avplay; then
  4351. CFLAGS_SAVE=$CFLAGS
  4352. check_pkg_config sdl "sdl >= 1.2.1 sdl < 1.3.0" SDL_events.h SDL_PollEvent &&
  4353. sdl_cflags=$pkg_cflags
  4354. CFLAGS=$CFLAGS_SAVE
  4355. fi
  4356. ! disabled pod2man && check_cmd pod2man --help && enable pod2man || disable pod2man
  4357. ! disabled texi2html && check_cmd texi2html -version && enable texi2html || disable texi2html
  4358. check_header linux/fb.h
  4359. check_header linux/videodev2.h
  4360. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  4361. check_header AVFoundation/AVFoundation.h
  4362. check_header sys/videoio.h
  4363. check_lib user32 "windows.h winuser.h" GetShellWindow -luser32
  4364. check_lib vfw32 "windows.h vfw.h" capCreateCaptureWindow -lvfw32
  4365. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  4366. # w32api 3.12 had it defined wrong
  4367. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  4368. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  4369. { check_header dev/bktr/ioctl_meteor.h &&
  4370. check_header dev/bktr/ioctl_bt848.h; } ||
  4371. { check_header machine/ioctl_meteor.h &&
  4372. check_header machine/ioctl_bt848.h; } ||
  4373. { check_header dev/video/meteor/ioctl_meteor.h &&
  4374. check_header dev/video/bktr/ioctl_bt848.h; } ||
  4375. check_header dev/ic/bt8xx.h
  4376. check_header sys/soundcard.h
  4377. check_header soundcard.h
  4378. enabled_any alsa_indev alsa_outdev &&
  4379. check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
  4380. enabled libjack &&
  4381. require_pkg_config libjack jack jack/jack.h jack_port_get_latency_range
  4382. enabled_any sndio_indev sndio_outdev && check_lib sndio sndio.h sio_open -lsndio
  4383. if enabled libcdio; then
  4384. check_lib libcdio "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  4385. check_lib libcdio "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  4386. die "ERROR: No usable libcdio/cdparanoia found"
  4387. fi
  4388. if enabled libxcb; then
  4389. require_pkg_config libxcb xcb xcb/xcb.h xcb_connect
  4390. require_pkg_config libxcb_shape xcb-shape xcb/shape.h xcb_shape_rectangles
  4391. disabled libxcb_shm ||
  4392. check_pkg_config libxcb_shm xcb-shm xcb/shm.h xcb_shm_attach
  4393. disabled libxcb_xfixes ||
  4394. check_pkg_config libxcb_xfixes xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image
  4395. fi
  4396. enabled dxva2 &&
  4397. check_lib dxva2_lib windows.h CoTaskMemFree -lole32
  4398. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  4399. enabled vaapi &&
  4400. check_code cc "va/va.h" "vaCreateSurfaces(0, 0, 0, 0, 0, 0, 0, 0)" ||
  4401. disable vaapi
  4402. enabled vaapi &&
  4403. check_lib vaapi_drm "va/va.h va/va_drm.h" vaGetDisplayDRM -lva -lva-drm
  4404. enabled vaapi &&
  4405. check_lib vaapi_x11 "va/va.h va/va_x11.h" vaGetDisplay -lva -lva-x11 -lX11
  4406. enabled vdpau &&
  4407. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  4408. disable vdpau
  4409. enabled vdpau &&
  4410. check_lib vdpau_x11 "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau -lX11
  4411. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  4412. # add some useful compiler flags if supported
  4413. check_cflags -Wdeclaration-after-statement
  4414. check_cflags -Wall
  4415. check_cflags -Wdisabled-optimization
  4416. check_cflags -Wpointer-arith
  4417. check_cflags -Wredundant-decls
  4418. check_cflags -Wwrite-strings
  4419. check_cflags -Wtype-limits
  4420. check_cflags -Wundef
  4421. check_cflags -Wmissing-prototypes
  4422. check_cflags -Wstrict-prototypes
  4423. if enabled extra_warnings; then
  4424. check_cflags -Wcast-qual
  4425. check_cflags -Wextra
  4426. check_cflags -Wpedantic
  4427. fi
  4428. check_disable_warning(){
  4429. warning_flag=-W${1#-Wno-}
  4430. test_cflags $warning_flag && add_cflags $1
  4431. }
  4432. check_disable_warning -Wno-parentheses
  4433. check_disable_warning -Wno-switch
  4434. check_disable_warning -Wno-format-zero-length
  4435. check_disable_warning -Wno-pointer-sign
  4436. check_disable_warning_headers(){
  4437. warning_flag=-W${1#-Wno-}
  4438. test_cflags $warning_flag && add_cflags_headers $1
  4439. }
  4440. check_disable_warning_headers -Wno-deprecated-declarations
  4441. check_disable_warning_headers -Wno-unused-variable
  4442. check_objcflags -fobjc-arc && enable objc_arc
  4443. check_cc <<EOF && enable blocks_extension
  4444. void (^block)(void);
  4445. EOF
  4446. # add some linker flags
  4447. check_ldflags -Wl,--warn-common
  4448. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  4449. enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
  4450. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  4451. # add some strip flags
  4452. # -wN '..@*' is more selective than -x, but not available everywhere.
  4453. check_stripflags -wN \'..@*\' || check_stripflags -x || strip='true'
  4454. enabled neon_clobber_test &&
  4455. check_ldflags -Wl,--wrap,avcodec_open2 \
  4456. -Wl,--wrap,avcodec_decode_audio4 \
  4457. -Wl,--wrap,avcodec_decode_video2 \
  4458. -Wl,--wrap,avcodec_decode_subtitle2 \
  4459. -Wl,--wrap,avcodec_encode_audio2 \
  4460. -Wl,--wrap,avcodec_encode_video2 \
  4461. -Wl,--wrap,avcodec_encode_subtitle \
  4462. -Wl,--wrap,avcodec_send_packet \
  4463. -Wl,--wrap,avcodec_receive_packet \
  4464. -Wl,--wrap,avcodec_send_frame \
  4465. -Wl,--wrap,avcodec_receive_frame \
  4466. -Wl,--wrap,avresample_convert ||
  4467. disable neon_clobber_test
  4468. enabled xmm_clobber_test &&
  4469. check_ldflags -Wl,--wrap,avcodec_open2 \
  4470. -Wl,--wrap,avcodec_decode_audio4 \
  4471. -Wl,--wrap,avcodec_decode_video2 \
  4472. -Wl,--wrap,avcodec_decode_subtitle2 \
  4473. -Wl,--wrap,avcodec_encode_audio2 \
  4474. -Wl,--wrap,avcodec_encode_video2 \
  4475. -Wl,--wrap,avcodec_encode_subtitle \
  4476. -Wl,--wrap,avcodec_send_packet \
  4477. -Wl,--wrap,avcodec_receive_packet \
  4478. -Wl,--wrap,avcodec_send_frame \
  4479. -Wl,--wrap,avcodec_receive_frame \
  4480. -Wl,--wrap,avresample_convert \
  4481. -Wl,--wrap,sws_scale ||
  4482. disable xmm_clobber_test
  4483. check_ld <<EOF && enable proper_dce
  4484. extern const int array[512];
  4485. static inline int func(void) { return array[0]; }
  4486. int main(void) { return 0; }
  4487. EOF
  4488. if enabled proper_dce; then
  4489. echo "X { local: *; };" > $TMPV
  4490. if test_ldflags -Wl,${version_script},$TMPV; then
  4491. append SHFLAGS '-Wl,${version_script},\$(SUBDIR)lib\$(NAME).ver'
  4492. check_cc <<EOF && enable symver_asm_label
  4493. void ff_foo(void) __asm__ ("av_foo@VERSION");
  4494. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  4495. EOF
  4496. check_cc <<EOF && enable symver_gnu_asm
  4497. __asm__(".symver ff_foo,av_foo@VERSION");
  4498. void ff_foo(void) {}
  4499. EOF
  4500. fi
  4501. fi
  4502. if [ -z "$optflags" ]; then
  4503. if enabled small; then
  4504. optflags=$cflags_size
  4505. elif enabled optimizations; then
  4506. optflags=$cflags_speed
  4507. else
  4508. optflags=$cflags_noopt
  4509. fi
  4510. fi
  4511. check_optflags(){
  4512. check_cflags "$@"
  4513. enabled lto && check_ldflags "$@"
  4514. }
  4515. check_optflags $optflags
  4516. check_optflags -fno-math-errno
  4517. check_optflags -fno-signed-zeros
  4518. if enabled lto; then
  4519. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  4520. check_cflags -flto
  4521. check_ldflags -flto $cpuflags
  4522. fi
  4523. if enabled icc; then
  4524. # Just warnings, no remarks
  4525. check_cflags -w1
  4526. # -wd: Disable following warnings
  4527. # 144, 167, 556: -Wno-pointer-sign
  4528. # 1292: attribute "foo" ignored
  4529. # 1419: external declaration in primary source file
  4530. # 10006: ignoring unknown option -fno-signed-zeros
  4531. # 10148: ignoring unknown option -Wno-parentheses
  4532. # 10156: ignoring option '-W'; no argument required
  4533. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  4534. # 11030: Warning unknown option --as-needed
  4535. # 10156: ignoring option '-export'; no argument required
  4536. check_ldflags -wd10156,11030
  4537. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  4538. enable ebp_available
  4539. if enabled x86_32; then
  4540. icc_version=$($cc -dumpversion)
  4541. test ${icc_version%%.*} -ge 11 &&
  4542. check_cflags -falign-stack=maintain-16-byte ||
  4543. disable aligned_stack
  4544. fi
  4545. elif enabled ccc; then
  4546. # disable some annoying warnings
  4547. add_cflags -msg_disable bitnotint
  4548. add_cflags -msg_disable mixfuncvoid
  4549. add_cflags -msg_disable nonstandcast
  4550. add_cflags -msg_disable unsupieee
  4551. elif enabled gcc; then
  4552. check_optflags -fno-tree-vectorize
  4553. check_cflags -Werror=implicit-function-declaration
  4554. check_cflags -Werror=missing-prototypes
  4555. check_cflags -Werror=return-type
  4556. check_cflags -Werror=declaration-after-statement
  4557. check_cflags -Werror=vla
  4558. check_cflags -Werror=format-security
  4559. check_cflags -fdiagnostics-color=auto
  4560. enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
  4561. elif enabled llvm_gcc; then
  4562. check_cflags -mllvm -stack-alignment=16
  4563. elif enabled clang; then
  4564. check_cflags -mllvm -stack-alignment=16
  4565. check_cflags -Qunused-arguments
  4566. check_cflags -Werror=implicit-function-declaration
  4567. check_cflags -Werror=missing-prototypes
  4568. check_cflags -Werror=return-type
  4569. elif enabled cparser; then
  4570. add_cflags -Wno-missing-variable-declarations
  4571. add_cflags -Wno-empty-statement
  4572. elif enabled armcc; then
  4573. add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
  4574. add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
  4575. # 2523: use of inline assembly is deprecated
  4576. add_cflags -W${armcc_opt},--diag_suppress=2523
  4577. add_cflags -W${armcc_opt},--diag_suppress=1207
  4578. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  4579. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  4580. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  4581. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  4582. elif enabled tms470; then
  4583. add_cflags -pds=824 -pds=837
  4584. disable inline_asm
  4585. elif enabled pathscale; then
  4586. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  4587. disable inline_asm
  4588. elif enabled_any msvc icl; then
  4589. enabled x86_32 && disable aligned_stack
  4590. enabled_all x86_32 debug && add_cflags -Oy-
  4591. enabled debug && add_ldflags -debug
  4592. enable pragma_deprecated
  4593. if enabled icl; then
  4594. # -Qansi-alias is basically -fstrict-aliasing, but does not work
  4595. # (correctly) on icl 13.x.
  4596. check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
  4597. add_cflags -Qansi-alias
  4598. # icl will pass the inline asm tests but inline asm is currently
  4599. # not supported (build will fail)
  4600. disable inline_asm
  4601. fi
  4602. # msvcrt10 x64 incorrectly enables log2, only msvcrt12 (MSVC 2013) onwards actually has log2.
  4603. check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
  4604. # The CRT headers contain __declspec(restrict) in a few places, but if redefining
  4605. # restrict, this might break. MSVC 2010 and 2012 fail with __declspec(__restrict)
  4606. # (as it ends up if the restrict redefine is done before including stdlib.h), while
  4607. # MSVC 2013 and newer can handle it fine.
  4608. # If this declspec fails, force including stdlib.h before the restrict redefinition
  4609. # happens in config.h.
  4610. if [ $_restrict != restrict ]; then
  4611. check_cc <<EOF || add_cflags -FIstdlib.h
  4612. __declspec($_restrict) void* foo(int);
  4613. EOF
  4614. fi
  4615. fi
  4616. for pfx in "" host_; do
  4617. varname=${pfx%_}cc_type
  4618. eval "type=\$$varname"
  4619. if [ "$type" = "msvc" ]; then
  4620. check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
  4621. static inline int foo(int a) { return a; }
  4622. EOF
  4623. fi
  4624. done
  4625. case $as_type in
  4626. clang)
  4627. add_asflags -Qunused-arguments
  4628. ;;
  4629. esac
  4630. case $ld_type in
  4631. clang)
  4632. check_ldflags -Qunused-arguments
  4633. ;;
  4634. esac
  4635. case $target_os in
  4636. osf1)
  4637. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  4638. ;;
  4639. esac
  4640. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  4641. check_deps $CONFIG_LIST \
  4642. $CONFIG_EXTRA \
  4643. $HAVE_LIST \
  4644. $ALL_COMPONENTS \
  4645. flatten_extralibs(){
  4646. unset nested_entries
  4647. list_name=$1
  4648. eval list=\$${1}
  4649. for entry in $list; do
  4650. entry_copy=$entry
  4651. resolve entry_copy
  4652. append nested_entries $(filter '*_extralibs' $entry_copy)
  4653. flat_entries=$(filter_out '*_extralibs' $entry_copy)
  4654. eval $entry="\$flat_entries"
  4655. done
  4656. append $list_name "$nested_entries"
  4657. resolve nested_entries
  4658. if test -n "$(filter '*_extralibs' $nested_entries)"; then
  4659. flatten_extralibs $list_name
  4660. fi
  4661. }
  4662. for linkunit in $LIBRARY_LIST; do
  4663. unset current_extralibs
  4664. eval components=\$$(toupper ${linkunit})_COMPONENTS_LIST
  4665. for comp in ${components}; do
  4666. enabled $comp || continue
  4667. comp_extralibs="${comp}_extralibs"
  4668. append current_extralibs $comp_extralibs
  4669. done
  4670. eval prepend ${linkunit}_extralibs $current_extralibs
  4671. done
  4672. for linkunit in $LIBRARY_LIST $PROGRAM_LIST $EXTRALIBS_LIST; do
  4673. flatten_extralibs ${linkunit}_extralibs
  4674. unique ${linkunit}_extralibs
  4675. resolve ${linkunit}_extralibs
  4676. eval ${linkunit}_extralibs=\$\(\$ldflags_filter \$${linkunit}_extralibs\)
  4677. done
  4678. map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
  4679. for thread in $THREADS_LIST; do
  4680. if enabled $thread; then
  4681. test -n "$thread_type" &&
  4682. die "ERROR: Only one thread type must be selected." ||
  4683. thread_type="$thread"
  4684. fi
  4685. done
  4686. if disabled stdatomic_h; then
  4687. if enabled atomics_gcc; then
  4688. add_cppflags '-I\$(SRC_PATH)/compat/atomics/gcc'
  4689. elif enabled atomics_win32; then
  4690. add_cppflags '-I\$(SRC_PATH)/compat/atomics/win32'
  4691. elif enabled atomics_suncc; then
  4692. add_cppflags '-I\$(SRC_PATH)/compat/atomics/suncc'
  4693. elif enabled pthreads; then
  4694. add_compat atomics/pthread/stdatomic.o
  4695. add_cppflags '-I\$(SRC_PATH)/compat/atomics/pthread'
  4696. else
  4697. enabled threads && die "Threading is enabled, but no atomics are available"
  4698. add_cppflags '-I\$(SRC_PATH)/compat/atomics/dummy'
  4699. fi
  4700. fi
  4701. enabled zlib && add_cppflags -DZLIB_CONST
  4702. # conditional library dependencies, in linking order
  4703. enabled movie_filter && prepend avfilter_deps "avformat avcodec"
  4704. enabled_any asyncts_filter resample_filter &&
  4705. prepend avfilter_deps "avresample"
  4706. enabled scale_filter && prepend avfilter_deps "swscale"
  4707. enabled opus_decoder && prepend avcodec_deps "avresample"
  4708. expand_deps(){
  4709. lib_deps=${1}_deps
  4710. eval "deps=\$$lib_deps"
  4711. append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
  4712. unique $lib_deps
  4713. }
  4714. map 'expand_deps $v' $LIBRARY_LIST
  4715. if test "$quiet" != "yes"; then
  4716. echo "install prefix $prefix"
  4717. echo "source path $source_path"
  4718. echo "C compiler $cc"
  4719. echo "C library $libc_type"
  4720. if test "$host_cc" != "$cc"; then
  4721. echo "host C compiler $host_cc"
  4722. echo "host C library $host_libc_type"
  4723. fi
  4724. echo "ARCH $arch ($cpu)"
  4725. if test "$extra_version" != ""; then
  4726. echo "version string suffix $extra_version"
  4727. fi
  4728. echo "big-endian ${bigendian-no}"
  4729. echo "runtime cpu detection ${runtime_cpudetect-no}"
  4730. if enabled x86; then
  4731. echo "standalone assembly ${x86asm-no}"
  4732. echo "x86 assembler ${x86asmexe}"
  4733. echo "MMX enabled ${mmx-no}"
  4734. echo "MMXEXT enabled ${mmxext-no}"
  4735. echo "3DNow! enabled ${amd3dnow-no}"
  4736. echo "3DNow! extended enabled ${amd3dnowext-no}"
  4737. echo "SSE enabled ${sse-no}"
  4738. echo "SSSE3 enabled ${ssse3-no}"
  4739. echo "AVX enabled ${avx-no}"
  4740. echo "XOP enabled ${xop-no}"
  4741. echo "FMA3 enabled ${fma3-no}"
  4742. echo "FMA4 enabled ${fma4-no}"
  4743. echo "i686 features enabled ${i686-no}"
  4744. echo "CMOV is fast ${fast_cmov-no}"
  4745. echo "EBX available ${ebx_available-no}"
  4746. echo "EBP available ${ebp_available-no}"
  4747. fi
  4748. if enabled aarch64; then
  4749. echo "NEON enabled ${neon-no}"
  4750. echo "VFP enabled ${vfp-no}"
  4751. fi
  4752. if enabled arm; then
  4753. echo "ARMv5TE enabled ${armv5te-no}"
  4754. echo "ARMv6 enabled ${armv6-no}"
  4755. echo "ARMv6T2 enabled ${armv6t2-no}"
  4756. echo "VFP enabled ${vfp-no}"
  4757. echo "NEON enabled ${neon-no}"
  4758. fi
  4759. if enabled ppc; then
  4760. echo "AltiVec enabled ${altivec-no}"
  4761. echo "VSX enabled ${vsx-no}"
  4762. echo "POWER8 enabled ${power8-no}"
  4763. echo "PPC 4xx optimizations ${ppc4xx-no}"
  4764. echo "dcbzl available ${dcbzl-no}"
  4765. fi
  4766. echo "debug symbols ${debug-no}"
  4767. echo "optimize for size ${small-no}"
  4768. echo "optimizations ${optimizations-no}"
  4769. echo "static ${static-no}"
  4770. echo "shared ${shared-no}"
  4771. echo "network support ${network-no}"
  4772. echo "threading support ${thread_type-no}"
  4773. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  4774. test -n "$random_seed" &&
  4775. echo "random seed ${random_seed}"
  4776. echo
  4777. echo "External libraries:"
  4778. print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
  4779. echo
  4780. echo "External libraries providing hardware acceleration:"
  4781. print_enabled '' $HWACCEL_LIBRARY_LIST | print_3_columns
  4782. echo
  4783. echo "Libraries:"
  4784. print_enabled '' $LIBRARY_LIST | print_3_columns
  4785. echo
  4786. echo "Programs:"
  4787. print_enabled '' $PROGRAM_LIST | print_3_columns
  4788. echo
  4789. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  4790. echo "Enabled ${type}s:"
  4791. eval list=\$$(toupper $type)_LIST
  4792. print_enabled '_*' $list | print_3_columns
  4793. echo
  4794. done
  4795. if test -n "$ignore_tests"; then
  4796. ignore_tests=$(echo $ignore_tests | tr ',' ' ')
  4797. echo "Ignored FATE tests:"
  4798. echo $ignore_tests | print_3_columns
  4799. echo
  4800. fi
  4801. license="LGPL version 2.1 or later"
  4802. if enabled nonfree; then
  4803. license="nonfree and unredistributable"
  4804. elif enabled gplv3; then
  4805. license="GPL version 3 or later"
  4806. elif enabled lgplv3; then
  4807. license="LGPL version 3 or later"
  4808. elif enabled gpl; then
  4809. license="GPL version 2 or later"
  4810. fi
  4811. echo "License: $license"
  4812. echo "Creating configuration files ..."
  4813. fi # test "$quiet" != "yes"
  4814. test -e Makefile || echo "include $source_path/Makefile" > Makefile
  4815. config_files="$TMPH avbuild/config.mak"
  4816. cat > avbuild/config.mak <<EOF
  4817. # Automatically generated by configure - do not modify!
  4818. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  4819. prefix=$prefix
  4820. LIBDIR=\$(DESTDIR)$libdir
  4821. SHLIBDIR=\$(DESTDIR)$shlibdir
  4822. INCDIR=\$(DESTDIR)$incdir
  4823. BINDIR=\$(DESTDIR)$bindir
  4824. DATADIR=\$(DESTDIR)$datadir
  4825. DOCDIR=\$(DESTDIR)$docdir
  4826. MANDIR=\$(DESTDIR)$mandir
  4827. SRC_PATH=$source_path
  4828. CC_IDENT=$cc_ident
  4829. ARCH=$arch
  4830. INTRINSICS=$intrinsics
  4831. CC=$cc
  4832. AS=$as
  4833. OBJCC=$objcc
  4834. LD=$ld
  4835. DEPCC=$dep_cc
  4836. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  4837. DEPAS=$as
  4838. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  4839. X86ASM=$x86asmexe
  4840. DEPX86ASM=$x86asmexe
  4841. DEPX86ASMFLAGS=\$(X86ASMFLAGS)
  4842. AR=$ar
  4843. ARFLAGS=$arflags
  4844. AR_O=$ar_o
  4845. RANLIB=$ranlib
  4846. STRIP=$strip
  4847. LN_S=$ln_s
  4848. CPPFLAGS=$CPPFLAGS
  4849. CFLAGS=$CFLAGS
  4850. OBJCFLAGS=$OBJCFLAGS
  4851. ASFLAGS=$ASFLAGS
  4852. AS_C=$AS_C
  4853. AS_O=$AS_O
  4854. OBJCC_C=$OBJCC_C
  4855. OBJCC_E=$OBJCC_E
  4856. OBJCC_O=$OBJCC_O
  4857. CC_C=$CC_C
  4858. CC_E=$CC_E
  4859. CC_O=$CC_O
  4860. X86ASM_O=$X86ASM_O
  4861. LD_O=$LD_O
  4862. LD_LIB=$LD_LIB
  4863. LD_PATH=$LD_PATH
  4864. DLLTOOL=$dlltool
  4865. LDFLAGS=$LDFLAGS
  4866. LDEXEFLAGS=$LDEXEFLAGS
  4867. SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
  4868. STRIPFLAGS=$STRIPFLAGS
  4869. X86ASMFLAGS=$X86ASMFLAGS
  4870. LIBPREF=$LIBPREF
  4871. LIBSUF=$LIBSUF
  4872. LIBNAME=$LIBNAME
  4873. SLIBPREF=$SLIBPREF
  4874. SLIBSUF=$SLIBSUF
  4875. EXESUF=$EXESUF
  4876. EXTRA_VERSION=$extra_version
  4877. CCDEP=$CCDEP
  4878. CCDEP_FLAGS=$CCDEP_FLAGS
  4879. ASDEP=$ASDEP
  4880. ASDEP_FLAGS=$ASDEP_FLAGS
  4881. X86ASMDEP=$X86ASMDEP
  4882. X86ASMDEP_FLAGS=$X86ASMDEP_FLAGS
  4883. CC_DEPFLAGS=$CC_DEPFLAGS
  4884. AS_DEPFLAGS=$AS_DEPFLAGS
  4885. X86ASM_DEPFLAGS=$X86ASM_DEPFLAGS
  4886. HOSTCC=$host_cc
  4887. HOSTLD=$host_ld
  4888. HOSTCFLAGS=$host_cflags
  4889. HOSTCPPFLAGS=$host_cppflags
  4890. HOSTEXESUF=$HOSTEXESUF
  4891. HOSTLDFLAGS=$host_ldflags
  4892. HOSTEXTRALIBS=$host_extralibs
  4893. DEPHOSTCC=$host_cc
  4894. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  4895. HOSTCCDEP=$HOSTCCDEP
  4896. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  4897. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  4898. HOSTCC_C=$HOSTCC_C
  4899. HOSTCC_O=$HOSTCC_O
  4900. HOSTLD_O=$HOSTLD_O
  4901. TARGET_EXEC=$target_exec $target_exec_args
  4902. TARGET_PATH=$target_path
  4903. TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
  4904. CFLAGS-avplay=$sdl_cflags
  4905. CFLAGS_HEADERS=$CFLAGS_HEADERS
  4906. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  4907. EXTRALIBS=$extralibs
  4908. COMPAT_OBJS=$compat_objs
  4909. INSTALL=install
  4910. LIBTARGET=${LIBTARGET}
  4911. SLIBNAME=${SLIBNAME}
  4912. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  4913. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  4914. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  4915. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  4916. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  4917. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  4918. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  4919. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  4920. VERSION_SCRIPT_POSTPROCESS_CMD=${VERSION_SCRIPT_POSTPROCESS_CMD}
  4921. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  4922. IGNORE_TESTS=$ignore_tests
  4923. EOF
  4924. map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> avbuild/config.mak' $LIBRARY_LIST
  4925. for entry in $LIBRARY_LIST $PROGRAM_LIST $EXTRALIBS_LIST; do
  4926. eval echo "EXTRALIBS-${entry}=\$${entry}_extralibs" >> avbuild/config.mak
  4927. done
  4928. cat > $TMPH <<EOF
  4929. /* Automatically generated by configure - do not modify! */
  4930. #ifndef LIBAV_CONFIG_H
  4931. #define LIBAV_CONFIG_H
  4932. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  4933. #define LIBAV_LICENSE "$(c_escape $license)"
  4934. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  4935. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  4936. #define restrict $_restrict
  4937. #define EXTERN_PREFIX "${extern_prefix}"
  4938. #define EXTERN_ASM ${extern_prefix}
  4939. #define SLIBSUF "$SLIBSUF"
  4940. EOF
  4941. test -n "$malloc_prefix" &&
  4942. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  4943. if enabled x86asm; then
  4944. append config_files $TMPASM
  4945. printf '' >$TMPASM
  4946. fi
  4947. enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
  4948. print_config ARCH_ "$config_files" $ARCH_LIST
  4949. print_config HAVE_ "$config_files" $HAVE_LIST
  4950. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  4951. $CONFIG_EXTRA \
  4952. $ALL_COMPONENTS \
  4953. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  4954. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  4955. cp_if_changed $TMPH config.h
  4956. touch avbuild/.config
  4957. enabled x86asm && cp_if_changed $TMPASM config.asm
  4958. cat > $TMPH <<EOF
  4959. /* Generated by ffconf */
  4960. #ifndef AVUTIL_AVCONFIG_H
  4961. #define AVUTIL_AVCONFIG_H
  4962. EOF
  4963. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  4964. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  4965. cp_if_changed $TMPH libavutil/avconfig.h
  4966. # generate the lists of enabled components
  4967. print_enabled_components(){
  4968. file=$1
  4969. struct_name=$2
  4970. name=$3
  4971. shift 3
  4972. echo "static const $struct_name * const $name[] = {" > $TMPH
  4973. for c in $*; do
  4974. enabled $c && printf " &ff_%s,\n" $c >> $TMPH
  4975. done
  4976. echo " NULL };" >> $TMPH
  4977. cp_if_changed $TMPH $file
  4978. }
  4979. print_enabled_components libavcodec/bsf_list.c AVBitStreamFilter bitstream_filters $BSF_LIST
  4980. print_enabled_components libavformat/protocol_list.c URLProtocol url_protocols $PROTOCOL_LIST
  4981. test -n "$WARNINGS" && printf "\n$WARNINGS"
  4982. # Settings for pkg-config files
  4983. cat > avbuild/config.sh <<EOF
  4984. # Automatically generated by configure - do not modify!
  4985. shared=$shared
  4986. prefix=$prefix
  4987. libdir=$libdir
  4988. incdir=$incdir
  4989. source_path=${source_path}
  4990. LIBPREF=${LIBPREF}
  4991. LIBSUF=${LIBSUF}
  4992. extralibs_avutil="$avutil_extralibs"
  4993. extralibs_avcodec="$avcodec_extralibs"
  4994. extralibs_avformat="$avformat_extralibs"
  4995. extralibs_avdevice="$avdevice_extralibs"
  4996. extralibs_avfilter="$avfilter_extralibs"
  4997. extralibs_avresample="$avresample_extralibs"
  4998. extralibs_swscale="$swscale_extralibs"
  4999. EOF
  5000. for lib in $LIBRARY_LIST; do
  5001. lib_deps="$(eval echo \$${lib}_deps)"
  5002. echo ${lib}_deps=\"$lib_deps\" >> avbuild/config.sh
  5003. done