3 # Libav configure script
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
10 # Prevent locale nonsense from breaking basic text processing.
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
18 echo "Trying shell $1"
19 type "$1" > /dev/null 2>&1 && exec "$@"
23 (: ${foo%%bar}) 2> /dev/null
26 (: ${foo?}) 2> /dev/null
29 if test "$E1" != 0 || test "$E2" = 0; then
30 echo "Broken shell detected. Trying alternatives."
32 if test "0$FF_CONF_EXEC" -lt 1; then
34 try_exec bash "$0" "$@"
36 if test "0$FF_CONF_EXEC" -lt 2; then
38 try_exec ksh "$0" "$@"
40 if test "0$FF_CONF_EXEC" -lt 3; then
42 try_exec /usr/xpg4/bin/sh "$0" "$@"
44 echo "No compatible shell script interpreter found."
45 echo "This configure script requires a POSIX-compatible shell"
46 echo "such as bash or ksh."
47 echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
48 echo "Instead, install a working POSIX-compatible shell."
49 echo "Disabling this configure test will create a broken Libav."
50 if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51 echo "This bash version ($BASH_VERSION) is broken on your platform."
52 echo "Upgrade to a later version if available."
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
65 --help print this message
66 --list-decoders show all available decoders
67 --list-encoders show all available encoders
68 --list-hwaccels show all available hardware accelerators
69 --list-demuxers show all available demuxers
70 --list-muxers show all available muxers
71 --list-parsers show all available parsers
72 --list-protocols show all available protocols
73 --list-bsfs show all available bitstream filters
74 --list-indevs show all available input devices
75 --list-outdevs show all available output devices
76 --list-filters show all available filters
79 --logfile=FILE log tests and output to FILE [config.log]
80 --disable-logging do not log configure debug information
81 --prefix=PREFIX install in PREFIX [$prefix]
82 --bindir=DIR install binaries in DIR [PREFIX/bin]
83 --datadir=DIR install data files in DIR [PREFIX/share/avconv]
84 --docdir=DIR install documentation in DIR [PREFIX/share/doc/libav]
85 --libdir=DIR install libs in DIR [PREFIX/lib]
86 --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
87 --incdir=DIR install includes in DIR [PREFIX/include]
88 --mandir=DIR install man page in DIR [PREFIX/share/man]
89 --enable-rpath use rpath when linking programs [USE WITH CARE]
92 --enable-gpl allow use of GPL code, the resulting libs
93 and binaries will be under GPL [no]
94 --enable-version3 upgrade (L)GPL to version 3 [no]
95 --enable-nonfree allow use of nonfree code, the resulting libs
96 and binaries will be unredistributable [no]
98 Configuration options:
99 --disable-static do not build static libraries [no]
100 --enable-shared build shared libraries [no]
101 --enable-small optimize for size instead of speed
102 --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
103 --enable-gray enable full grayscale support (slower color)
104 --disable-swscale-alpha disable alpha channel support in swscale
105 --disable-all disable building components, libraries and programs
108 --disable-programs do not build command line programs
109 --disable-avconv disable avconv build
110 --disable-avplay disable avplay build
111 --disable-avprobe disable avprobe build
112 --disable-avserver deprecated, does nothing
115 --disable-doc do not build documentation
116 --disable-avdevice disable libavdevice build
117 --disable-avcodec disable libavcodec build
118 --disable-avformat disable libavformat build
119 --disable-avutil disable libavutil build
120 --disable-swscale disable libswscale build
121 --disable-avfilter disable video filter support [no]
122 --disable-avresample disable libavresample build [no]
123 --disable-pthreads disable pthreads [auto]
124 --disable-w32threads disable Win32 threads [auto]
125 --disable-network disable network support [no]
126 --disable-dct disable DCT code
127 --disable-error-resilience disable error resilience code
128 --disable-lsp disable LSP code
129 --disable-lzo disable LZO decoder code
130 --disable-mdct disable MDCT code
131 --disable-rdft disable RDFT code
132 --disable-fft disable FFT code
133 --disable-faan disable floating point AAN (I)DCT code
135 Hardware accelerators:
136 --enable-d3d11va enable D3D11VA code
137 --enable-dxva2 enable DXVA2 code
138 --enable-vaapi enable VAAPI code
139 --enable-vda enable VDA code
140 --enable-vdpau enable VDPAU code
142 Individual component options:
143 --disable-everything disable all components listed below
144 --disable-encoder=NAME disable encoder NAME
145 --enable-encoder=NAME enable encoder NAME
146 --disable-encoders disable all encoders
147 --disable-decoder=NAME disable decoder NAME
148 --enable-decoder=NAME enable decoder NAME
149 --disable-decoders disable all decoders
150 --disable-hwaccel=NAME disable hwaccel NAME
151 --enable-hwaccel=NAME enable hwaccel NAME
152 --disable-hwaccels disable all hwaccels
153 --disable-muxer=NAME disable muxer NAME
154 --enable-muxer=NAME enable muxer NAME
155 --disable-muxers disable all muxers
156 --disable-demuxer=NAME disable demuxer NAME
157 --enable-demuxer=NAME enable demuxer NAME
158 --disable-demuxers disable all demuxers
159 --enable-parser=NAME enable parser NAME
160 --disable-parser=NAME disable parser NAME
161 --disable-parsers disable all parsers
162 --enable-bsf=NAME enable bitstream filter NAME
163 --disable-bsf=NAME disable bitstream filter NAME
164 --disable-bsfs disable all bitstream filters
165 --enable-protocol=NAME enable protocol NAME
166 --disable-protocol=NAME disable protocol NAME
167 --disable-protocols disable all protocols
168 --enable-indev=NAME enable input device NAME
169 --disable-indev=NAME disable input device NAME
170 --disable-indevs disable input devices
171 --enable-outdev=NAME enable output device NAME
172 --disable-outdev=NAME disable output device NAME
173 --disable-outdevs disable output devices
174 --disable-devices disable all devices
175 --enable-filter=NAME enable filter NAME
176 --disable-filter=NAME disable filter NAME
177 --disable-filters disable all filters
179 External library support:
180 --enable-avisynth enable reading of AviSynth script files [no]
181 --enable-bzlib enable bzlib [autodetect]
182 --enable-frei0r enable frei0r video filtering
183 --enable-gnutls enable gnutls [no]
184 --enable-libbs2b enable bs2b DSP library [no]
185 --enable-libcdio enable audio CD grabbing with libcdio
186 --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
188 --enable-libdcadec enable DCA decoding via libdcadec [no]
189 --enable-libfaac enable AAC encoding via libfaac [no]
190 --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
191 --enable-libfreetype enable libfreetype [no]
192 --enable-libgsm enable GSM de/encoding via libgsm [no]
193 --enable-libilbc enable iLBC de/encoding via libilbc [no]
194 --enable-libmfx enable HW acceleration through libmfx
195 --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
196 --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
197 --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
198 --enable-libopencv enable video filtering via libopencv [no]
199 --enable-libopenh264 enable H.264 encoding via OpenH264 [no]
200 --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
201 --enable-libopus enable Opus de/encoding via libopus [no]
202 --enable-libpulse enable Pulseaudio input via libpulse [no]
203 --enable-librtmp enable RTMP[E] support via librtmp [no]
204 --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
205 --enable-libsnappy enable Snappy compression [no]
206 --enable-libspeex enable Speex de/encoding via libspeex [no]
207 --enable-libtheora enable Theora encoding via libtheora [no]
208 --enable-libtwolame enable MP2 encoding via libtwolame [no]
209 --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
210 --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
211 --enable-libvorbis enable Vorbis encoding via libvorbis [no]
212 --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
213 --enable-libwavpack enable wavpack encoding via libwavpack [no]
214 --enable-libwebp enable WebP encoding via libwebp [no]
215 --enable-libx264 enable H.264 encoding via x264 [no]
216 --enable-libx265 enable HEVC encoding via x265 [no]
217 --enable-libxavs enable AVS encoding via xavs [no]
218 --enable-libxcb enable X11 grabbing using XCB [no]
219 --enable-libxcb-shm enable X11 grabbing shm communication [auto]
220 --enable-libxcb-xfixes enable X11 grabbing mouse rendering [auto]
221 --enable-libxvid enable Xvid encoding via xvidcore,
222 native MPEG-4/Xvid encoder exists [no]
223 --enable-mmal enable decoding via MMAL [no]
224 --enable-nvenc enable encoding via NVENC [no]
225 --enable-openssl enable openssl [no]
226 --enable-x11grab enable X11 grabbing (legacy) [no]
227 --enable-zlib enable zlib [autodetect]
230 --arch=ARCH select architecture [$arch]
231 --cpu=CPU select the minimum required CPU (affects
232 instruction selection, may crash on older CPUs)
233 --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
234 --enable-cross-compile assume a cross-compiler is used
235 --sysroot=PATH root of cross-build tree
236 --sysinclude=PATH location of cross-build system headers
237 --target-os=OS compiler targets OS [$target_os]
238 --target-exec=CMD command to run executables on target
239 --target-path=DIR path to view of build directory on target
240 --target-samples=DIR path to samples directory on target
241 --toolchain=NAME set tool defaults according to NAME
243 --ar=AR use archive tool AR [$ar_default]
244 --as=AS use assembler AS [$as_default]
245 --cc=CC use C compiler CC [$cc_default]
246 --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
247 --ld=LD use linker LD
248 --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
249 --pkg-config-flags=FLAGS pass additional flags to pkgconf []
250 --host-cc=HOSTCC use host C compiler HOSTCC
251 --host-cflags=HCFLAGS use HCFLAGS when compiling for host
252 --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
253 --host-ld=HOSTLD use host linker HOSTLD
254 --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
255 --host-libs=HLIBS use libs HLIBS when linking for host
256 --host-os=OS compiler host OS [$target_os]
257 --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
258 --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
259 --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
260 --extra-libs=ELIBS add ELIBS [$ELIBS]
261 --extra-version=STRING version string suffix []
262 --optflags=OPTFLAGS override optimization-related compiler flags
263 --build-suffix=SUFFIX library name suffix []
264 --enable-pic build position-independent code
265 --enable-thumb compile for Thumb instruction set
266 --enable-lto use link-time optimization
267 --env="ENV=override" override the environment variables
269 Advanced options (experts only):
270 --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
271 --disable-symver disable symbol versioning
272 --enable-hardcoded-tables use hardcoded tables instead of runtime generation
273 --disable-safe-bitstream-reader
274 disable buffer boundary checking in bitreaders
275 (faster, but may crash)
276 --enable-memalign-hack emulate memalign, interferes with memory debuggers
277 --enable-sram allow use of on-chip SRAM
279 Optimization options (experts only):
280 --disable-asm disable all assembly optimizations
281 --disable-altivec disable AltiVec optimizations
282 --disable-vsx disable VSX optimizations
283 --disable-power8 disable POWER8 optimizations
284 --disable-amd3dnow disable 3DNow! optimizations
285 --disable-amd3dnowext disable 3DNow! extended optimizations
286 --disable-mmx disable MMX optimizations
287 --disable-mmxext disable MMXEXT optimizations
288 --disable-sse disable SSE optimizations
289 --disable-sse2 disable SSE2 optimizations
290 --disable-sse3 disable SSE3 optimizations
291 --disable-ssse3 disable SSSE3 optimizations
292 --disable-sse4 disable SSE4 optimizations
293 --disable-sse42 disable SSE4.2 optimizations
294 --disable-avx disable AVX optimizations
295 --disable-xop disable XOP optimizations
296 --disable-fma3 disable FMA3 optimizations
297 --disable-fma4 disable FMA4 optimizations
298 --disable-avx2 disable AVX2 optimizations
299 --disable-armv5te disable armv5te optimizations
300 --disable-armv6 disable armv6 optimizations
301 --disable-armv6t2 disable armv6t2 optimizations
302 --disable-vfp disable VFP optimizations
303 --disable-neon disable NEON optimizations
304 --disable-inline-asm disable use of inline assembly
305 --disable-yasm disable use of nasm/yasm 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
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
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)
329 NOTE: Object files are built at the place where configure is launched.
337 echo "$@" >> $logfile
342 pr -n -t $1 >> $logfile
353 WARNINGS="${WARNINGS}WARNING: $*\n"
360 If you think configure made a mistake, make sure you are using the latest
361 version from Git. If the latest version fails, report the problem to the
362 libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
364 if disabled logging; then
366 Rerun configure with logging enabled (do not use --disable-logging), and
367 include the log this produces with your report.
371 Include the log file "$logfile" produced by configure as this will help
378 # Avoid locale weirdness, besides we really just want to translate ASCII.
380 echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
384 echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
388 echo "$*" | sed 's/["\\]/\\\0/g'
392 v=$(echo "$1" | sed "s/'/'\\\\''/g")
393 test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
398 echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
405 eval "case $v in $pat) echo $v ;; esac"
413 eval "case $v in $pat) ;; *) echo $v ;; esac"
420 for v; do eval $m; done
426 for v; do echo ${v}${suffix}; done
441 eval : \${$var:=$value}
446 echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
452 eval $(sanitize_var_name "$var")='$*'
456 eval echo \$$(sanitize_var_name "$1")
461 eval level=\${${pvar}_level:=0}
462 eval ${pvar}_${level}="\$$pvar"
463 eval ${pvar}_level=$(($level+1))
469 eval level=\${${pvar}_level:-0}
470 test $level = 0 && continue
471 eval level=$(($level-1))
472 eval $pvar="\${${pvar}_${level}}"
473 eval ${pvar}_level=$level
474 eval unset ${pvar}_${level}
496 enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
502 disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
508 enabled $var && continue
509 eval sel="\$${var}_select"
510 eval sgs="\$${var}_suggest"
514 enable_deep_weak $sgs
526 disabled $var && continue
535 test "${1#!}" = "$1" && op== || op=!=
536 eval test "x\$${1#!}" $op "xyes"
540 test "${1#!}" = "$1" && op== || op=!=
541 eval test "x\$${1#!}" $op "xno"
546 enabled $opt || return 1
552 disabled $opt || return 1
558 enabled $opt && return 0
564 disabled $opt && return 0
571 eval : \${$opt:=\$${opt}_default}
579 [ $var = $value ] && return 0
587 enabled ${cfg}_checking && die "Circular dependency for $cfg."
588 disabled ${cfg}_checking && continue
589 enable ${cfg}_checking
592 eval dep_all="\$${cfg}_deps"
593 eval dep_any="\$${cfg}_deps_any"
594 eval dep_sel="\$${cfg}_select"
595 eval dep_sgs="\$${cfg}_suggest"
596 eval dep_ifa="\$${cfg}_if"
597 eval dep_ifn="\$${cfg}_if_any"
599 pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
600 do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
601 popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
603 [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
604 [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
605 enabled_all $dep_all || disable $cfg
606 enabled_any $dep_any || disable $cfg
607 disabled_any $dep_sel && disable $cfg
609 if enabled $cfg; then
611 enable_deep_weak $dep_sgs
614 disable ${cfg}_checking
623 for cfg in $allopts; do
624 enabled $cfg || continue
625 eval dep_extralibs="\$${cfg}_extralibs"
626 test -n "$dep_extralibs" && add_extralibs $dep_extralibs
634 map 'eval echo "$v \${$v:-no}"' "$@" |
635 awk "BEGIN { split(\"$files\", files) }
637 c = \"$pfx\" toupper(\$1);
643 if (file ~ /\\.h\$/) {
644 printf(\"#define %s %d\\n\", c, v) >>file;
645 } else if (file ~ /\\.asm\$/) {
646 printf(\"%%define %s %d\\n\", c, v) >>file;
647 } else if (file ~ /\\.mak\$/) {
648 n = -v ? \"\" : \"!\";
649 printf(\"%s%s=yes\\n\", n, c) >>file;
659 enabled $v && printf "%s\n" ${v%$suf};
666 eval "$var=\"\$$var $*\""
672 eval "$var=\"$* \$$var\""
678 for tok in $(eval echo \$$var); do
679 uniq_list="$(filter_out $tok $uniq_list) $tok"
681 eval "$var=\"${uniq_list}\""
689 append CFLAGS $($cflags_filter "$@")
693 append ASFLAGS $($asflags_filter "$@")
697 append LDFLAGS $($ldflags_filter "$@")
701 append LDEXEFLAGS $($ldflags_filter "$@")
705 append STRIPFLAGS "$@"
709 prepend extralibs $($ldflags_filter "$@")
713 append host_cppflags "$@"
717 append host_cflags $($host_cflags_filter "$@")
721 append host_ldflags $($host_ldflags_filter "$@")
725 append compat_objs $1
727 map 'add_cppflags -D$v' "$@"
732 "$@" >> $logfile 2>&1
736 eval printf '%s\\n' $CC_O
740 eval printf '%s\\n' $CC_E
747 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
754 check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
758 eval printf '%s\\n' $AS_O
765 check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
769 log check_inline_asm "$@"
774 check_cc "$@" <<EOF && enable $name
775 void foo(void){ __asm__ volatile($code); }
781 check_inline_asm ${1}_inline "\"$2\""
782 echo "$2" | check_as && enable ${1}_external || disable ${1}_external
790 check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
794 eval printf '%s\\n' $LD_O
799 flags=$(filter_out '-l*' "$@")
800 libs=$(filter '-l*' "$@")
801 check_cc $($cflags_filter $flags) || return
802 flags=$($ldflags_filter $flags)
803 libs=$($ldflags_filter $libs)
804 check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
809 test "${hdr%.h}" = "${hdr}" &&
810 echo "#include $hdr" ||
811 echo "#include <$hdr>"
821 for hdr in $headers; do
824 echo "int main(void) { $code; return 0; }"
825 } | check_$check "$@"
829 log check_cppflags "$@"
830 check_cc "$@" <<EOF && append CPPFLAGS "$@"
837 set -- $($cflags_filter "$@")
844 log check_cflags "$@"
845 test_cflags "$@" && add_cflags "$@"
849 log test_ldflags "$@"
851 int main(void){ return 0; }
856 log check_ldflags "$@"
857 test_ldflags "$@" && add_ldflags "$@"
861 log test_stripflags "$@"
862 # call check_cc to get a fresh TMPO
864 int main(void) { return 0; }
866 check_cmd $strip $STRIPFLAGS "$@" $TMPO
870 log check_stripflags "$@"
871 test_stripflags "$@" && add_stripflags "$@"
875 log check_header "$@"
879 check_cpp "$@" <<EOF && enable_safe $header
890 check_ld "$@" <<EOF && enable $func
892 int main(void){ $func(); }
897 log check_mathfunc "$@"
901 test $narg = 2 && args="f, g" || args="f"
903 check_ld "$@" <<EOF && enable $func
905 float foo(float f, float g) { return $func($args); }
906 int main(void){ return 0; }
910 check_func_headers(){
911 log check_func_headers "$@"
916 for hdr in $headers; do
919 for func in $funcs; do
920 echo "long check_$func(void) { return (long) $func; }"
922 echo "int main(void) { return 0; }"
923 } | check_ld "$@" && enable $funcs && enable_safe $headers
926 check_cpp_condition(){
927 log check_cpp_condition "$@"
934 #error "unsatisfied condition: $condition"
944 check_header $header && check_func $func "$@" && add_extralibs "$@"
952 check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
956 log check_pkg_config "$@"
961 check_cmd $pkg_config --exists --print-errors $pkg || return
962 pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
963 pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
964 check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
965 set_safe "${pkg}_cflags" $pkg_cflags &&
966 set_safe "${pkg}_libs" $pkg_libs
970 check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
976 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
977 # are safe but may not be available everywhere. Thus we use
978 # raise(SIGTERM) instead. The check is run in a subshell so we
979 # can redirect the "Terminated" message from the shell. SIGBUS
980 # is not defined by standard C so it is used conditionally.
982 (check_exec "$@") >> $logfile 2>&1 <<EOF
984 static void sighandler(int sig){
990 int (*func_ptr)(void) = foo;
992 signal(SIGILL, sighandler);
993 signal(SIGFPE, sighandler);
994 signal(SIGSEGV, sighandler);
996 signal(SIGBUS, sighandler);
1008 disable_safe "$type"
1009 check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1013 log check_struct "$@"
1018 disable_safe "${struct}_${member}"
1019 check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1020 enable_safe "${struct}_${member}"
1024 log check_builtin "$@"
1030 check_code ld "$headers" "$builtin" "$@" && enable "$name"
1033 check_compile_assert(){
1034 log check_compile_assert "$@"
1040 check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1048 check_lib $header $func "$@" || die "ERROR: $name not found"
1056 check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1059 require_pkg_config(){
1061 check_pkg_config "$@" || die "ERROR: $pkg not found"
1062 add_cflags $(get_safe "${pkg}_cflags")
1063 add_extralibs $(get_safe "${pkg}_libs")
1067 eval printf '%s\\n' $HOSTCC_E
1071 eval printf '%s\\n' $HOSTCC_O
1075 log check_host_cc "$@"
1078 check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1082 log check_host_cpp "$@"
1085 check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
1088 check_host_cppflags(){
1089 log check_host_cppflags "$@"
1090 check_host_cc "$@" <<EOF && append host_cppflags "$@"
1095 check_host_cflags(){
1096 log check_host_cflags "$@"
1097 set -- $($host_cflags_filter "$@")
1098 check_host_cc "$@" <<EOF && append host_cflags "$@"
1103 check_host_cpp_condition(){
1104 log check_host_cpp_condition "$@"
1108 check_host_cpp "$@" <<EOF
1111 #error "unsatisfied condition: $condition"
1119 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
1123 cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1124 mkdir -p "$(dirname $2)"
1128 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1129 # system-dependent things.
1147 filter_audio_example
1151 transcode_aac_example
1154 EXTERNAL_LIBRARY_LIST="
1208 safe_bitstream_reader
1262 $EXTERNAL_LIBRARY_LIST
1327 ARCH_EXT_LIST_X86_SIMD="
1355 $ARCH_EXT_LIST_X86_SIMD
1384 sync_val_compare_and_swap
1402 cdio_paranoia_paranoia_h
1403 dev_bktr_ioctl_bt848_h
1404 dev_bktr_ioctl_meteor_h
1406 dev_video_bktr_ioctl_bt848_h
1407 dev_video_meteor_ioctl_meteor_h
1415 machine_ioctl_bt848_h
1416 machine_ioctl_meteor_h
1480 GetProcessAffinityMask
1481 GetProcessMemoryInfo
1485 GetSystemTimeAsFileTime
1490 jack_port_get_latency_range
1502 SetConsoleTextAttribute
1513 TOOLCHAIN_FEATURES="
1534 CONDITION_VARIABLE_Ptr
1537 struct_group_source_req
1538 struct_ip_mreq_source
1541 struct_rusage_ru_maxrss
1543 struct_sockaddr_sa_len
1544 struct_sockaddr_storage
1545 struct_v4l2_frmivalenum_discrete
1550 $(add_suffix _external $ARCH_EXT_LIST)
1551 $(add_suffix _inline $ARCH_EXT_LIST)
1578 # options emitted with CONFIG_ prefix but not available on the command line
1715 # code dependency declarations
1717 # architecture extensions
1722 armv8_deps="aarch64"
1723 neon_deps_any="aarch64 arm"
1724 intrinsics_neon_deps="neon"
1725 vfp_deps_any="aarch64 arm"
1728 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1736 x86_64_select="i686"
1737 x86_64_suggest="fast_cmov"
1740 amd3dnowext_deps="amd3dnow"
1756 mmx_external_deps="yasm"
1757 mmx_inline_deps="inline_asm"
1758 mmx_suggest="mmx_external mmx_inline"
1760 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
1761 eval dep=\$${ext}_deps
1762 eval ${ext}_external_deps='"${dep}_external"'
1763 eval ${ext}_inline_deps='"${dep}_inline"'
1764 eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
1767 aligned_stack_if_any="aarch64 ppc x86"
1768 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1769 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
1770 fast_unaligned_if_any="aarch64 ppc x86"
1771 simd_align_16_if_any="altivec neon sse"
1773 # system capabilities
1774 symver_if_any="symver_asm_label symver_gnu_asm"
1775 valgrind_backtrace_deps="!optimizations valgrind_valgrind_h"
1778 atomics_gcc_if="sync_val_compare_and_swap"
1779 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
1780 atomics_win32_if="MemoryBarrier"
1781 atomics_native_if_any="$ATOMICS_LIST"
1782 w32threads_deps="atomics_native"
1783 threads_if_any="$THREADS_LIST"
1787 error_resilience_select="me_cmp"
1788 faandct_deps="faan fdctdsp"
1789 faanidct_deps="faan idctdsp"
1790 intrax8_select="error_resilience"
1793 me_cmp_select="fdctdsp idctdsp pixblockdsp"
1794 mpeg_er_select="error_resilience"
1795 mpegaudio_select="mpegaudiodsp"
1796 mpegaudiodsp_select="dct"
1797 mpegvideo_select="blockdsp hpeldsp idctdsp me_cmp videodsp"
1798 mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
1799 nvenc_deps_any="dlopen LoadLibrary"
1800 nvenc_extralibs='$ldl'
1804 # decoders / encoders
1805 aac_decoder_select="imdct15 mdct sinewin"
1806 aac_encoder_select="audio_frame_queue iirfilter mdct sinewin"
1807 aac_latm_decoder_select="aac_decoder aac_latm_parser"
1808 ac3_decoder_select="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
1809 ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
1810 ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
1811 adpcm_g722_decoder_select="g722dsp"
1812 adpcm_g722_encoder_select="g722dsp"
1813 aic_decoder_select="golomb idctdsp"
1814 alac_encoder_select="lpc"
1815 als_decoder_select="bswapdsp"
1816 amrnb_decoder_select="lsp"
1817 amrwb_decoder_select="lsp"
1818 amv_decoder_select="sp5x_decoder"
1819 ape_decoder_select="bswapdsp"
1820 asv1_decoder_select="blockdsp bswapdsp idctdsp"
1821 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
1822 asv2_decoder_select="blockdsp bswapdsp idctdsp"
1823 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
1824 atrac1_decoder_select="mdct sinewin"
1825 atrac3_decoder_select="mdct"
1826 atrac3p_decoder_select="mdct sinewin"
1827 bink_decoder_select="blockdsp hpeldsp"
1828 binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
1829 binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
1830 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
1831 cllc_decoder_select="bswapdsp"
1832 comfortnoise_encoder_select="lpc"
1833 cook_decoder_select="audiodsp mdct sinewin"
1834 cscd_decoder_select="lzo"
1835 cscd_decoder_suggest="zlib"
1836 dca_decoder_select="fmtconvert mdct"
1837 dds_decoder_select="texturedsp"
1838 dnxhd_decoder_select="blockdsp idctdsp"
1839 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
1840 dvvideo_decoder_select="dvprofile idctdsp"
1841 dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
1842 dxa_decoder_deps="zlib"
1843 eac3_decoder_select="ac3_decoder"
1844 eac3_encoder_select="ac3_encoder"
1845 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
1846 eatgq_decoder_select="aandcttables idctdsp"
1847 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
1848 exr_decoder_deps="zlib"
1849 ffv1_decoder_select="golomb rangecoder"
1850 ffv1_encoder_select="rangecoder"
1851 ffvhuff_decoder_select="huffyuv_decoder"
1852 ffvhuff_encoder_select="huffyuv_encoder"
1853 fic_decoder_select="golomb"
1854 flac_decoder_select="flacdsp golomb"
1855 flac_encoder_select="bswapdsp flacdsp golomb lpc"
1856 flashsv_decoder_deps="zlib"
1857 flashsv_encoder_deps="zlib"
1858 flashsv2_decoder_deps="zlib"
1859 flv_decoder_select="h263_decoder"
1860 flv_encoder_select="h263_encoder"
1861 fourxm_decoder_select="blockdsp bswapdsp"
1862 fraps_decoder_select="bswapdsp huffman"
1863 g2m_decoder_deps="zlib"
1864 g2m_decoder_select="blockdsp idctdsp jpegtables"
1865 h261_decoder_select="mpeg_er mpegvideo"
1866 h261_encoder_select="aandcttables mpegvideoenc"
1867 h263_decoder_select="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
1868 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
1869 h263i_decoder_select="h263_decoder"
1870 h263p_encoder_select="h263_encoder"
1871 h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
1872 h264_decoder_suggest="error_resilience"
1873 h264_nvenc_encoder_deps="nvenc"
1874 h264_qsv_decoder_deps="libmfx"
1875 h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
1876 h264_qsv_encoder_deps="libmfx"
1877 h264_qsv_encoder_select="qsvenc"
1878 hap_decoder_select="snappy texturedsp"
1879 hap_encoder_deps="libsnappy"
1880 hap_encoder_select="texturedspenc"
1881 hevc_decoder_select="bswapdsp cabac golomb videodsp"
1882 hevc_nvenc_encoder_deps="nvenc"
1883 hevc_qsv_encoder_deps="libmfx"
1884 hevc_qsv_decoder_deps="libmfx"
1885 hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser qsvdec hevc_qsv_hwaccel"
1886 hevc_qsv_encoder_select="qsvenc"
1887 huffyuv_decoder_select="bswapdsp huffyuvdsp"
1888 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp"
1889 iac_decoder_select="imc_decoder"
1890 imc_decoder_select="bswapdsp fft mdct sinewin"
1891 indeo3_decoder_select="hpeldsp"
1892 indeo4_decoder_select="ividsp"
1893 indeo5_decoder_select="ividsp"
1894 interplay_video_decoder_select="hpeldsp"
1895 jpegls_decoder_select="golomb mjpeg_decoder"
1896 jpegls_encoder_select="golomb"
1897 jv_decoder_select="blockdsp"
1898 lagarith_decoder_select="huffyuvdsp"
1899 ljpeg_encoder_select="aandcttables idctdsp jpegtables"
1900 loco_decoder_select="golomb"
1901 mdec_decoder_select="blockdsp idctdsp mpegvideo"
1902 metasound_decoder_select="lsp mdct sinewin"
1903 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
1904 mjpeg_decoder_select="blockdsp hpeldsp idctdsp jpegtables"
1905 mjpeg_encoder_select="aandcttables jpegtables mpegvideoenc"
1906 mjpegb_decoder_select="mjpeg_decoder"
1907 mlp_decoder_select="mlp_parser"
1908 motionpixels_decoder_select="bswapdsp"
1909 mp1_decoder_select="mpegaudio"
1910 mp1float_decoder_select="mpegaudio"
1911 mp2_decoder_select="mpegaudio"
1912 mp2float_decoder_select="mpegaudio"
1913 mp3_decoder_select="mpegaudio"
1914 mp3adu_decoder_select="mpegaudio"
1915 mp3adufloat_decoder_select="mpegaudio"
1916 mp3float_decoder_select="mpegaudio"
1917 mp3on4_decoder_select="mpegaudio"
1918 mp3on4float_decoder_select="mpegaudio"
1919 mpc7_decoder_select="bswapdsp mpegaudiodsp"
1920 mpc8_decoder_select="mpegaudiodsp"
1921 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
1922 mpeg_xvmc_decoder_select="mpeg2video_decoder"
1923 mpeg1video_decoder_select="error_resilience mpeg_er mpegvideo"
1924 mpeg1video_encoder_select="aandcttables mpegvideoenc"
1925 mpeg2video_decoder_select="error_resilience mpeg_er mpegvideo"
1926 mpeg2video_encoder_select="aandcttables mpegvideoenc"
1927 mpeg2_qsv_decoder_deps="libmfx"
1928 mpeg2_qsv_decoder_select="qsvdec mpeg2_qsv_hwaccel mpegvideo_parser"
1929 mpeg2_qsv_encoder_deps="libmfx"
1930 mpeg2_qsv_encoder_select="qsvenc"
1931 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
1932 mpeg4_encoder_select="h263_encoder"
1933 msa1_decoder_select="mss34dsp"
1934 msmpeg4v1_decoder_select="h263_decoder"
1935 msmpeg4v2_decoder_select="h263_decoder"
1936 msmpeg4v2_encoder_select="h263_encoder"
1937 msmpeg4v3_decoder_select="h263_decoder"
1938 msmpeg4v3_encoder_select="h263_encoder"
1939 mss2_decoder_select="error_resilience mpeg_er qpeldsp vc1_decoder"
1940 mts2_decoder_select="mss34dsp"
1941 mxpeg_decoder_select="mjpeg_decoder"
1942 nellymoser_decoder_select="mdct sinewin"
1943 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
1944 nuv_decoder_select="idctdsp lzo"
1945 on2avc_decoder_select="mdct"
1946 opus_decoder_deps="avresample"
1947 opus_decoder_select="imdct15"
1948 png_decoder_deps="zlib"
1949 png_encoder_deps="zlib"
1950 png_encoder_select="huffyuvencdsp"
1951 prores_decoder_select="idctdsp"
1952 prores_encoder_select="fdctdsp"
1953 qcelp_decoder_select="lsp"
1954 qdm2_decoder_select="mdct rdft mpegaudiodsp"
1955 ra_144_encoder_select="audio_frame_queue lpc"
1956 ralf_decoder_select="golomb"
1957 rv10_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
1958 rv10_encoder_select="h263_encoder"
1959 rv20_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
1960 rv20_encoder_select="h263_encoder"
1961 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
1962 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
1963 shorten_decoder_select="golomb"
1964 sipr_decoder_select="lsp"
1965 sp5x_decoder_select="mjpeg_decoder"
1966 svq1_decoder_select="hpeldsp"
1967 svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
1968 svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
1969 svq3_decoder_suggest="zlib"
1970 tak_decoder_select="audiodsp"
1971 tdsc_decoder_deps="zlib"
1972 tdsc_decoder_select="mjpeg_decoder"
1973 theora_decoder_select="vp3_decoder"
1974 thp_decoder_select="mjpeg_decoder"
1975 tiff_decoder_suggest="zlib"
1976 tiff_encoder_suggest="zlib"
1977 truehd_decoder_select="mlp_decoder"
1978 truemotion2_decoder_select="bswapdsp"
1979 truespeech_decoder_select="bswapdsp"
1980 tscc_decoder_deps="zlib"
1981 txd_decoder_select="texturedsp"
1982 twinvq_decoder_select="mdct lsp sinewin"
1983 utvideo_decoder_select="bswapdsp"
1984 utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
1985 vble_decoder_select="huffyuvdsp"
1986 vc1_decoder_select="blockdsp error_resilience h263_decoder h264chroma h264qpel intrax8 mpeg_er qpeldsp startcode"
1987 vc1image_decoder_select="vc1_decoder"
1988 vorbis_decoder_select="mdct"
1989 vorbis_encoder_select="mdct"
1990 vp3_decoder_select="hpeldsp vp3dsp videodsp"
1991 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
1992 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
1993 vp6a_decoder_select="vp6_decoder"
1994 vp6f_decoder_select="vp6_decoder"
1995 vp7_decoder_select="h264pred videodsp vp8dsp"
1996 vp8_decoder_select="h264pred videodsp vp8dsp"
1997 vp9_decoder_select="videodsp"
1998 webp_decoder_select="vp8_decoder"
1999 wmapro_decoder_select="mdct sinewin wma_freqs"
2000 wmav1_decoder_select="mdct sinewin wma_freqs"
2001 wmav1_encoder_select="mdct sinewin wma_freqs"
2002 wmav2_decoder_select="mdct sinewin wma_freqs"
2003 wmav2_encoder_select="mdct sinewin wma_freqs"
2004 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2005 wmv1_decoder_select="h263_decoder"
2006 wmv1_encoder_select="h263_encoder"
2007 wmv2_decoder_select="blockdsp h263_decoder idctdsp intrax8 videodsp wmv2dsp"
2008 wmv2_encoder_select="h263_encoder wmv2dsp"
2009 wmv3_decoder_select="vc1_decoder"
2010 wmv3image_decoder_select="wmv3_decoder"
2011 zerocodec_decoder_deps="zlib"
2012 zlib_decoder_deps="zlib"
2013 zlib_encoder_deps="zlib"
2014 zmbv_decoder_deps="zlib"
2015 zmbv_encoder_deps="zlib"
2017 # hardware accelerators
2018 d3d11va_deps="d3d11_h dxva_h ID3D11VideoDecoder"
2019 dxva2_deps="dxva2api_h DXVA2_ConfigPictureDecode"
2020 vaapi_deps="va_va_h"
2021 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
2022 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2023 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2025 h263_vaapi_hwaccel_deps="vaapi"
2026 h263_vaapi_hwaccel_select="h263_decoder"
2027 h263_vdpau_hwaccel_deps="vdpau"
2028 h263_vdpau_hwaccel_select="h263_decoder"
2029 h264_d3d11va_hwaccel_deps="d3d11va"
2030 h264_d3d11va_hwaccel_select="h264_decoder"
2031 h264_dxva2_hwaccel_deps="dxva2"
2032 h264_dxva2_hwaccel_select="h264_decoder"
2033 h264_mmal_decoder_deps="mmal"
2034 h264_mmal_hwaccel_deps="mmal"
2035 h264_mmal_decoder_select="h264_decoder"
2036 h264_mmal_encoder_deps="mmal"
2037 h264_qsv_hwaccel_deps="libmfx"
2038 h264_vaapi_hwaccel_deps="vaapi"
2039 h264_vaapi_hwaccel_select="h264_decoder"
2040 h264_vda_hwaccel_deps="vda"
2041 h264_vda_hwaccel_select="h264_decoder"
2042 h264_vda_old_hwaccel_deps="vda"
2043 h264_vda_old_hwaccel_select="h264_decoder"
2044 h264_vdpau_hwaccel_deps="vdpau"
2045 h264_vdpau_hwaccel_select="h264_decoder"
2046 hevc_d3d11va_hwaccel_deps="d3d11va DXVA_PicParams_HEVC"
2047 hevc_d3d11va_hwaccel_select="hevc_decoder"
2048 hevc_dxva2_hwaccel_deps="dxva2 DXVA_PicParams_HEVC"
2049 hevc_dxva2_hwaccel_select="hevc_decoder"
2050 hevc_qsv_hwaccel_deps="libmfx"
2051 mpeg1_vdpau_hwaccel_deps="vdpau"
2052 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
2053 mpeg2_d3d11va_hwaccel_deps="d3d11va"
2054 mpeg2_d3d11va_hwaccel_select="mpeg2video_decoder"
2055 mpeg2_dxva2_hwaccel_deps="dxva2"
2056 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
2057 mpeg2_qsv_hwaccel_deps="libmfx"
2058 mpeg2_vaapi_hwaccel_deps="vaapi"
2059 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2060 mpeg2_vdpau_hwaccel_deps="vdpau"
2061 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2062 mpeg4_vaapi_hwaccel_deps="vaapi"
2063 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2064 mpeg4_vdpau_hwaccel_deps="vdpau"
2065 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2066 vc1_d3d11va_hwaccel_deps="d3d11va"
2067 vc1_d3d11va_hwaccel_select="vc1_decoder"
2068 vc1_dxva2_hwaccel_deps="dxva2"
2069 vc1_dxva2_hwaccel_select="vc1_decoder"
2070 vc1_vaapi_hwaccel_deps="vaapi"
2071 vc1_vaapi_hwaccel_select="vc1_decoder"
2072 vc1_vdpau_hwaccel_deps="vdpau"
2073 vc1_vdpau_hwaccel_select="vc1_decoder"
2074 wmv3_d3d11va_hwaccel_select="vc1_d3d11va_hwaccel"
2075 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2076 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2077 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2080 h264_parser_select="h264_decoder"
2081 hevc_parser_select="golomb"
2082 mpegvideo_parser_select="mpegvideo"
2083 mpeg4video_parser_select="error_resilience h263dsp mpeg_er mpegvideo qpeldsp"
2084 vc1_parser_select="mpegvideo startcode vc1_decoder"
2087 mjpeg2jpeg_bsf_select="jpegtables"
2089 # external libraries
2090 libdcadec_decoder_deps="libdcadec"
2091 libfaac_encoder_deps="libfaac"
2092 libfaac_encoder_select="audio_frame_queue"
2093 libfdk_aac_decoder_deps="libfdk_aac"
2094 libfdk_aac_encoder_deps="libfdk_aac"
2095 libfdk_aac_encoder_select="audio_frame_queue"
2096 libgsm_decoder_deps="libgsm"
2097 libgsm_encoder_deps="libgsm"
2098 libgsm_ms_decoder_deps="libgsm"
2099 libgsm_ms_encoder_deps="libgsm"
2100 libilbc_decoder_deps="libilbc"
2101 libilbc_encoder_deps="libilbc"
2102 libmp3lame_encoder_deps="libmp3lame"
2103 libmp3lame_encoder_select="audio_frame_queue"
2104 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2105 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2106 libopencore_amrnb_encoder_select="audio_frame_queue"
2107 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2108 libopenh264_encoder_deps="libopenh264"
2109 libopenjpeg_decoder_deps="libopenjpeg"
2110 libopenjpeg_encoder_deps="libopenjpeg"
2111 libopus_decoder_deps="libopus"
2112 libopus_encoder_deps="libopus"
2113 libopus_encoder_select="audio_frame_queue"
2114 libschroedinger_decoder_deps="libschroedinger"
2115 libschroedinger_encoder_deps="libschroedinger"
2116 libspeex_decoder_deps="libspeex"
2117 libspeex_encoder_deps="libspeex"
2118 libspeex_encoder_select="audio_frame_queue"
2119 libtheora_encoder_deps="libtheora"
2120 libtwolame_encoder_deps="libtwolame"
2121 libvo_aacenc_encoder_deps="libvo_aacenc"
2122 libvo_aacenc_encoder_select="audio_frame_queue"
2123 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2124 libvorbis_encoder_deps="libvorbis"
2125 libvorbis_encoder_select="audio_frame_queue"
2126 libvpx_vp8_decoder_deps="libvpx"
2127 libvpx_vp8_encoder_deps="libvpx"
2128 libvpx_vp9_decoder_deps="libvpx"
2129 libvpx_vp9_encoder_deps="libvpx"
2130 libwavpack_encoder_deps="libwavpack"
2131 libwebp_encoder_deps="libwebp"
2132 libx262_encoder_deps="libx262"
2133 libx264_encoder_deps="libx264"
2134 libx265_encoder_deps="libx265"
2135 libxavs_encoder_deps="libxavs"
2136 libxvid_encoder_deps="libxvid"
2139 ac3_demuxer_select="ac3_parser"
2140 asf_demuxer_select="riffdec"
2141 asf_muxer_select="riffenc"
2142 asf_stream_muxer_select="asf_muxer"
2143 avi_demuxer_select="riffdec"
2144 avi_muxer_select="riffenc"
2145 avisynth_demuxer_deps="avisynth"
2146 avisynth_demuxer_select="riffdec"
2147 caf_demuxer_select="riffdec"
2148 dash_muxer_select="mp4_muxer"
2149 dirac_demuxer_select="dirac_parser"
2150 dv_demuxer_select="dvprofile"
2151 dv_muxer_select="dvprofile"
2152 dxa_demuxer_select="riffdec"
2153 eac3_demuxer_select="ac3_parser"
2154 f4v_muxer_select="mov_muxer"
2155 flac_demuxer_select="flac_parser"
2156 hds_muxer_select="flv_muxer"
2157 hls_muxer_select="mpegts_muxer"
2158 ipod_muxer_select="mov_muxer"
2159 ismv_muxer_select="mov_muxer"
2160 matroska_audio_muxer_select="matroska_muxer"
2161 matroska_demuxer_select="riffdec"
2162 matroska_demuxer_suggest="bzlib lzo zlib"
2163 matroska_muxer_select="riffenc"
2164 mmf_muxer_select="riffenc"
2165 mov_demuxer_select="riffdec"
2166 mov_demuxer_suggest="zlib"
2167 mov_muxer_select="riffenc rtpenc_chain"
2168 mp3_demuxer_select="mpegaudio_parser"
2169 mp4_muxer_select="mov_muxer"
2170 mpegts_muxer_select="adts_muxer latm_muxer"
2171 mpegtsraw_demuxer_select="mpegts_demuxer"
2172 mxf_d10_muxer_select="mxf_muxer"
2173 nut_muxer_select="riffenc"
2174 nuv_demuxer_select="riffdec"
2175 oga_muxer_select="ogg_muxer"
2176 ogg_demuxer_select="golomb"
2177 opus_muxer_select="ogg_muxer"
2178 psp_muxer_select="mov_muxer"
2179 rtp_demuxer_select="sdp_demuxer"
2180 rtpdec_select="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol"
2181 rtsp_demuxer_select="http_protocol rtpdec"
2182 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2183 sap_demuxer_select="sdp_demuxer"
2184 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2185 sdp_demuxer_select="rtpdec"
2186 smoothstreaming_muxer_select="ismv_muxer"
2187 spdif_muxer_select="aac_parser"
2188 spx_muxer_select="ogg_muxer"
2189 tak_demuxer_select="tak_parser"
2190 tg2_muxer_select="mov_muxer"
2191 tgp_muxer_select="mov_muxer"
2192 w64_demuxer_select="wav_demuxer"
2193 wav_demuxer_select="riffdec"
2194 wav_muxer_select="riffenc"
2195 webm_muxer_select="riffenc"
2196 wtv_demuxer_select="riffdec"
2197 xmv_demuxer_select="riffdec"
2198 xwma_demuxer_select="riffdec"
2201 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2202 alsa_outdev_deps="alsa_asoundlib_h"
2203 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2204 dv1394_indev_deps="dv1394"
2205 dv1394_indev_select="dv_demuxer"
2206 fbdev_indev_deps="linux_fb_h"
2207 jack_indev_deps="jack_jack_h pthreads"
2208 libcdio_indev_deps="libcdio"
2209 libdc1394_indev_deps="libdc1394"
2210 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2211 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2212 pulse_indev_deps="libpulse"
2213 sndio_indev_deps="sndio_h"
2214 sndio_outdev_deps="sndio_h"
2215 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2216 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2217 vfwcap_indev_extralibs="-lavicap32"
2218 x11grab_indev_deps="x11grab"
2219 x11grab_xcb_indev_deps="libxcb"
2222 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2223 ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl"
2224 ffrtmpcrypt_protocol_select="tcp_protocol"
2225 ffrtmphttp_protocol_deps="!librtmp_protocol"
2226 ffrtmphttp_protocol_select="http_protocol"
2227 gopher_protocol_select="network"
2228 http_protocol_select="tcp_protocol"
2229 httpproxy_protocol_select="tcp_protocol"
2230 https_protocol_select="tls_protocol"
2231 icecast_protocol_select="http_protocol"
2232 librtmp_protocol_deps="librtmp"
2233 librtmpe_protocol_deps="librtmp"
2234 librtmps_protocol_deps="librtmp"
2235 librtmpt_protocol_deps="librtmp"
2236 librtmpte_protocol_deps="librtmp"
2237 mmsh_protocol_select="http_protocol"
2238 mmst_protocol_select="network"
2239 rtmp_protocol_deps="!librtmp_protocol"
2240 rtmp_protocol_select="tcp_protocol"
2241 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2242 rtmps_protocol_deps="!librtmp_protocol"
2243 rtmps_protocol_select="tls_protocol"
2244 rtmpt_protocol_select="ffrtmphttp_protocol"
2245 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2246 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2247 rtp_protocol_select="udp_protocol"
2248 sctp_protocol_deps="struct_sctp_event_subscribe"
2249 sctp_protocol_select="network"
2250 srtp_protocol_select="rtp_protocol"
2251 tcp_protocol_select="network"
2252 tls_gnutls_protocol_deps="gnutls"
2253 tls_gnutls_protocol_select="tcp_protocol"
2254 tls_openssl_protocol_deps="openssl !tls_gnutls_protocol"
2255 tls_openssl_protocol_select="tcp_protocol"
2256 tls_protocol_deps_any="tls_gnutls_protocol tls_openssl_protocol"
2257 udp_protocol_select="network"
2258 unix_protocol_deps="sys_un_h"
2259 unix_protocol_select="network"
2262 blackframe_filter_deps="gpl"
2263 boxblur_filter_deps="gpl"
2264 bs2b_filter_deps="libbs2b"
2265 cropdetect_filter_deps="gpl"
2266 delogo_filter_deps="gpl"
2267 drawtext_filter_deps="libfreetype"
2268 frei0r_filter_deps="frei0r dlopen"
2269 frei0r_filter_extralibs='$ldl'
2270 frei0r_src_filter_deps="frei0r dlopen"
2271 frei0r_src_filter_extralibs='$ldl'
2272 hqdn3d_filter_deps="gpl"
2273 interlace_filter_deps="gpl"
2274 ocv_filter_deps="libopencv"
2275 resample_filter_deps="avresample"
2276 scale_filter_deps="swscale"
2279 avcodec_example_deps="avcodec avutil"
2280 filter_audio_example_deps="avfilter avutil"
2281 metadata_example_deps="avformat avutil"
2282 output_example_deps="avcodec avformat avutil swscale"
2283 qsvdec_example_deps="avcodec avutil libmfx h264_qsv_decoder vaapi_x11"
2284 transcode_aac_example_deps="avcodec avformat avresample"
2286 # libraries, in linking order
2287 avcodec_deps="avutil"
2288 avdevice_deps="avformat avcodec avutil"
2289 avfilter_deps="avutil"
2290 avformat_deps="avcodec avutil"
2291 avresample_deps="avutil"
2292 swscale_deps="avutil"
2295 avconv_deps="avcodec avfilter avformat avresample swscale"
2296 avconv_select="aformat_filter anull_filter asyncts_filter atrim_filter format_filter
2297 fps_filter null_filter resample_filter scale_filter
2298 setpts_filter trim_filter"
2299 avplay_deps="avcodec avformat avresample swscale sdl"
2300 avplay_libs='$sdl_libs'
2301 avplay_select="rdft transpose_filter hflip_filter vflip_filter"
2302 avprobe_deps="avcodec avformat"
2306 texi2html_deps="doc"
2308 # default parameters
2310 logfile="config.log"
2312 # installation paths
2313 prefix_default="/usr/local"
2314 bindir_default='${prefix}/bin'
2315 datadir_default='${prefix}/share/avconv'
2316 docdir_default='${prefix}/share/doc/libav'
2317 incdir_default='${prefix}/include'
2318 libdir_default='${prefix}/lib'
2319 mandir_default='${prefix}/share/man'
2320 shlibdir_default="$libdir_default"
2325 host_cc_default="gcc"
2330 pkg_config_default=pkg-config
2336 arch_default=$(uname -m)
2341 target_os_default=$(tolower $(uname -s))
2342 host_os=$target_os_default
2344 # configurable options
2345 enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST
2350 enable faan faandct faanidct
2351 enable optimizations
2352 enable safe_bitstream_reader
2354 enable swscale_alpha
2355 enable valgrind_backtrace
2357 # By default, enable only those hwaccels that have no external dependencies.
2358 enable d3d11va dxva2 vda vdpau
2361 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2364 FULLNAME='$(NAME)$(BUILDSUF)'
2365 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2368 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2369 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2370 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2371 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2372 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2373 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2393 host_cflags_filter=echo
2394 host_ldflags_filter=echo
2396 target_path='$(CURDIR)'
2398 # since the object filename is not given with the -MM flag, the compiler
2399 # is only able to print the basename, and we must add the path ourselves
2400 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2404 if test -f configure; then
2407 source_path=$(cd $(dirname "$0"); pwd)
2408 echo "$source_path" | grep -q '[[:blank:]]' &&
2409 die "Out of tree builds are impossible with whitespace in source path."
2410 test -e "$source_path/config.h" &&
2411 die "Out of tree builds are impossible with config.h in source dir."
2418 LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
2424 file=$source_path/$3
2425 sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2428 ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
2429 DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
2430 HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
2431 PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
2432 BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
2433 MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
2434 DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
2435 OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
2436 INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
2437 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
2438 FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
2454 for n in $COMPONENT_LIST; do
2455 v=$(toupper ${n%s})_LIST
2457 eval ${n}_if_any="\$$v"
2460 enable $ARCH_EXT_LIST
2463 echo "Unknown option \"$1\"."
2464 echo "See $0 --help for available options."
2469 cat | tr ' ' '\n' | sort | pr -r -3 -t
2475 echo $* | sed s/$suffix//g | print_3_columns
2487 is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
2488 echo "prob ${prob:-0.5}"
2496 random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
2497 $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2506 --extra-ldexeflags=*)
2507 add_ldexeflags $optval
2510 add_extralibs $optval
2513 disable $INDEV_LIST $OUTDEV_LIST
2516 debuglevel="$optval"
2519 disable $PROGRAM_LIST
2521 --disable-everything)
2522 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2525 map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2526 disable $LIBRARY_LIST $PROGRAM_LIST doc
2528 --enable-random|--disable-random)
2529 action=${opt%%-random}
2530 do_random ${action#--} $COMPONENT_LIST
2532 --enable-random=*|--disable-random=*)
2533 action=${opt%%-random=*}
2534 do_random ${action#--} $optval
2536 --enable-*=*|--disable-*=*)
2537 eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
2538 is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
2539 eval list=\$$(toupper $thing)_LIST
2540 name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
2541 $action $(filter "$name" $list)
2543 --enable-avserver|--disable-avserver*)
2544 warn "avserver has been removed, the ${opt} option is only"\
2545 "provided for compatibility and will be removed in the future"
2547 --enable-?*|--disable-?*)
2548 eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2549 if is_in $option $COMPONENT_LIST; then
2550 test $action = disable && action=unset
2551 eval $action \$$(toupper ${option%s})_LIST
2552 elif is_in $option $CMDLINE_SELECT; then
2559 NAME="${opt#--list-}"
2560 is_in $NAME $COMPONENT_LIST || die_unknown $opt
2562 eval show_list $NAME \$$(toupper $NAME)_LIST
2564 --help|-h) show_help
2567 optname="${opt%%=*}"
2568 optname="${optname#--}"
2569 optname=$(echo "$optname" | sed 's/-/_/g')
2570 if is_in $optname $CMDLINE_SET; then
2571 eval $optname='$optval'
2572 elif is_in $optname $CMDLINE_APPEND; then
2573 append $optname "$optval"
2585 disabled logging && logfile=/dev/null
2587 echo "# $0 $LIBAV_CONFIGURATION" > $logfile
2590 case "$toolchain" in
2593 add_cflags -fsanitize=address
2594 add_ldflags -fsanitize=address
2598 add_cflags -fsanitize=thread -pie
2599 add_ldflags -fsanitize=thread -pie
2603 add_cflags -fsanitize=undefined -O1
2604 add_ldflags -fsanitize=undefined
2608 add_cflags -fsanitize=address
2609 add_ldflags -fsanitize=address
2613 add_cflags -fsanitize=thread -pie -fPIC
2614 add_ldflags -fsanitize=thread -pie -fPIC
2618 add_cflags -fsanitize=undefined
2619 add_ldflags -fsanitize=undefined
2622 target_exec_default="valgrind"
2623 target_exec_args="--alloc-fn=av_malloc --alloc-fn=av_mallocz"
2626 target_exec_default="valgrind"
2627 target_exec_args="--track-origins=yes --leak-check=full"
2630 # Check whether the current MSVC version needs the C99 converter.
2631 # From MSVC 2013 (compiler major version 18) onwards, it does actually
2632 # support enough of C99 to build libav. Default to the new
2633 # behaviour if the regexp was unable to match anything, since this
2634 # successfully parses the version number of existing supported
2635 # versions that require the converter (MSVC 2010 and 2012).
2636 cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
2637 if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
2640 cc_default="c99wrap cl"
2642 ld_default="$source_path/compat/windows/mslink"
2643 nm_default="dumpbin -symbols"
2650 target_os_default="win32"
2651 # Use a relative path for TMPDIR. This makes sure all the
2652 # ffconf temp files are written with a relative path, avoiding
2653 # issues with msys/win32 path conversion for MSVC parameters
2654 # such as -Fo<file> or -out:<file>.
2660 nm_default="dumpbin -symbols"
2662 target_os_default="win32"
2666 add_cflags -fprofile-arcs -ftest-coverage
2667 add_ldflags -fprofile-arcs -ftest-coverage
2670 add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
2671 add_cflags -fno-strict-overflow -fstack-protector-all
2672 add_ldflags -Wl,-z,relro -Wl,-z,now
2675 die "Unknown toolchain $toolchain"
2679 test -n "$cross_prefix" && enable cross_compile
2681 if enabled cross_compile; then
2682 test -n "$arch" && test -n "$target_os" ||
2683 die "Must specify target arch and OS when cross-compiling"
2686 ar_default="${cross_prefix}${ar_default}"
2687 cc_default="${cross_prefix}${cc_default}"
2688 nm_default="${cross_prefix}${nm_default}"
2689 pkg_config_default="${cross_prefix}${pkg_config_default}"
2690 ranlib="${cross_prefix}${ranlib}"
2691 strip="${cross_prefix}${strip}"
2693 sysinclude_default="${sysroot}/usr/include"
2695 set_default arch cc pkg_config sysinclude target_exec target_os
2696 enabled cross_compile || host_cc_default=$cc
2699 if ! $pkg_config --version >/dev/null 2>&1; then
2700 warn "$pkg_config not found, library detection may fail."
2706 mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
2710 EXESUF=$(exesuf $target_os)
2711 HOSTEXESUF=$(exesuf $host_os)
2713 # set temporary file name
2714 : ${TMPDIR:=$TEMPDIR}
2718 if ! check_cmd mktemp -u XXXXXX; then
2719 # simple replacement for missing mktemp
2720 # NOT SAFE FOR GENERAL USE
2722 echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
2727 tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
2728 (set -C; exec > $tmp) 2>/dev/null ||
2729 die "Unable to create temporary file in $TMPDIR."
2730 append TMPFILES $tmp
2734 trap 'rm -f -- $TMPFILES' EXIT
2738 tmpfile TMPE $EXESUF
2749 # make sure we can execute files in $TMPDIR
2750 cat > $TMPSH 2>> $logfile <<EOF
2753 chmod +x $TMPSH >> $logfile 2>&1
2754 if ! $TMPSH >> $logfile 2>&1; then
2756 Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
2757 variable to another directory and make sure that it is not mounted noexec.
2759 die "Sanity test failed."
2765 # Filter out MSVC cl.exe options from cflags that shouldn't
2766 # be passed to gas-preprocessor
2776 -std=c99) echo -c99 ;;
2777 -mcpu=*) echo -arch ${flag#*=} ;;
2778 -mieee) echo -ieee ;;
2779 -O*|-fast) echo $flag ;;
2780 -fno-math-errno) echo -assume nomath_errno ;;
2782 -Wall) echo -msg_enable level2 ;;
2783 -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
2784 -Wl,*) echo $flag ;;
2794 -Wno-switch) echo -Wno-switch-enum ;;
2795 -Wno-format-zero-length) ;;
2796 -Wdisabled-optimization) ;;
2797 -Wno-pointer-sign) echo -Wno-other ;;
2803 msvc_common_flags(){
2806 # In addition to specifying certain flags under the compiler
2807 # specific filters, they must be specified here as well or else the
2808 # generic catch all at the bottom will print the original flag.
2812 -fomit-frame-pointer) ;;
2816 -fno-signed-zeros) ;;
2820 -lz) echo zlib.lib ;;
2821 -lavifil32) echo vfw32.lib ;;
2822 -lavicap32) echo vfw32.lib user32.lib ;;
2823 -l*) echo ${flag#-l}.lib ;;
2824 -L*) echo -libpath:${flag#-L} ;;
2831 msvc_common_flags "$@"
2834 -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
2835 -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
2836 -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
2837 -wd4273 -wd4554 -wd4701 ;;
2843 msvc_common_flags "$@"
2846 # Despite what Intel's documentation says -Wall, which is supported
2847 # on Windows, does enable remarks so disable them here.
2848 -Wall) echo $flag -Qdiag-disable:remark ;;
2849 -std=c99) echo -Qstd=c99 ;;
2857 -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
2858 -fomit-frame-pointer) echo -Mnoframe ;;
2869 case "${flag#*=}" in
2870 native) echo -xtarget=native ;;
2871 v9|niagara) echo -xarch=sparc ;;
2872 ultrasparc) echo -xarch=sparcvis ;;
2873 ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
2874 i586|pentium) echo -xchip=pentium ;;
2875 i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
2876 pentium3*|c3-2) echo -xtarget=pentium3 ;;
2877 pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
2878 pentium4*) echo -xtarget=pentium4 ;;
2879 prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
2880 *-sse3) echo -xarch=sse3 ;;
2881 core2) echo -xarch=ssse3 -xchip=core2 ;;
2882 corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
2883 corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
2884 amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
2885 athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
2886 k8|opteron|athlon64|athlon-fx)
2887 echo -xarch=sse2a ;;
2888 athlon*) echo -xarch=pentium_proa ;;
2891 -std=c99) echo -xc99 ;;
2892 -fomit-frame-pointer) echo -xregs=frameptr ;;
2893 -fPIC) echo -KPIC -xcode=pic32 ;;
2894 -W*,*) echo $flag ;;
2895 -f*-*|-W*|-mimpure-text) ;;
2906 case "${flag#*=}" in
2907 armv7-a|cortex-a*) echo -mv=7a8 ;;
2908 armv7-r|cortex-r*) echo -mv=7r4 ;;
2909 armv7-m|cortex-m*) echo -mv=7m3 ;;
2910 armv6*|arm11*) echo -mv=6 ;;
2911 armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
2913 armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
2916 -mfpu=neon) echo --float_support=vfpv3 --neon ;;
2917 -mfpu=vfp) echo --float_support=vfpv2 ;;
2918 -mfpu=vfpv3) echo --float_support=vfpv3 ;;
2919 -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
2920 -msoft-float) echo --float_support=vfplib ;;
2921 -O[0-3]|-mf=*) echo $flag ;;
2923 -pds=*) echo $flag ;;
2924 -D*|-I*) echo $flag ;;
2925 --gcc|--abi=*) echo $flag ;;
2935 unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
2936 unset _ld_o _ldflags _ld_lib _ld_path
2937 unset _depflags _DEPCMD _DEPFLAGS
2940 if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
2942 gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
2943 _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
2944 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2947 elif $_cc -v 2>&1 | grep -qi ^gcc; then
2949 gcc_version=$($_cc --version | head -n1)
2950 gcc_basever=$($_cc -dumpversion)
2951 gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
2952 gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
2953 _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
2954 if ! $_cc -dumpversion | grep -q '^2\.'; then
2955 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2959 elif $_cc --version 2>/dev/null | grep -q ^icc; then
2961 _ident=$($_cc --version | head -n1)
2966 elif $_cc -v 2>&1 | grep -q xlc; then
2968 _ident=$($_cc -qversion 2>/dev/null | head -n1)
2970 _cflags_size='-O5 -qcompact'
2971 elif $_cc -V 2>/dev/null | grep -q Compaq; then
2973 _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
2975 _cflags_speed='-fast'
2977 _flags_filter=ccc_flags
2978 elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
2979 test -d "$sysroot" || die "No valid sysroot specified."
2981 _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
2982 armcc_conf="$PWD/armcc.conf"
2983 $_cc --arm_linux_configure \
2984 --arm_linux_config_file="$armcc_conf" \
2985 --configure_sysroot="$sysroot" \
2986 --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
2987 die "Error creating armcc configuration file."
2988 $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
2989 _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
2990 as_default="${cross_prefix}gcc"
2994 elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
2996 _ident=$($_cc -version | head -n1 | tr -s ' ')
2997 _flags='--gcc --abi=eabi -me'
3000 _depflags='-ppa -ppd=$(@:.o=.d)'
3001 _cflags_speed='-O3 -mf=5'
3002 _cflags_size='-O3 -mf=2'
3003 _flags_filter=tms470_flags
3004 elif $_cc -v 2>&1 | grep -q clang; then
3006 _ident=$($_cc --version | head -n1)
3007 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3010 elif $_cc -V 2>&1 | grep -q Sun; then
3012 _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
3013 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3014 _DEPFLAGS='-xM1 -xc99'
3017 _cflags_size='-O5 -xspace'
3018 _flags_filter=suncc_flags
3019 elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
3021 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3022 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3025 _flags_filter='filter_out -Wdisabled-optimization'
3026 elif $_cc -v 2>&1 | grep -q Open64; then
3028 _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3029 _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3032 _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3033 elif $_cc -V 2>&1 | grep -q Portland; then
3035 _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3036 opt_common='-alias=ansi -Mdse -Mlre -Mpre'
3037 _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3038 _cflags_size="-O2 -Munroll=c:1 $opt_common"
3040 _flags_filter=pgi_flags
3041 elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
3043 _ident=$($_cc | head -n1)
3044 # 4509: "This form of conditional instruction is deprecated"
3045 _flags="-nologo -ignore 4509"
3046 _flags_filter=armasm_flags
3047 elif $_cc -nologo- 2>&1 | grep -q Microsoft; then
3049 _ident=$($_cc 2>&1 | head -n1)
3050 _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3051 _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3054 if $_cc -nologo- 2>&1 | grep -q Linker; then
3061 _flags_filter=msvc_flags
3063 _ld_path='-libpath:'
3065 _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS'
3066 elif $_cc 2>&1 | grep -q Intel; then
3068 _ident=$($_cc 2>&1 | head -n1)
3069 _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
3070 # Not only is O3 broken on 13.x+ but it is slower on all previous
3071 # versions (tested) as well.
3073 _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3074 if $_cc 2>&1 | grep -q Linker; then
3081 _flags_filter=icl_flags
3083 _ld_path='-libpath:'
3084 # -Qdiag-error to make icl error when seeing certain unknown arguments
3085 _flags='-nologo -Qdiag-error:4044,10157'
3086 # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
3087 # with MSVC which enables it by default.
3088 _cflags='-D_USE_MATH_DEFINES -Qms0 -Qvec- -Qsimd- -GS'
3089 elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3091 _ident=$($_cc --version | head -n1)
3095 _flags_filter=cparser_flags
3098 eval ${pfx}_type=\$_type
3099 eval ${pfx}_ident=\$_ident
3103 eval ${1}_C=\${_cc_c-\${${1}_C}}
3104 eval ${1}_E=\${_cc_e-\${${1}_E}}
3105 eval ${1}_O=\${_cc_o-\${${1}_O}}
3107 if [ -n "$_depflags" ]; then
3108 eval ${1}_DEPFLAGS=\$_depflags
3110 eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3111 eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3112 eval DEP${1}FLAGS=\$_flags
3117 cflags_filter=$_flags_filter
3118 cflags_speed=$_cflags_speed
3119 cflags_size=$_cflags_size
3120 cflags_noopt=$_cflags_noopt
3121 add_cflags $_flags $_cflags
3122 cc_ldflags=$_ldflags
3125 probe_cc hostcc "$host_cc"
3126 host_cflags_filter=$_flags_filter
3127 add_host_cflags $_flags $_cflags
3130 test -n "$cc_type" && enable $cc_type ||
3131 warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3133 : ${as_default:=$cc}
3134 : ${dep_cc_default:=$cc}
3135 : ${ld_default:=$cc}
3136 : ${host_ld_default:=$host_cc}
3137 set_default ar as dep_cc ld host_ld
3140 asflags_filter=$_flags_filter
3141 add_asflags $_flags $_cflags
3145 ldflags_filter=$_flags_filter
3146 add_ldflags $_flags $_ldflags
3147 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3149 LD_LIB=${_ld_lib-$LD_LIB}
3150 LD_PATH=${_ld_path-$LD_PATH}
3152 probe_cc hostld "$host_ld"
3153 host_ldflags_filter=$_flags_filter
3154 add_host_ldflags $_flags $_ldflags
3155 HOSTLD_O=${_ld_o-$HOSTLD_O}
3157 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3158 probe_cc depcc "$dep_cc"
3159 CCDEP=${_DEPCMD:-$DEPCMD}
3160 CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3164 if $ar 2>&1 | grep -q Microsoft; then
3167 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3170 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3171 arflags='-Xany -r -c'
3178 add_cflags $extra_cflags
3179 add_asflags $extra_cflags
3181 if test -n "$sysroot"; then
3184 add_cppflags --sysroot="$sysroot"
3185 add_ldflags --sysroot="$sysroot"
3188 add_cppflags -I"$sysinclude"
3189 add_ldflags --sysroot="$sysroot"
3194 if test "$cpu" = host; then
3195 enabled cross_compile &&
3196 die "--cpu=host makes no sense when cross-compiling."
3201 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3203 s/.*$1=\\([^ ]*\\).*/\\1/
3208 cpu=$(check_native -march || check_native -mcpu)
3212 test "${cpu:-host}" = host &&
3213 die "--cpu=host not supported with compiler $cc"
3216 # Deal with common $arch aliases
3230 "Power Macintosh"|ppc*|powerpc*)
3245 i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
3250 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3253 # Add processor-specific flags
3254 if enabled aarch64; then
3258 cpuflags="-march=$cpu"
3261 cpuflags="-mcpu=$cpu"
3265 elif enabled alpha; then
3267 cpuflags="-mcpu=$cpu"
3269 elif enabled arm; then
3272 check_cpp_condition stddef.h \
3273 "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3278 if check_arm_arch 4; then echo armv4;
3279 elif check_arm_arch 4T; then echo armv4t;
3280 elif check_arm_arch 5; then echo armv5;
3281 elif check_arm_arch 5E; then echo armv5e;
3282 elif check_arm_arch 5T; then echo armv5t;
3283 elif check_arm_arch 5TE; then echo armv5te;
3284 elif check_arm_arch 5TEJ; then echo armv5te;
3285 elif check_arm_arch 6; then echo armv6;
3286 elif check_arm_arch 6J; then echo armv6j;
3287 elif check_arm_arch 6K; then echo armv6k;
3288 elif check_arm_arch 6Z; then echo armv6z;
3289 elif check_arm_arch 6ZK; then echo armv6zk;
3290 elif check_arm_arch 6T2; then echo armv6t2;
3291 elif check_arm_arch 7; then echo armv7;
3292 elif check_arm_arch 7A 7_A; then echo armv7-a;
3293 elif check_arm_arch 7S; then echo armv7-a;
3294 elif check_arm_arch 7R 7_R; then echo armv7-r;
3295 elif check_arm_arch 7M 7_M; then echo armv7-m;
3296 elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3297 elif check_arm_arch 8A 8_A; then echo armv8-a;
3301 [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3305 cpuflags="-march=$cpu"
3306 subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
3309 cpuflags="-mcpu=$cpu"
3311 cortex-a*) subarch=armv7a ;;
3312 cortex-r*) subarch=armv7r ;;
3313 cortex-m*) enable thumb; subarch=armv7m ;;
3314 arm11*) subarch=armv6 ;;
3315 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
3316 armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
3317 *) subarch=$(probe_arm_arch) ;;
3323 armv5t*) enable fast_clz ;;
3324 armv[6-8]*) enable fast_clz fast_unaligned ;;
3327 elif enabled avr32; then
3332 cpuflags="-mpart=$cpu"
3336 cpuflags="-march=$cpu"
3340 cpuflags="-mcpu=$cpu"
3344 cpuflags="-march=$cpu"
3348 elif enabled bfin; then
3350 cpuflags="-mcpu=$cpu"
3352 elif enabled mips; then
3354 cpuflags="-march=$cpu"
3356 elif enabled ppc; then
3360 case $(tolower $cpu) in
3361 601|ppc601|powerpc601)
3362 cpuflags="-mcpu=601"
3365 603*|ppc603*|powerpc603*)
3366 cpuflags="-mcpu=603"
3369 604*|ppc604*|powerpc604*)
3370 cpuflags="-mcpu=604"
3373 g3|75*|ppc75*|powerpc75*)
3374 cpuflags="-mcpu=750"
3377 g4|745*|ppc745*|powerpc745*)
3378 cpuflags="-mcpu=7450"
3381 74*|ppc74*|powerpc74*)
3382 cpuflags="-mcpu=7400"
3385 g5|970|ppc970|powerpc970)
3386 cpuflags="-mcpu=970"
3390 cpuflags="-mcpu=$cpu"
3394 cpuflags="-mcpu=$cpu"
3398 cpuflags="-mcpu=cell"
3403 cpuflags="-mcpu=e500mc"
3407 cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3412 cpuflags="-mcpu=8540 -mhard-float"
3418 elif enabled sparc; then
3421 cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
3422 cpuflags="-mcpu=$cpu"
3424 ultrasparc*|niagara[234])
3425 cpuflags="-mcpu=$cpu"
3429 elif enabled x86; then
3433 cpuflags="-march=$cpu"
3437 # targets that do NOT support nopl and conditional mov (cmov)
3438 pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
3439 cpuflags="-march=$cpu"
3442 # targets that do support nopl and conditional mov (cmov)
3443 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*)
3444 cpuflags="-march=$cpu"
3448 # targets that do support conditional mov but on which it's slow
3449 pentium4|pentium4m|prescott|nocona)
3450 cpuflags="-march=$cpu"
3458 if [ "$cpu" != generic ]; then
3459 add_cflags $cpuflags
3460 add_asflags $cpuflags
3463 # compiler sanity check
3465 int main(void){ return 0; }
3467 if test "$?" != 0; then
3468 echo "$cc is unable to create an executable file."
3469 if test -z "$cross_prefix" && ! enabled cross_compile ; then
3470 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3471 echo "Only do this if you know what cross compiling means."
3473 die "C compiler test failed."
3476 add_cppflags -D_ISOC99_SOURCE
3477 check_cflags -std=c99
3478 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3481 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
3485 add_host_cppflags -D_ISOC99_SOURCE
3486 check_host_cflags -std=c99
3487 check_host_cflags -Wall
3488 check_host_cflags -O3
3494 check_code cc "" "int test[2*($expr) - 1]" &&
3495 subarch=$arch64 || subarch=$arch32
3503 check_64bit mips mips64 '_MIPS_SIM > 1'
3507 check_64bit parisc parisc64 'sizeof(void *) > 4'
3511 check_64bit ppc ppc64 'sizeof(void *) > 4'
3515 check_64bit s390 s390x 'sizeof(void *) > 4'
3519 check_64bit sparc sparc64 'sizeof(void *) > 4'
3523 check_64bit x86_32 x86_64 'sizeof(void *) > 4'
3524 if test "$subarch" = "x86_64"; then
3531 enabled spic && enable_weak pic
3537 add_cppflags '-I\$(SRC_PATH)/compat/aix'
3538 enabled shared && add_ldflags -Wl,-brtl
3542 enable section_data_rel_ro
3543 SLIB_INSTALL_NAME='$(SLIBNAME)'
3545 # soname not set on purpose
3549 prefix_default="/boot/common"
3550 network_extralibs="-lnetwork"
3554 SHFLAGS='-shared -Wl,-h,$$(@F)'
3555 enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
3556 network_extralibs="-lsocket -lnsl"
3557 # When using suncc to build, the Solaris linker will mark
3558 # an executable with each instruction set encountered by
3559 # the Solaris assembler. As our libraries contain their own
3560 # guards for processor-specific code, instead suppress
3561 # generation of the HWCAPS ELF section on Solaris x86 only.
3562 enabled_all suncc x86 &&
3563 echo "hwcap_1 = OVERRIDE;" > mapfile &&
3564 add_ldflags -Wl,-M,mapfile
3565 nm_default='nm -P -g'
3569 oss_indev_extralibs="-lossaudio"
3570 oss_outdev_extralibs="-lossaudio"
3575 SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
3577 oss_indev_extralibs="-lossaudio"
3578 oss_outdev_extralibs="-lossaudio"
3586 add_extralibs -lpoll -lgnugetopt
3589 enabled ppc && add_asflags -force_cpusubtype_ALL
3590 SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
3591 enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
3592 add_ldflags -Wl,-dynamic,-search_paths_first
3594 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
3595 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
3597 enabled x86_64 && objformat="macho64"
3598 enabled_any pic shared ||
3599 { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
3602 if test $target_os = "mingw32ce"; then
3608 if enabled x86_64; then
3609 LIBTARGET="i386:x86-64"
3610 elif enabled arm; then
3613 check_ldflags -Wl,--nxcompat
3614 check_ldflags -Wl,--dynamicbase
3615 shlibdir_default="$bindir_default"
3618 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3619 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3620 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)'
3621 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3623 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
3624 SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3625 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'
3627 dlltool="${cross_prefix}dlltool"
3633 if enabled shared; then
3634 # Link to the import library instead of the normal static library
3637 # Cannot build both shared and static libs with MSVC or icl.
3640 shlibdir_default="$bindir_default"
3643 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3644 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3645 SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
3646 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3648 SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
3649 SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3650 SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
3657 shlibdir_default="$bindir_default"
3660 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3661 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3662 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
3664 SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
3665 SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
3669 *-dos|freedos|opendos)
3670 network_extralibs="-lsocket"
3673 add_cppflags -U__STRICT_ANSI__
3677 enable section_data_rel_ro
3681 ranlib="echo ignoring ranlib"
3686 add_cppflags -D_GNU_SOURCE
3687 add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
3688 SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
3692 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
3693 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
3694 SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
3695 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
3696 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
3697 echo EXPORTS >> $(SUBDIR)$(NAME).def; \
3698 emxexp $(OBJS) >> $(SUBDIR)$(NAME).def'
3699 SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
3700 emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
3701 SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
3705 add_cppflags -D_BSD_SOURCE
3710 add_cppflags -D_QNX_SOURCE
3711 network_extralibs="-lsocket"
3716 add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
3717 add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
3718 add_ldflags -Wl,--target1-abs,--no-undefined \
3719 -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
3720 -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
3721 add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
3722 -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
3723 -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
3726 add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
3731 add_cppflags -D_C99_SNPRINTF_EXTENSION \
3732 -D_REENTRANT_SOURCE \
3733 -D_RESEARCH_SOURCE \
3736 add_compat strtod.o strtod=avpriv_strtod
3737 network_extralibs='-lbsd'
3738 exeobjs=compat/plan9/main.o
3744 die "Unknown OS '$target_os'."
3748 # determine libc flavour
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__
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 eval test \$${pfx_no_}cc_type = "gcc" &&
3778 add_${pfx}cppflags -D__printf__=__gnu_printf__
3779 elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
3780 eval ${pfx}libc_type=msvcrt
3781 if check_${pfx}cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION < 14"; then
3782 if [ "$pfx" = host_ ]; then
3783 add_host_cppflags -Dsnprintf=_snprintf
3785 add_compat strtod.o strtod=avpriv_strtod
3786 add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
3787 _snprintf=avpriv_snprintf \
3788 vsnprintf=avpriv_vsnprintf
3791 # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
3792 # 0x601 by default unless something else is set by the user.
3793 # This can easily lead to us detecting functions only present
3794 # in such new versions and producing binaries requiring windows 7.0.
3795 # Therefore explicitly set the default to XP unless the user has
3796 # set something else on the command line.
3797 check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
3798 add_${pfx}cppflags -D_WIN32_WINNT=0x0502
3799 elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
3800 eval ${pfx}libc_type=klibc
3801 elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
3802 eval ${pfx}libc_type=bionic
3803 elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
3804 eval ${pfx}libc_type=solaris
3805 add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
3807 eval ${pfx}libc_type=default
3808 add_${pfx}cppflags -D_DEFAULT_SOURCE
3813 test -n "$libc_type" && enable libc_$libc_type
3815 test -n "$host_libc_type" && enable host_libc_$host_libc_type
3819 add_compat strtod.o strtod=avpriv_strtod
3823 # hacks for compiler/libc/os combinations
3825 if enabled_all tms470 libc_glibc; then
3826 CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
3827 add_cppflags -D__USER_LABEL_PREFIX__=
3828 add_cppflags -D__builtin_memset=memset
3829 add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
3830 add_cflags -pds=48 # incompatible redefinition of macro
3833 if enabled_all ccc libc_glibc; then
3834 add_ldflags -Wl,-z,now # calls to libots crash without this
3837 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
3838 add_cppflags '-I\$(SRC_PATH)/compat/float'
3841 echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
3844 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
3846 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
3848 set_default $PATHS_LIST
3851 # we need to build at least one lib type
3852 if ! enabled_any static shared; then
3854 At least one library type must be built.
3855 Specify --enable-static to build the static libraries or --enable-shared to
3856 build the shared libraries as well. To only build the shared libraries specify
3857 --disable-static in addition to --enable-shared.
3862 die_license_disabled() {
3863 enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
3866 die_license_disabled gpl libcdio
3867 die_license_disabled gpl libx264
3868 die_license_disabled gpl libx265
3869 die_license_disabled gpl libxavs
3870 die_license_disabled gpl libxvid
3871 die_license_disabled gpl x11grab
3873 die_license_disabled nonfree libfaac
3874 die_license_disabled nonfree libfdk_aac
3875 die_license_disabled nonfree nvenc
3876 die_license_disabled nonfree openssl
3878 die_license_disabled version3 libopencore_amrnb
3879 die_license_disabled version3 libopencore_amrwb
3880 die_license_disabled version3 libvo_aacenc
3881 die_license_disabled version3 libvo_amrwbenc
3883 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
3885 disabled optimizations || check_cflags -fomit-frame-pointer
3888 disabled pic && return
3891 case "$target_os" in
3901 enabled pic && enable_weak_pic
3903 check_cc <<EOF || die "Symbol mangling check failed."
3906 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
3907 extern_prefix=${sym%%ff_extern*}
3909 check_cc <<EOF && enable_weak inline_asm
3910 void foo(void) { __asm__ volatile ("" ::); }
3914 for restrict_keyword in restrict __restrict__ __restrict; do
3915 check_cc <<EOF && _restrict=$restrict_keyword && break
3916 void foo(char * $restrict_keyword p);
3920 check_cc <<EOF && enable pragma_deprecated
3921 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
3924 check_cc <<EOF && enable attribute_packed
3925 struct { int x; } __attribute__((packed)) x;
3928 check_cc <<EOF && enable attribute_may_alias
3929 union { int x; } __attribute__((may_alias)) x;
3932 check_cc <<EOF || die "endian test failed"
3933 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
3935 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
3938 log "check_gas using '$as' as AS"
3939 # :vararg is used on aarch64, arm and ppc altivec
3940 check_as <<EOF || return 1
3941 .macro m n, y:vararg=0
3946 # .altmacro is only used in arm asm
3947 ! enabled arm || check_as <<EOF || return 1
3954 if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
3956 enabled_any arm aarch64 && nogas=die
3957 enabled_all ppc altivec && nogas=warn
3961 arm*) gaspp_as_type=armasm; as_noop=-h ;;
3962 gcc) gaspp_as_type=gas ;;
3963 *) gaspp_as_type=$as_type ;;
3966 [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
3968 check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- $as $as_noop &&
3969 gas="gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- $as"
3971 if ! check_gas ; then
3974 $nogas "GNU assembler not found, install/update gas-preprocessor"
3977 check_as <<EOF && enable as_func
3983 check_inline_asm inline_asm_labels '"1:\n"'
3985 if enabled aarch64; then
3986 enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
3987 # internal assembler in clang 3.3 does not support this instruction
3988 enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
3989 enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
3991 map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
3993 elif enabled alpha; then
3997 elif enabled arm; then
3999 check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb
4000 enabled thumb && check_cflags -mthumb || check_cflags -marm
4002 if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
4004 elif check_cpp_condition stddef.h "defined _M_ARM_FP && _M_ARM_FP >= 30"; then
4006 elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
4007 case "${cross_prefix:-$cc}" in
4008 *hardfloat*) enable vfp_args; fpabi=vfp ;;
4009 *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4010 __asm__ (".eabi_attribute 28, 1");
4011 int main(void) { return 0; }
4014 warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
4017 enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
4018 enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
4019 enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
4020 enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
4021 enabled vfp && check_insn vfp 'fadds s0, s0, s0'
4022 enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
4024 [ $target_os = linux ] || [ $target_os = android ] ||
4025 map 'enabled_any ${v}_external ${v}_inline || disable $v' \
4028 check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
4030 check_as <<EOF && enable as_dn_directive
4035 # llvm's integrated assembler supports .object_arch from llvm 3.5
4036 [ "$objformat" = elf ] && check_as <<EOF && enable as_object_arch
4040 [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
4042 elif enabled mips; then
4044 check_inline_asm loongson '"dmult.g $1, $2, $3"'
4046 elif enabled parisc; then
4048 if enabled gcc; then
4049 case $($cc -dumpversion) in
4050 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
4054 elif enabled ppc; then
4056 enable local_aligned_8 local_aligned_16
4058 check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
4059 check_inline_asm ibm_asm '"add 0, 0, 0"'
4060 check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
4061 check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4063 # AltiVec flags: The FSF version of GCC differs from the Apple version
4064 if enabled altivec; then
4065 check_cflags -maltivec -mabi=altivec &&
4066 { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
4067 check_cflags -faltivec
4069 # check if our compiler supports Motorola AltiVec C API
4070 check_cc <<EOF || disable altivec
4073 vector signed int v1 = (vector signed int) { 0 };
4074 vector signed int v2 = (vector signed int) { 1 };
4075 v1 = vec_add(v1, v2);
4080 enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
4083 if enabled vsx; then
4084 check_cflags -mvsx &&
4085 check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
4088 if enabled power8; then
4089 check_cpp_condition "altivec.h" "defined(_ARCH_PWR8)" || disable power8
4092 elif enabled x86; then
4094 check_builtin rdtsc intrin.h "__rdtsc()"
4095 check_builtin mm_empty mmintrin.h "_mm_empty()"
4097 enable local_aligned_8 local_aligned_16
4099 # check whether EBP is available on x86
4100 # As 'i' is stored on the stack, this program will crash
4101 # if the base pointer is used to access it because the
4102 # base pointer is cleared in the inline assembly code.
4103 check_exec_crash <<EOF && enable ebp_available
4105 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
4109 # check whether EBX is available on x86
4110 check_inline_asm ebx_available '""::"b"(0)' &&
4111 check_inline_asm ebx_available '"":::"%ebx"'
4113 # check whether xmm clobbers are supported
4114 check_inline_asm xmm_clobbers '"":::"%xmm0"'
4116 # check whether binutils is new enough to compile SSSE3/MMXEXT
4117 enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
4118 enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
4120 if ! disabled_any asm mmx yasm; then
4121 if check_cmd $yasmexe --version; then
4122 enabled x86_64 && yasm_extra="-m amd64"
4123 yasm_debug="-g dwarf2"
4124 elif check_cmd nasm -v; then
4126 yasm_debug="-g -F dwarf"
4127 enabled x86_64 && test "$objformat" = elf && objformat=elf64
4130 YASMFLAGS="-f $objformat $yasm_extra"
4131 enabled pic && append YASMFLAGS "-DPIC"
4132 test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
4133 case "$objformat" in
4134 elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
4137 check_yasm "movbe ecx, [5]" && enable yasm ||
4138 die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
4139 check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
4140 check_yasm "vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external
4141 check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4142 check_yasm "CPU amdnop" || disable cpunop
4146 athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
4153 check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
4155 check_ldflags -Wl,--as-needed
4157 if check_func dlopen; then
4159 elif check_func dlopen -ldl; then
4163 if ! disabled network; then
4164 check_func getaddrinfo $network_extralibs
4165 check_func getservbyport $network_extralibs
4166 check_func inet_aton $network_extralibs
4168 check_type netdb.h "struct addrinfo"
4169 check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
4170 check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
4171 check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
4172 check_type poll.h "struct pollfd"
4173 check_type netinet/sctp.h "struct sctp_event_subscribe"
4174 check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
4175 check_type netinet/in.h "struct sockaddr_in6"
4176 check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
4177 check_type "sys/types.h sys/socket.h" socklen_t
4179 # Prefer arpa/inet.h over winsock2
4180 if check_header arpa/inet.h ; then
4181 check_func closesocket
4182 elif check_header winsock2.h ; then
4183 check_func_headers winsock2.h closesocket -lws2 &&
4184 network_extralibs="-lws2" ||
4185 { check_func_headers winsock2.h closesocket -lws2_32 &&
4186 network_extralibs="-lws2_32"; } || disable winsock2_h network
4187 check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
4189 check_type ws2tcpip.h socklen_t
4190 check_type ws2tcpip.h "struct addrinfo"
4191 check_type ws2tcpip.h "struct group_source_req"
4192 check_type ws2tcpip.h "struct ip_mreq_source"
4193 check_type ws2tcpip.h "struct ipv6_mreq"
4194 check_type winsock2.h "struct pollfd"
4195 check_struct winsock2.h "struct sockaddr" sa_len
4196 check_type ws2tcpip.h "struct sockaddr_in6"
4197 check_type ws2tcpip.h "struct sockaddr_storage"
4203 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4204 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
4205 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
4206 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4208 check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
4209 check_func ${malloc_prefix}memalign && enable memalign
4210 check_func ${malloc_prefix}posix_memalign && enable posix_memalign
4212 check_cpp_condition unistd.h "defined(_POSIX_MONOTONIC_CLOCK)" &&
4213 check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
4217 check_func gethrtime
4219 check_func getrusage
4220 check_func gettimeofday
4223 check_func localtime_r
4224 check_func mach_absolute_time
4228 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4229 check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt; }
4230 check_func sched_getaffinity
4231 check_func setrlimit
4232 check_func strerror_r
4237 check_func_headers io.h setmode
4238 check_func_headers stdlib.h getenv
4240 check_func_headers windows.h CoTaskMemFree -lole32
4241 check_func_headers windows.h GetProcessAffinityMask
4242 check_func_headers windows.h GetProcessTimes
4243 check_func_headers windows.h GetSystemTimeAsFileTime
4244 check_func_headers windows.h LoadLibrary
4245 check_func_headers windows.h MapViewOfFile
4246 check_func_headers windows.h SetConsoleTextAttribute
4247 check_func_headers windows.h Sleep
4248 check_func_headers windows.h VirtualAlloc
4249 check_struct windows.h "CONDITION_VARIABLE" Ptr
4251 check_header direct.h
4252 check_header dlfcn.h
4253 check_header d3d11.h
4255 check_header dxva2api.h
4257 check_header mach/mach_time.h
4258 check_header malloc.h
4260 check_header sys/mman.h
4261 check_header sys/param.h
4262 check_header sys/resource.h
4263 check_header sys/select.h
4264 check_header sys/time.h
4265 check_header sys/un.h
4266 check_header unistd.h
4267 check_header valgrind/valgrind.h
4268 check_header vdpau/vdpau.h
4269 check_header vdpau/vdpau_x11.h
4270 check_header VideoDecodeAcceleration/VDADecoder.h
4271 check_header windows.h
4272 check_header X11/extensions/XvMClib.h
4274 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
4275 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
4276 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
4278 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
4280 check_type "windows.h dxva.h" "DXVA_PicParams_HEVC" -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -D_CRT_BUILD_DESKTOP_APP=0
4281 check_type "windows.h d3d11.h" "ID3D11VideoDecoder"
4282 check_type "d3d9.h dxva2api.h" DXVA2_ConfigPictureDecode -D_WIN32_WINNT=0x0600
4284 if ! disabled w32threads && ! enabled pthreads; then
4285 check_func_headers "windows.h process.h" _beginthreadex &&
4286 enable w32threads || disable w32threads
4289 # check for some common methods of building with pthread support
4290 # do this before the optional library checks as some of them require pthreads
4291 if ! disabled pthreads && ! enabled w32threads; then
4293 if check_func pthread_join -pthread; then
4295 add_extralibs -pthread
4296 elif check_func pthread_join -pthreads; then
4297 add_cflags -pthreads
4298 add_extralibs -pthreads
4299 elif check_func pthread_join -lpthreadGC2; then
4300 add_extralibs -lpthreadGC2
4301 elif check_lib pthread.h pthread_join -lpthread; then
4303 elif ! check_func pthread_join; then
4308 disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
4309 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
4311 check_lib math.h sin -lm && LIBM="-lm"
4312 enabled vaapi && require vaapi va/va.h vaInitialize -lva
4318 for func in $MATH_FUNCS; do
4319 eval check_mathfunc $func \${${func}_args:-1}
4322 # these are off by default, so fail if requested and not available
4323 enabled avisynth && { check_lib2 "avisynth/avisynth_c.h windows.h" LoadLibrary ||
4324 check_lib2 "avxsynth/avxsynth_c.h dlfcn.h" dlopen -ldl ||
4325 die "ERROR: LoadLibrary/dlopen not found, or avisynth header not found"; }
4326 enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
4327 enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
4328 enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
4329 enabled libdcadec && require libdcadec libdcadec/dca_context.h dcadec_context_create -ldcadec
4330 enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
4331 enabled libfdk_aac && require_pkg_config fdk-aac "fdk-aac/aacenc_lib.h" aacEncOpen
4332 enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
4333 enabled libfreetype && require_pkg_config freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType
4334 enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
4335 check_lib "${gsm_hdr}" gsm_create -lgsm && break;
4336 done || die "ERROR: libgsm not found"; }
4337 enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
4338 enabled libmfx && require_pkg_config libmfx "mfx/mfxvideo.h" MFXInit
4339 enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
4340 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
4341 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
4342 enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
4343 enabled libopenh264 && require_pkg_config openh264 wels/codec_api.h WelsGetCodecVersion
4344 enabled libopenjpeg && { { check_header openjpeg.h && check_lib2 openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC; } ||
4345 { require_pkg_config libopenjpeg1 openjpeg.h opj_version -DOPJ_STATIC; } }
4346 enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
4347 enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
4348 enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
4349 enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
4350 enabled libsnappy && require snappy snappy-c.h snappy_compress -lsnappy
4351 enabled libspeex && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
4352 enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
4353 enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame
4354 enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
4355 enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
4356 enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
4357 enabled libvpx && require_pkg_config "vpx >= 1.3.0" vpx/vpx_codec.h vpx_codec_version && {
4358 enabled libvpx_vp8_decoder && {
4359 check_pkg_config vpx "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp8_dx ||
4360 disable libvpx_vp8_decoder;
4362 enabled libvpx_vp8_encoder && {
4363 check_pkg_config vpx "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp8_cx ||
4364 disable libvpx_vp8_encoder;
4366 enabled libvpx_vp9_decoder && {
4367 check_pkg_config vpx "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_vp9_dx ||
4368 disable libvpx_vp9_decoder;
4370 enabled libvpx_vp9_encoder && {
4371 check_pkg_config vpx "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_vp9_cx ||
4372 disable libvpx_vp9_encoder;
4374 if disabled_all libvpx_vp8_decoder libvpx_vp9_decoder libvpx_vp8_encoder libvpx_vp9_encoder; then
4375 die "libvpx enabled but no supported decoders found"
4378 enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
4379 enabled libwebp && require_pkg_config libwebp webp/encode.h WebPGetEncoderVersion
4380 enabled libx264 && require_pkg_config x264 "stdint.h x264.h" x264_encoder_encode &&
4381 { check_cpp_condition x264.h "X264_BUILD >= 118" ||
4382 die "ERROR: libx264 version must be >= 0.118."; } &&
4383 { check_cpp_condition x264.h "X264_MPEG2" &&
4385 enabled libx265 && require_pkg_config x265 x265.h x265_api_get &&
4386 { check_cpp_condition x265.h "X265_BUILD >= 57" ||
4387 die "ERROR: libx265 version must be >= 57."; }
4388 enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
4389 enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
4390 enabled mmal && { check_lib interface/mmal/mmal.h mmal_port_connect -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ||
4391 { ! enabled cross_compile && {
4392 add_cflags -isystem/opt/vc/include/ -isystem/opt/vc/include/interface/vmcs_host/linux -isystem/opt/vc/include/interface/vcos/pthreads -fgnu89-inline ;
4393 add_extralibs -L/opt/vc/lib/ -lmmal_core -lmmal_util -lmmal_vc_client -lbcm_host ;
4394 check_lib interface/mmal/mmal.h mmal_port_connect ; }
4395 check_lib interface/mmal/mmal.h mmal_port_connect ; } ||
4396 die "ERROR: mmal not found"; }
4397 enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
4398 check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
4399 check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
4400 die "ERROR: openssl not found"; }
4402 if enabled gnutls; then
4403 { check_lib2 gmp.h mpz_export -lgmp && enable gmp; } ||
4404 { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
4408 if enabled libdc1394; then
4409 { require_pkg_config libdc1394-2 dc1394/dc1394.h dc1394_new &&
4410 enable libdc1394_2; } ||
4411 { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
4412 enable libdc1394_1; } ||
4413 die "ERROR: No version of libdc1394 found "
4416 if enabled nvenc; then
4417 check_header cuda.h || die "ERROR: cuda.h not found.";
4418 check_header nvEncodeAPI.h || die "ERROR: nvEncodeAPI.h not found.";
4419 check_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 5" ||
4420 die "ERROR: NVENC API version 4 or older is not supported";
4423 if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
4424 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4425 check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4429 pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
4430 texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
4432 check_header linux/fb.h
4433 check_header linux/videodev2.h
4434 check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
4436 check_header sys/videoio.h
4438 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
4439 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
4440 # w32api 3.12 had it defined wrong
4441 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
4443 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
4444 { check_header dev/bktr/ioctl_meteor.h &&
4445 check_header dev/bktr/ioctl_bt848.h; } ||
4446 { check_header machine/ioctl_meteor.h &&
4447 check_header machine/ioctl_bt848.h; } ||
4448 { check_header dev/video/meteor/ioctl_meteor.h &&
4449 check_header dev/video/bktr/ioctl_bt848.h; } ||
4450 check_header dev/ic/bt8xx.h
4452 check_header sndio.h
4453 check_header sys/soundcard.h
4454 check_header soundcard.h
4456 enabled_any alsa_indev alsa_outdev &&
4457 check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
4459 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
4460 check_func jack_port_get_latency_range -ljack
4462 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
4464 if enabled libcdio; then
4465 check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4466 check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
4467 die "ERROR: No usable libcdio/cdparanoia found"
4470 check_lib X11/Xlib.h XOpenDisplay -lX11 && enable xlib
4472 if enabled libxcb || enabled x11grab && ! disabled libxcb; then
4473 check_pkg_config xcb-shape xcb/shape.h xcb_shape_rectangles || {
4474 enabled libxcb && die "ERROR: libxcb not found";
4475 } && disable x11grab && enable libxcb
4477 disabled libxcb_shm ||
4478 check_pkg_config xcb-shm xcb/shm.h xcb_shm_attach || {
4479 enabled libxcb_shm && die "ERROR: libxcb_shm not found";
4480 } && check_header sys/shm.h && enable libxcb_shm
4482 disabled libxcb_xfixes ||
4483 check_pkg_config xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image || {
4484 enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found";
4485 } && enable libxcb_xfixes
4487 add_cflags "$xcb_event_cflags $xcb_shm_cflags $xcb_xfixes_cflags"
4488 add_extralibs "$xcb_event_libs $xcb_shm_libs $xcb_xfixes_libs"
4491 if enabled x11grab; then
4492 enabled xlib || die "ERROR: Xlib not found"
4493 require Xext X11/extensions/XShm.h XShmCreateImage -lXext
4494 require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
4497 enabled vaapi && enabled xlib &&
4498 check_lib2 "va/va.h va/va_x11.h" vaGetDisplay -lva -lva-x11 &&
4502 check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
4505 enabled vdpau && enabled xlib &&
4506 check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
4507 prepend avconv_libs $($ldflags_filter "-lvdpau") &&
4510 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
4512 # add some useful compiler flags if supported
4513 check_cflags -Wdeclaration-after-statement
4515 check_cflags -Wdisabled-optimization
4516 check_cflags -Wpointer-arith
4517 check_cflags -Wredundant-decls
4518 check_cflags -Wcast-qual
4519 check_cflags -Wwrite-strings
4520 check_cflags -Wtype-limits
4521 check_cflags -Wundef
4522 check_cflags -Wmissing-prototypes
4523 check_cflags -Wstrict-prototypes
4524 enabled extra_warnings && check_cflags -Winline
4526 check_disable_warning(){
4527 warning_flag=-W${1#-Wno-}
4528 test_cflags $warning_flag && add_cflags $1
4531 check_disable_warning -Wno-parentheses
4532 check_disable_warning -Wno-switch
4533 check_disable_warning -Wno-format-zero-length
4534 check_disable_warning -Wno-pointer-sign
4536 # add some linker flags
4537 check_ldflags -Wl,--warn-common
4538 check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
4539 enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
4540 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
4542 # add some strip flags
4543 # -wN '..@*' is more selective than -x, but not available everywhere.
4544 check_stripflags -wN \'..@*\' || check_stripflags -x || strip='true'
4546 enabled neon_clobber_test &&
4547 check_ldflags -Wl,--wrap,avcodec_open2 \
4548 -Wl,--wrap,avcodec_decode_audio4 \
4549 -Wl,--wrap,avcodec_decode_video2 \
4550 -Wl,--wrap,avcodec_decode_subtitle2 \
4551 -Wl,--wrap,avcodec_encode_audio2 \
4552 -Wl,--wrap,avcodec_encode_video2 \
4553 -Wl,--wrap,avcodec_encode_subtitle \
4554 -Wl,--wrap,avresample_convert ||
4555 disable neon_clobber_test
4557 enabled xmm_clobber_test &&
4558 check_ldflags -Wl,--wrap,avcodec_open2 \
4559 -Wl,--wrap,avcodec_decode_audio4 \
4560 -Wl,--wrap,avcodec_decode_video2 \
4561 -Wl,--wrap,avcodec_decode_subtitle2 \
4562 -Wl,--wrap,avcodec_encode_audio2 \
4563 -Wl,--wrap,avcodec_encode_video2 \
4564 -Wl,--wrap,avcodec_encode_subtitle \
4565 -Wl,--wrap,avresample_convert \
4566 -Wl,--wrap,sws_scale ||
4567 disable xmm_clobber_test
4570 if test_ldflags -Wl,--version-script,$TMPV; then
4571 append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
4572 check_cc <<EOF && enable symver_asm_label
4573 void ff_foo(void) __asm__ ("av_foo@VERSION");
4574 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
4576 check_cc <<EOF && enable symver_gnu_asm
4577 __asm__(".symver ff_foo,av_foo@VERSION");
4578 void ff_foo(void) {}
4582 if [ -z "$optflags" ]; then
4583 if enabled small; then
4584 optflags=$cflags_size
4585 elif enabled optimizations; then
4586 optflags=$cflags_speed
4588 optflags=$cflags_noopt
4594 enabled lto && check_ldflags "$@"
4598 if enabled lto; then
4599 test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
4601 check_ldflags -flto $cpuflags
4604 check_optflags $optflags
4605 check_optflags -fno-math-errno
4606 check_optflags -fno-signed-zeros
4608 if enabled icc; then
4609 # Just warnings, no remarks
4611 # -wd: Disable following warnings
4612 # 144, 167, 556: -Wno-pointer-sign
4613 # 1292: attribute "foo" ignored
4614 # 1419: external declaration in primary source file
4615 # 10006: ignoring unknown option -fno-signed-zeros
4616 # 10148: ignoring unknown option -Wno-parentheses
4617 # 10156: ignoring option '-W'; no argument required
4618 check_cflags -wd144,167,556,1292,1419,10006,10148,10156
4619 # 11030: Warning unknown option --as-needed
4620 # 10156: ignoring option '-export'; no argument required
4621 check_ldflags -wd10156,11030
4622 # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
4623 enable ebp_available
4624 if enabled x86_32; then
4625 icc_version=$($cc -dumpversion)
4626 test ${icc_version%%.*} -ge 11 &&
4627 check_cflags -falign-stack=maintain-16-byte ||
4628 disable aligned_stack
4630 elif enabled ccc; then
4631 # disable some annoying warnings
4632 add_cflags -msg_disable bitnotint
4633 add_cflags -msg_disable mixfuncvoid
4634 add_cflags -msg_disable nonstandcast
4635 add_cflags -msg_disable unsupieee
4636 elif enabled gcc; then
4637 check_optflags -fno-tree-vectorize
4638 check_cflags -Werror=implicit-function-declaration
4639 check_cflags -Werror=missing-prototypes
4640 check_cflags -Werror=return-type
4641 check_cflags -Werror=declaration-after-statement
4642 check_cflags -Werror=vla
4643 check_cflags -Werror=format-security
4644 check_cflags -fdiagnostics-color=auto
4645 enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
4646 elif enabled llvm_gcc; then
4647 check_cflags -mllvm -stack-alignment=16
4648 elif enabled clang; then
4649 check_cflags -mllvm -stack-alignment=16
4650 check_cflags -Qunused-arguments
4651 check_cflags -Werror=implicit-function-declaration
4652 check_cflags -Werror=missing-prototypes
4653 check_cflags -Werror=return-type
4654 elif enabled cparser; then
4655 add_cflags -Wno-missing-variable-declarations
4656 add_cflags -Wno-empty-statement
4657 elif enabled armcc; then
4658 add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
4659 add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
4660 # 2523: use of inline assembly is deprecated
4661 add_cflags -W${armcc_opt},--diag_suppress=2523
4662 add_cflags -W${armcc_opt},--diag_suppress=1207
4663 add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
4664 add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
4665 add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
4666 add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
4667 elif enabled tms470; then
4668 add_cflags -pds=824 -pds=837
4670 elif enabled pathscale; then
4671 add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
4672 elif enabled_any msvc icl; then
4673 enabled x86_32 && disable aligned_stack
4674 enabled_all x86_32 debug && add_cflags -Oy-
4675 enabled debug && add_ldflags -debug
4676 enable pragma_deprecated
4677 if enabled icl; then
4678 # -Qansi-alias is basically -fstrict-aliasing, but does not work
4679 # (correctly) on icl 13.x.
4680 check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
4681 add_cflags -Qansi-alias
4682 # icl will pass the inline asm tests but inline asm is currently
4683 # not supported (build will fail)
4686 # msvcrt10 x64 incorrectly enables log2, only msvcrt12 (MSVC 2013) onwards actually has log2.
4687 check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
4688 # The CRT headers contain __declspec(restrict) in a few places, but if redefining
4689 # restrict, this might break. MSVC 2010 and 2012 fail with __declspec(__restrict)
4690 # (as it ends up if the restrict redefine is done before including stdlib.h), while
4691 # MSVC 2013 and newer can handle it fine.
4692 # If this declspec fails, force including stdlib.h before the restrict redefinition
4693 # happens in config.h.
4694 if [ $_restrict != restrict ]; then
4695 check_cc <<EOF || add_cflags -FIstdlib.h
4696 __declspec($_restrict) void* foo(int);
4699 check_func strtoll || add_cflags -Dstrtoll=_strtoi64
4702 for pfx in "" host_; do
4703 varname=${pfx%_}cc_type
4704 eval "type=\$$varname"
4705 if [ $type = "msvc" ]; then
4706 check_${pfx}cc <<EOF || add_${pfx}cflags -Dinline=__inline
4707 static inline int foo(int a) { return a; }
4714 add_asflags -Qunused-arguments
4720 check_ldflags -Qunused-arguments
4726 enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
4729 add_cppflags -Dmain=plan9_main
4733 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
4735 check_deps $CONFIG_LIST \
4740 enabled_all dxva2 CoTaskMemFree &&
4741 prepend avconv_libs $($ldflags_filter "-lole32") &&
4744 ! enabled_any memalign posix_memalign aligned_malloc &&
4745 enabled simd_align_16 && enable memalign_hack
4747 map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
4749 for thread in $THREADS_LIST; do
4750 if enabled $thread; then
4751 test -n "$thread_type" &&
4752 die "ERROR: Only one thread type must be selected." ||
4753 thread_type="$thread"
4757 enabled zlib && add_cppflags -DZLIB_CONST
4759 # conditional library dependencies, in linking order
4760 enabled movie_filter && prepend avfilter_deps "avformat avcodec"
4761 enabled resample_filter && prepend avfilter_deps "avresample"
4762 enabled scale_filter && prepend avfilter_deps "swscale"
4764 enabled opus_decoder && prepend avcodec_deps "avresample"
4768 eval "deps=\$$lib_deps"
4769 append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
4773 map 'expand_deps $v' $LIBRARY_LIST
4775 echo "install prefix $prefix"
4776 echo "source path $source_path"
4777 echo "C compiler $cc"
4778 echo "C library $libc_type"
4779 if test "$host_cc" != "$cc"; then
4780 echo "host C compiler $host_cc"
4781 echo "host C library $host_libc_type"
4783 echo "ARCH $arch ($cpu)"
4784 if test "$build_suffix" != ""; then
4785 echo "build suffix $build_suffix"
4787 if test "$extra_version" != ""; then
4788 echo "version string suffix $extra_version"
4790 echo "big-endian ${bigendian-no}"
4791 echo "runtime cpu detection ${runtime_cpudetect-no}"
4792 if enabled x86; then
4793 echo "${yasmexe} ${yasm-no}"
4794 echo "MMX enabled ${mmx-no}"
4795 echo "MMXEXT enabled ${mmxext-no}"
4796 echo "3DNow! enabled ${amd3dnow-no}"
4797 echo "3DNow! extended enabled ${amd3dnowext-no}"
4798 echo "SSE enabled ${sse-no}"
4799 echo "SSSE3 enabled ${ssse3-no}"
4800 echo "AVX enabled ${avx-no}"
4801 echo "XOP enabled ${xop-no}"
4802 echo "FMA3 enabled ${fma3-no}"
4803 echo "FMA4 enabled ${fma4-no}"
4804 echo "i686 features enabled ${i686-no}"
4805 echo "CMOV is fast ${fast_cmov-no}"
4806 echo "EBX available ${ebx_available-no}"
4807 echo "EBP available ${ebp_available-no}"
4809 if enabled aarch64; then
4810 echo "NEON enabled ${neon-no}"
4811 echo "VFP enabled ${vfp-no}"
4813 if enabled arm; then
4814 echo "ARMv5TE enabled ${armv5te-no}"
4815 echo "ARMv6 enabled ${armv6-no}"
4816 echo "ARMv6T2 enabled ${armv6t2-no}"
4817 echo "VFP enabled ${vfp-no}"
4818 echo "NEON enabled ${neon-no}"
4820 if enabled ppc; then
4821 echo "AltiVec enabled ${altivec-no}"
4822 echo "VSX enabled ${vsx-no}"
4823 echo "POWER8 enabled ${power8-no}"
4824 echo "PPC 4xx optimizations ${ppc4xx-no}"
4825 echo "dcbzl available ${dcbzl-no}"
4827 echo "debug symbols ${debug-no}"
4828 echo "optimize for size ${small-no}"
4829 echo "optimizations ${optimizations-no}"
4830 echo "static ${static-no}"
4831 echo "shared ${shared-no}"
4832 echo "new filter support ${avfilter-no}"
4833 echo "network support ${network-no}"
4834 echo "threading support ${thread_type-no}"
4835 echo "safe bitstream reader ${safe_bitstream_reader-no}"
4836 echo "SDL support ${sdl-no}"
4837 test -n "$random_seed" &&
4838 echo "random seed ${random_seed}"
4841 echo "External libraries:"
4842 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
4845 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
4846 echo "Enabled ${type}s:"
4847 eval list=\$$(toupper $type)_LIST
4848 print_enabled '_*' $list | print_3_columns
4852 license="LGPL version 2.1 or later"
4853 if enabled nonfree; then
4854 license="nonfree and unredistributable"
4855 elif enabled gplv3; then
4856 license="GPL version 3 or later"
4857 elif enabled lgplv3; then
4858 license="LGPL version 3 or later"
4859 elif enabled gpl; then
4860 license="GPL version 2 or later"
4863 echo "License: $license"
4865 echo "Creating config.mak and config.h..."
4867 test -e Makefile || echo "include $source_path/Makefile" > Makefile
4869 config_files="$TMPH config.mak"
4871 cat > config.mak <<EOF
4872 # Automatically generated by configure - do not modify!
4873 LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
4875 LIBDIR=\$(DESTDIR)$libdir
4876 SHLIBDIR=\$(DESTDIR)$shlibdir
4877 INCDIR=\$(DESTDIR)$incdir
4878 BINDIR=\$(DESTDIR)$bindir
4879 DATADIR=\$(DESTDIR)$datadir
4880 DOCDIR=\$(DESTDIR)$docdir
4881 MANDIR=\$(DESTDIR)$mandir
4882 SRC_PATH=$source_path
4885 INTRINSICS=$intrinsics
4890 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
4892 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
4914 LDEXEFLAGS=$LDEXEFLAGS
4915 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
4916 STRIPFLAGS=$STRIPFLAGS
4917 YASMFLAGS=$YASMFLAGS
4918 BUILDSUF=$build_suffix
4926 EXTRA_VERSION=$extra_version
4928 CCDEP_FLAGS=$CCDEP_FLAGS
4930 ASDEP_FLAGS=$ASDEP_FLAGS
4931 CC_DEPFLAGS=$CC_DEPFLAGS
4932 AS_DEPFLAGS=$AS_DEPFLAGS
4935 HOSTCFLAGS=$host_cflags
4936 HOSTCPPFLAGS=$host_cppflags
4937 HOSTEXESUF=$HOSTEXESUF
4938 HOSTLDFLAGS=$host_ldflags
4941 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
4942 HOSTCCDEP=$HOSTCCDEP
4943 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
4944 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
4948 TARGET_EXEC=$target_exec $target_exec_args
4949 TARGET_PATH=$target_path
4950 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
4951 CFLAGS-avplay=$sdl_cflags
4952 ZLIB=$($ldflags_filter -lz)
4953 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
4954 EXTRALIBS=$extralibs
4955 COMPAT_OBJS=$compat_objs
4958 LIBTARGET=${LIBTARGET}
4959 SLIBNAME=${SLIBNAME}
4960 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
4961 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
4962 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
4963 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
4964 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
4965 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
4966 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
4967 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
4968 SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
4973 name=$(toupper $lcname)
4974 file=$source_path/$lcname/version.h
4975 eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
4976 eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
4977 eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
4978 eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
4979 eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
4982 map 'get_version $v' $LIBRARY_LIST
4984 map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
4986 print_program_libs(){
4987 eval "program_libs=\$${1}_libs"
4988 eval echo "LIBS-${1}=${program_libs}" >> config.mak
4991 map 'print_program_libs $v' $PROGRAM_LIST
4994 /* Automatically generated by configure - do not modify! */
4995 #ifndef LIBAV_CONFIG_H
4996 #define LIBAV_CONFIG_H
4997 #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
4998 #define LIBAV_LICENSE "$(c_escape $license)"
4999 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
5000 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
5001 #define restrict $_restrict
5002 #define EXTERN_PREFIX "${extern_prefix}"
5003 #define EXTERN_ASM ${extern_prefix}
5004 #define SLIBSUF "$SLIBSUF"
5007 test -n "$malloc_prefix" &&
5008 echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
5010 if enabled yasm; then
5011 append config_files $TMPASM
5015 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
5017 print_config ARCH_ "$config_files" $ARCH_LIST
5018 print_config HAVE_ "$config_files" $HAVE_LIST
5019 print_config CONFIG_ "$config_files" $CONFIG_LIST \
5023 echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
5025 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
5026 cp_if_changed $TMPH config.h
5029 enabled yasm && cp_if_changed $TMPASM config.asm
5032 /* Generated by ffconf */
5033 #ifndef AVUTIL_AVCONFIG_H
5034 #define AVUTIL_AVCONFIG_H
5037 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
5039 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
5041 cp_if_changed $TMPH libavutil/avconfig.h
5043 test -n "$WARNINGS" && printf "\n$WARNINGS"
5045 # build pkg-config files
5048 eval printf "\"lib${1} >= \$LIB$(toupper ${1})_VERSION, \""
5051 pkgconfig_generate(){
5053 shortname=${name#lib}${build_suffix}
5057 requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
5058 requires=${requires%, }
5059 enabled ${name#lib} || return 0
5061 cat <<EOF > $name/$name.pc
5063 exec_prefix=\${prefix}
5068 Description: $comment
5070 Requires: $(enabled shared || echo $requires)
5071 Requires.private: $(enabled shared && echo $requires)
5073 Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
5074 Libs.private: $(enabled shared && echo $libs)
5075 Cflags: -I\${includedir}
5077 cat <<EOF > $name/$name-uninstalled.pc
5080 libdir=\${pcfiledir}
5081 includedir=${source_path}
5084 Description: $comment
5088 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
5089 Cflags: -I\${includedir}
5093 pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBRT $LIBM"
5094 pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs"
5095 pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs"
5096 pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs"
5097 pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
5098 pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$LIBM"
5099 pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM"