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-libkvazaar enable HEVC encoding via libkvazaar [no]
195 --enable-libmfx enable HW acceleration through libmfx
196 --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
197 --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
198 --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
199 --enable-libopencv enable video filtering via libopencv [no]
200 --enable-libopenh264 enable H.264 encoding via OpenH264 [no]
201 --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
202 --enable-libopus enable Opus de/encoding via libopus [no]
203 --enable-libpulse enable Pulseaudio input via libpulse [no]
204 --enable-librtmp enable RTMP[E] support via librtmp [no]
205 --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
206 --enable-libsnappy enable Snappy compression [no]
207 --enable-libspeex enable Speex de/encoding via libspeex [no]
208 --enable-libtheora enable Theora encoding via libtheora [no]
209 --enable-libtwolame enable MP2 encoding via libtwolame [no]
210 --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
211 --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
212 --enable-libvorbis enable Vorbis encoding via libvorbis [no]
213 --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
214 --enable-libwavpack enable wavpack encoding via libwavpack [no]
215 --enable-libwebp enable WebP encoding via libwebp [no]
216 --enable-libx264 enable H.264 encoding via x264 [no]
217 --enable-libx265 enable HEVC encoding via x265 [no]
218 --enable-libxavs enable AVS encoding via xavs [no]
219 --enable-libxcb enable X11 grabbing using XCB [no]
220 --enable-libxcb-shm enable X11 grabbing shm communication [auto]
221 --enable-libxcb-xfixes enable X11 grabbing mouse rendering [auto]
222 --enable-libxvid enable Xvid encoding via xvidcore,
223 native MPEG-4/Xvid encoder exists [no]
224 --enable-mmal enable decoding via MMAL [no]
225 --enable-nvenc enable encoding via NVENC [no]
226 --enable-openssl enable openssl [no]
227 --enable-x11grab enable X11 grabbing (legacy) [no]
228 --enable-zlib enable zlib [autodetect]
231 --arch=ARCH select architecture [$arch]
232 --cpu=CPU select the minimum required CPU (affects
233 instruction selection, may crash on older CPUs)
234 --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
235 --enable-cross-compile assume a cross-compiler is used
236 --sysroot=PATH root of cross-build tree
237 --sysinclude=PATH location of cross-build system headers
238 --target-os=OS compiler targets OS [$target_os]
239 --target-exec=CMD command to run executables on target
240 --target-path=DIR path to view of build directory on target
241 --target-samples=DIR path to samples directory on target
242 --toolchain=NAME set tool defaults according to NAME
244 --ar=AR use archive tool AR [$ar_default]
245 --as=AS use assembler AS [$as_default]
246 --cc=CC use C compiler CC [$cc_default]
247 --objcc=OCC use ObjC compiler OCC [$cc_default]
248 --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
249 --ld=LD use linker LD
250 --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
251 --pkg-config-flags=FLAGS pass additional flags to pkgconf []
252 --host-cc=HOSTCC use host C compiler HOSTCC
253 --host-cflags=HCFLAGS use HCFLAGS when compiling for host
254 --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
255 --host-ld=HOSTLD use host linker HOSTLD
256 --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
257 --host-libs=HLIBS use libs HLIBS when linking for host
258 --host-os=OS compiler host OS [$target_os]
259 --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
260 --extra-objcflags=FLAGS add FLAGS to OBJCFLAGS [$CFLAGS]
261 --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
262 --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
263 --extra-libs=ELIBS add ELIBS [$ELIBS]
264 --extra-version=STRING version string suffix []
265 --optflags=OPTFLAGS override optimization-related compiler flags
266 --build-suffix=SUFFIX library name suffix []
267 --enable-pic build position-independent code
268 --enable-thumb compile for Thumb instruction set
269 --enable-lto use link-time optimization
270 --env="ENV=override" override the environment variables
272 Advanced options (experts only):
273 --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
274 --custom-allocator=NAME use a supported custom allocator
275 --disable-symver disable symbol versioning
276 --enable-hardcoded-tables use hardcoded tables instead of runtime generation
277 --disable-safe-bitstream-reader
278 disable buffer boundary checking in bitreaders
279 (faster, but may crash)
280 --enable-memalign-hack emulate memalign, interferes with memory debuggers
281 --enable-sram allow use of on-chip SRAM
283 Optimization options (experts only):
284 --disable-asm disable all assembly optimizations
285 --disable-altivec disable AltiVec optimizations
286 --disable-vsx disable VSX optimizations
287 --disable-power8 disable POWER8 optimizations
288 --disable-amd3dnow disable 3DNow! optimizations
289 --disable-amd3dnowext disable 3DNow! extended optimizations
290 --disable-mmx disable MMX optimizations
291 --disable-mmxext disable MMXEXT optimizations
292 --disable-sse disable SSE optimizations
293 --disable-sse2 disable SSE2 optimizations
294 --disable-sse3 disable SSE3 optimizations
295 --disable-ssse3 disable SSSE3 optimizations
296 --disable-sse4 disable SSE4 optimizations
297 --disable-sse42 disable SSE4.2 optimizations
298 --disable-avx disable AVX optimizations
299 --disable-xop disable XOP optimizations
300 --disable-fma3 disable FMA3 optimizations
301 --disable-fma4 disable FMA4 optimizations
302 --disable-avx2 disable AVX2 optimizations
303 --disable-armv5te disable armv5te optimizations
304 --disable-armv6 disable armv6 optimizations
305 --disable-armv6t2 disable armv6t2 optimizations
306 --disable-vfp disable VFP optimizations
307 --disable-neon disable NEON optimizations
308 --disable-inline-asm disable use of inline assembly
309 --disable-yasm disable use of nasm/yasm assembly
311 Developer options (useful when working on Libav itself):
312 --disable-debug disable debugging symbols
313 --enable-debug=LEVEL set the debug level [$debuglevel]
314 --disable-optimizations disable compiler optimizations
315 --enable-extra-warnings enable more compiler warnings
316 --samples=PATH location of test samples for FATE, if not set use
317 \$LIBAV_SAMPLES at make invocation time.
318 --enable-neon-clobber-test check NEON registers for clobbering (should be
319 used only for debugging purposes)
320 --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
321 should be used only for debugging purposes)
322 --enable-random randomly enable/disable components
324 --enable-random=LIST randomly enable/disable specific components or
325 --disable-random=LIST component groups. LIST is a comma-separated list
326 of NAME[:PROB] entries where NAME is a component
327 (group) and PROB the probability associated with
329 --random-seed=VALUE seed value for --enable/disable-random
330 --disable-valgrind-backtrace do not print a backtrace under Valgrind
331 (only applies to --disable-optimizations builds)
333 NOTE: Object files are built at the place where configure is launched.
341 echo "$@" >> $logfile
348 printf '%5s %s\n' "${i}" "${line}"
350 done < $1 >> $logfile
361 WARNINGS
="${WARNINGS}WARNING: $*\n"
368 If you think configure made a mistake, make sure you are using the latest
369 version from Git. If the latest version fails, report the problem to the
370 libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
372 if disabled logging
; then
374 Rerun configure with logging enabled (do not use --disable-logging), and
375 include the log this produces with your report.
379 Include the log file "$logfile" produced by configure as this will help
386 # Avoid locale weirdness, besides we really just want to translate ASCII.
388 echo "$@" |
tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
392 echo "$@" |
tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
396 echo "$*" |
sed 's/["\\]/\\\0/g'
400 v
=$
(echo "$1" |
sed "s/'/'\\\\''/g")
401 test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v
="'$v'"
406 echo "$@" |
sed 's/^ *//;s/ */ /g;s/ *$//'
413 eval "case $v in $pat) echo $v ;; esac"
421 eval "case $v in $pat) ;; *) echo $v ;; esac"
428 for v
; do eval $m; done
434 for v
; do echo ${v}${suffix}; done
449 eval : \
${$var:=$value}
454 echo $@ |
sed 's/[^A-Za-z0-9_]/_/g'
460 eval $
(sanitize_var_name
"$var")='$*'
464 eval echo \$$
(sanitize_var_name
"$1")
469 eval level
=\
${${pvar}_level
:=0}
470 eval ${pvar}_
${level}="\$$pvar"
471 eval ${pvar}_level
=$
(($level+1))
477 eval level
=\
${${pvar}_level
:-0}
478 test $level = 0 && continue
479 eval level
=$
(($level-1))
480 eval $pvar="\${${pvar}_${level}}"
481 eval ${pvar}_level
=$level
482 eval unset ${pvar}_
${level}
504 enable $
(echo "$var" |
sed 's/[^A-Za-z0-9_]/_/g')
510 disable $
(echo "$var" |
sed 's/[^A-Za-z0-9_]/_/g')
516 enabled
$var && continue
517 eval sel
="\$${var}_select"
518 eval sgs
="\$${var}_suggest"
522 enable_deep_weak
$sgs
534 disabled
$var && continue
543 test "${1#!}" = "$1" && op
== || op
=!=
544 eval test "x\$${1#!}" $op "xyes"
548 test "${1#!}" = "$1" && op
== || op
=!=
549 eval test "x\$${1#!}" $op "xno"
554 enabled
$opt ||
return 1
560 disabled
$opt ||
return 1
566 enabled
$opt && return 0
572 disabled
$opt && return 0
579 eval : \
${$opt:=\$${opt}_default
}
587 [ $var = $value ] && return 0
595 enabled
${cfg}_checking
&& die
"Circular dependency for $cfg."
596 disabled
${cfg}_checking
&& continue
597 enable ${cfg}_checking
600 eval dep_all
="\$${cfg}_deps"
601 eval dep_any
="\$${cfg}_deps_any"
602 eval dep_sel
="\$${cfg}_select"
603 eval dep_sgs
="\$${cfg}_suggest"
604 eval dep_ifa
="\$${cfg}_if"
605 eval dep_ifn
="\$${cfg}_if_any"
607 pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
608 do_check_deps
$dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
609 popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
611 [ -n
"$dep_ifa" ] && { enabled_all
$dep_ifa && enable_weak
$cfg; }
612 [ -n
"$dep_ifn" ] && { enabled_any
$dep_ifn && enable_weak
$cfg; }
613 enabled_all
$dep_all || disable
$cfg
614 enabled_any
$dep_any || disable
$cfg
615 disabled_any
$dep_sel && disable
$cfg
617 if enabled
$cfg; then
619 enable_deep_weak
$dep_sgs
622 disable
${cfg}_checking
631 for cfg
in $allopts; do
632 enabled
$cfg ||
continue
633 eval dep_extralibs
="\$${cfg}_extralibs"
634 test -n
"$dep_extralibs" && add_extralibs
$dep_extralibs
642 map
'eval echo "$v \${$v:-no}"' "$@" |
643 awk "BEGIN { split(\"$files\", files) }
645 c = \"$pfx\" toupper(\$1);
651 if (file ~ /\\.h\$/) {
652 printf(\"#define %s %d\\n\", c, v) >>file;
653 } else if (file ~ /\\.asm\$/) {
654 printf(\"%%define %s %d\\n\", c, v) >>file;
655 } else if (file ~ /\\.mak\$/) {
656 n = -v ? \"\" : \"!\";
657 printf(\"%s%s=yes\\n\", n, c) >>file;
667 enabled
$v && printf "%s\n" ${v%$suf};
674 eval "$var=\"\$$var $*\""
680 eval "$var=\"$* \$$var\""
686 for tok
in $
(eval echo \$
$var); do
687 uniq_list
="$(filter_out $tok $uniq_list) $tok"
689 eval "$var=\"${uniq_list}\""
697 append CFLAGS $
($cflags_filter "$@")
701 append ASFLAGS $
($asflags_filter "$@")
705 append OBJCFLAGS $
($objcflags_filter "$@")
709 append LDFLAGS $
($ldflags_filter "$@")
713 append LDEXEFLAGS $
($ldflags_filter "$@")
717 append STRIPFLAGS
"$@"
721 prepend extralibs $
($ldflags_filter "$@")
725 append host_cppflags
"$@"
729 append host_cflags $
($host_cflags_filter "$@")
733 append host_ldflags $
($host_ldflags_filter "$@")
737 append compat_objs
$1
739 map
'add_cppflags -D$v' "$@"
744 "$@" >> $logfile 2>&1
748 eval printf '%s\\n' $CC_O
752 eval printf '%s\\n' $CC_E
759 check_cmd
$cc $CPPFLAGS $CFLAGS "$@" $CC_C $
(cc_o
$TMPO) $TMPC
766 check_cmd
$objcc $CPPFLAGS $CFLAGS $OBJCFLAGS "$@" $OBJCC_C $
(cc_o
$TMPO) $TMPC
773 check_cmd
$cc $CPPFLAGS $CFLAGS "$@" $
(cc_e
$TMPO) $TMPC
777 eval printf '%s\\n' $AS_O
784 check_cmd
$as $CPPFLAGS $ASFLAGS "$@" $AS_C $
(as_o
$TMPO) $TMPS
788 log check_inline_asm
"$@"
793 check_cc
"$@" <<EOF && enable $name
794 void foo(void){ __asm__ volatile($code); }
800 check_inline_asm
${1}_inline
"\"$2\""
801 echo "$2" | check_as
&& enable ${1}_external || disable
${1}_external
809 check_cmd
$yasmexe $YASMFLAGS "$@" -o
$TMPO $TMPS
813 eval printf '%s\\n' $LD_O
818 flags
=$
(filter_out
'-l*' "$@")
819 libs
=$
(filter
'-l*' "$@")
820 check_cc $
($cflags_filter $flags) ||
return
821 flags
=$
($ldflags_filter $flags)
822 libs
=$
($ldflags_filter $libs)
823 check_cmd
$ld $LDFLAGS $flags $
(ld_o
$TMPE) $TMPO $libs $extralibs
828 test "${hdr%.h}" = "${hdr}" &&
829 echo "#include $hdr" ||
830 echo "#include <$hdr>"
840 for hdr
in $headers; do
843 echo "int main(void) { $code; return 0; }"
844 } | check_
$check "$@"
848 log check_cppflags
"$@"
849 check_cc
"$@" <<EOF && append CPPFLAGS "$@"
856 set -- $
($cflags_filter "$@")
863 log check_cflags
"$@"
864 test_cflags
"$@" && add_cflags
"$@"
869 set -- $
($cflags_filter "$@")
870 check_objcc
"$@" <<EOF
876 log check_cflags
"$@"
877 test_objcflags
"$@" && add_objcflags
"$@"
881 log test_ldflags
"$@"
883 int main(void){ return 0; }
888 log check_ldflags
"$@"
889 test_ldflags
"$@" && add_ldflags
"$@"
893 log test_stripflags
"$@"
894 # call check_cc to get a fresh TMPO
896 int main(void) { return 0; }
898 check_cmd
$strip $STRIPFLAGS "$@" $TMPO
902 log check_stripflags
"$@"
903 test_stripflags
"$@" && add_stripflags
"$@"
907 log check_header
"$@"
911 check_cpp
"$@" <<EOF && enable_safe $header
922 check_ld
"$@" <<EOF && enable $func
924 int main(void){ $func(); }
929 log check_mathfunc
"$@"
933 test $narg = 2 && args
="f, g" || args
="f"
935 check_ld
"$@" <<EOF && enable $func
937 float foo(float f, float g) { return $func($args); }
938 int main(void){ return 0; }
942 check_func_headers
(){
943 log check_func_headers
"$@"
948 for hdr
in $headers; do
951 for func
in $funcs; do
952 echo "long check_$func(void) { return (long) $func; }"
954 echo "int main(void) { return 0; }"
955 } | check_ld
"$@" && enable $funcs && enable_safe
$headers
958 check_cpp_condition
(){
959 log check_cpp_condition
"$@"
966 #error "unsatisfied condition: $condition"
976 check_header
$header && check_func
$func "$@" && add_extralibs
"$@"
984 check_func_headers
"$headers" "$funcs" "$@" && add_extralibs
"$@"
988 log check_pkg_config
"$@"
993 check_cmd
$pkg_config --exists
--print-errors
$pkg ||
return
994 pkg_cflags
=$
($pkg_config --cflags
$pkg_config_flags $pkg)
995 pkg_libs
=$
($pkg_config --libs
$pkg_config_flags $pkg)
996 check_func_headers
"$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
997 set_safe
"${pkg}_cflags" $pkg_cflags &&
998 set_safe
"${pkg}_libs" $pkg_libs
1002 check_ld
"$@" && { enabled cross_compile ||
$TMPE >> $logfile 2>&1; }
1008 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
1009 # are safe but may not be available everywhere. Thus we use
1010 # raise(SIGTERM) instead. The check is run in a subshell so we
1011 # can redirect the "Terminated" message from the shell. SIGBUS
1012 # is not defined by standard C so it is used conditionally.
1014 (check_exec
"$@") >> $logfile 2>&1 <<EOF
1016 static void sighandler(int sig){
1022 int (*func_ptr)(void) = foo;
1024 signal(SIGILL, sighandler);
1025 signal(SIGFPE, sighandler);
1026 signal(SIGSEGV, sighandler);
1028 signal(SIGBUS, sighandler);
1040 disable_safe
"$type"
1041 check_code cc
"$headers" "$type v" "$@" && enable_safe
"$type"
1045 log check_struct
"$@"
1050 disable_safe
"${struct}_${member}"
1051 check_code cc
"$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1052 enable_safe
"${struct}_${member}"
1056 log check_builtin
"$@"
1062 check_code ld
"$headers" "$builtin" "$@" && enable "$name"
1065 check_compile_assert
(){
1066 log check_compile_assert
"$@"
1072 check_code cc
"$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1080 check_lib
$header $func "$@" || die
"ERROR: $name not found"
1088 check_lib2
"$headers" $func "$@" || die
"ERROR: $name not found"
1091 require_pkg_config
(){
1093 check_pkg_config
"$@" || die
"ERROR: $pkg not found"
1094 add_cflags $
(get_safe
"${pkg}_cflags")
1095 add_extralibs $
(get_safe
"${pkg}_libs")
1099 eval printf '%s\\n' $HOSTCC_E
1103 eval printf '%s\\n' $HOSTCC_O
1107 log check_host_cc
"$@"
1110 check_cmd
$host_cc $host_cflags "$@" $HOSTCC_C $
(hostcc_o
$TMPO) $TMPC
1114 log check_host_cpp
"$@"
1117 check_cmd
$host_cc $host_cppflags $host_cflags "$@" $
(hostcc_e
$TMPO) $TMPC
1120 check_host_cppflags
(){
1121 log check_host_cppflags
"$@"
1122 check_host_cc
"$@" <<EOF && append host_cppflags "$@"
1127 check_host_cflags
(){
1128 log check_host_cflags
"$@"
1129 set -- $
($host_cflags_filter "$@")
1130 check_host_cc
"$@" <<EOF && append host_cflags "$@"
1135 check_host_cpp_condition
(){
1136 log check_host_cpp_condition
"$@"
1140 check_host_cpp
"$@" <<EOF
1143 #error "unsatisfied condition: $condition"
1151 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" ||
rm "$file.tmp"
1155 cmp -s
"$1" "$2" && echo "$2 is unchanged" && return
1156 mkdir
-p
"$(dirname $2)"
1160 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1161 # system-dependent things.
1163 AVCODEC_COMPONENTS
="
1171 AVDEVICE_COMPONENTS
="
1175 AVFILTER_COMPONENTS
="
1178 AVFORMAT_COMPONENTS
="
1184 AVRESAMPLE_COMPONENTS
=""
1185 AVUTIL_COMPONENTS
=""
1189 $AVDEVICE_COMPONENTS
1190 $AVFILTER_COMPONENTS
1191 $AVFORMAT_COMPONENTS
1192 $AVRESAMPLE_COMPONENTS
1198 filter_audio_example
1202 transcode_aac_example
1205 EXTERNAL_LIBRARY_LIST
="
1260 safe_bitstream_reader
1314 $EXTERNAL_LIBRARY_LIST
1379 ARCH_EXT_LIST_X86_SIMD
="
1407 $ARCH_EXT_LIST_X86_SIMD
1412 ARCH_EXT_LIST_MIPS
="
1446 sync_val_compare_and_swap
1460 AVFoundation_AVFoundation_h
1465 cdio_paranoia_paranoia_h
1466 dev_bktr_ioctl_bt848_h
1467 dev_bktr_ioctl_meteor_h
1469 dev_video_bktr_ioctl_bt848_h
1470 dev_video_meteor_ioctl_meteor_h
1478 machine_ioctl_bt848_h
1479 machine_ioctl_meteor_h
1543 GetProcessAffinityMask
1544 GetProcessMemoryInfo
1547 GetSystemTimeAsFileTime
1552 jack_port_get_latency_range
1564 SetConsoleTextAttribute
1575 TOOLCHAIN_FEATURES
="
1596 CONDITION_VARIABLE_Ptr
1599 struct_group_source_req
1600 struct_ip_mreq_source
1603 struct_rusage_ru_maxrss
1605 struct_sockaddr_sa_len
1606 struct_sockaddr_storage
1607 struct_v4l2_frmivalenum_discrete
1612 $(add_suffix _external $ARCH_EXT_LIST)
1613 $(add_suffix _inline $ARCH_EXT_LIST)
1640 # options emitted with CONFIG_ prefix but not available on the command line
1782 # code dependency declarations
1784 # architecture extensions
1789 armv8_deps
="aarch64"
1790 neon_deps_any
="aarch64 arm"
1791 intrinsics_neon_deps
="neon"
1792 vfp_deps_any
="aarch64 arm"
1795 map
'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1803 x86_64_select
="i686"
1804 x86_64_suggest
="fast_cmov"
1807 amd3dnowext_deps
="amd3dnow"
1823 mmx_external_deps
="yasm"
1824 mmx_inline_deps
="inline_asm"
1825 mmx_suggest
="mmx_external mmx_inline"
1827 for ext
in $
(filter_out mmx
$ARCH_EXT_LIST_X86_SIMD); do
1828 eval dep
=\$
${ext}_deps
1829 eval ${ext}_external_deps
='"${dep}_external"'
1830 eval ${ext}_inline_deps
='"${dep}_inline"'
1831 eval ${ext}_suggest
='"${ext}_external ${ext}_inline"'
1834 aligned_stack_if_any
="aarch64 ppc x86"
1835 fast_64bit_if_any
="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1836 fast_clz_if_any
="aarch64 alpha avr32 mips ppc x86"
1837 fast_unaligned_if_any
="aarch64 ppc x86"
1838 simd_align_16_if_any
="altivec neon sse"
1840 # system capabilities
1841 symver_if_any
="symver_asm_label symver_gnu_asm"
1842 valgrind_backtrace_deps
="!optimizations valgrind_valgrind_h"
1845 atomics_gcc_if
="sync_val_compare_and_swap"
1846 atomics_suncc_if
="atomic_cas_ptr machine_rw_barrier"
1847 atomics_win32_if
="MemoryBarrier"
1848 atomics_native_if_any
="$ATOMICS_LIST"
1849 w32threads_deps
="atomics_native"
1850 threads_if_any
="$THREADS_LIST"
1854 dirac_parse_select
="golomb"
1855 error_resilience_select
="me_cmp"
1856 faandct_deps
="faan fdctdsp"
1857 faanidct_deps
="faan idctdsp"
1858 intrax8_select
="error_resilience"
1861 me_cmp_select
="fdctdsp idctdsp pixblockdsp"
1862 mpeg_er_select
="error_resilience"
1863 mpegaudio_select
="mpegaudiodsp"
1864 mpegaudiodsp_select
="dct"
1865 mpegvideo_select
="blockdsp hpeldsp idctdsp me_cmp videodsp"
1866 mpegvideoenc_select
="me_cmp mpegvideo pixblockdsp qpeldsp"
1867 nvenc_deps_any
="dlopen LoadLibrary"
1868 nvenc_extralibs
='$ldl'
1872 # decoders / encoders
1873 aac_decoder_select
="imdct15 mdct sinewin"
1874 aac_encoder_select
="audio_frame_queue iirfilter mdct sinewin"
1875 aac_latm_decoder_select
="aac_decoder aac_latm_parser"
1876 ac3_decoder_select
="ac3_parser ac3dsp bswapdsp fmtconvert mdct"
1877 ac3_encoder_select
="ac3dsp audiodsp mdct me_cmp"
1878 ac3_fixed_encoder_select
="ac3dsp audiodsp mdct me_cmp"
1879 adpcm_g722_decoder_select
="g722dsp"
1880 adpcm_g722_encoder_select
="g722dsp"
1881 aic_decoder_select
="golomb idctdsp"
1882 alac_encoder_select
="lpc"
1883 als_decoder_select
="bswapdsp"
1884 amrnb_decoder_select
="lsp"
1885 amrwb_decoder_select
="lsp"
1886 amv_decoder_select
="sp5x_decoder"
1887 ape_decoder_select
="bswapdsp"
1888 asv1_decoder_select
="blockdsp bswapdsp idctdsp"
1889 asv1_encoder_select
="bswapdsp fdctdsp pixblockdsp"
1890 asv2_decoder_select
="blockdsp bswapdsp idctdsp"
1891 asv2_encoder_select
="bswapdsp fdctdsp pixblockdsp"
1892 atrac1_decoder_select
="mdct sinewin"
1893 atrac3_decoder_select
="mdct"
1894 atrac3p_decoder_select
="mdct sinewin"
1895 bink_decoder_select
="blockdsp hpeldsp"
1896 binkaudio_dct_decoder_select
="mdct rdft dct sinewin wma_freqs"
1897 binkaudio_rdft_decoder_select
="mdct rdft sinewin wma_freqs"
1898 cavs_decoder_select
="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
1899 cllc_decoder_select
="bswapdsp"
1900 comfortnoise_encoder_select
="lpc"
1901 cook_decoder_select
="audiodsp mdct sinewin"
1902 cscd_decoder_select
="lzo"
1903 cscd_decoder_suggest
="zlib"
1904 dca_decoder_select
="fmtconvert mdct"
1905 dds_decoder_select
="texturedsp"
1906 dnxhd_decoder_select
="blockdsp idctdsp"
1907 dnxhd_encoder_select
="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
1908 dvvideo_decoder_select
="dvprofile idctdsp"
1909 dvvideo_encoder_select
="dvprofile fdctdsp me_cmp pixblockdsp"
1910 dxa_decoder_deps
="zlib"
1911 dxv_decoder_select
="lzf texturedsp"
1912 eac3_decoder_select
="ac3_decoder"
1913 eac3_encoder_select
="ac3_encoder"
1914 eamad_decoder_select
="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
1915 eatgq_decoder_select
="aandcttables idctdsp"
1916 eatqi_decoder_select
="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
1917 exr_decoder_deps
="zlib"
1918 ffv1_decoder_select
="golomb rangecoder"
1919 ffv1_encoder_select
="rangecoder"
1920 ffvhuff_decoder_select
="huffyuv_decoder"
1921 ffvhuff_encoder_select
="huffyuv_encoder"
1922 fic_decoder_select
="golomb"
1923 flac_decoder_select
="flacdsp golomb"
1924 flac_encoder_select
="bswapdsp flacdsp golomb lpc"
1925 flashsv_decoder_deps
="zlib"
1926 flashsv_encoder_deps
="zlib"
1927 flashsv2_decoder_deps
="zlib"
1928 flv_decoder_select
="h263_decoder"
1929 flv_encoder_select
="h263_encoder"
1930 fourxm_decoder_select
="blockdsp bswapdsp"
1931 fraps_decoder_select
="bswapdsp huffman"
1932 g2m_decoder_deps
="zlib"
1933 g2m_decoder_select
="blockdsp idctdsp jpegtables"
1934 h261_decoder_select
="mpeg_er mpegvideo"
1935 h261_encoder_select
="aandcttables mpegvideoenc"
1936 h263_decoder_select
="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
1937 h263_encoder_select
="aandcttables h263dsp mpegvideoenc"
1938 h263i_decoder_select
="h263_decoder"
1939 h263p_encoder_select
="h263_encoder"
1940 h264_decoder_select
="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
1941 h264_decoder_suggest
="error_resilience"
1942 h264_nvenc_encoder_deps
="nvenc"
1943 h264_qsv_decoder_deps
="libmfx"
1944 h264_qsv_decoder_select
="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
1945 h264_qsv_encoder_deps
="libmfx"
1946 h264_qsv_encoder_select
="qsvenc"
1947 hap_decoder_select
="snappy texturedsp"
1948 hap_encoder_deps
="libsnappy"
1949 hap_encoder_select
="texturedspenc"
1950 hevc_decoder_select
="bswapdsp cabac golomb videodsp"
1951 hevc_nvenc_encoder_deps
="nvenc"
1952 hevc_qsv_encoder_deps
="libmfx"
1953 hevc_qsv_decoder_deps
="libmfx"
1954 hevc_qsv_decoder_select
="hevc_mp4toannexb_bsf hevc_parser qsvdec hevc_qsv_hwaccel"
1955 hevc_qsv_encoder_select
="qsvenc"
1956 huffyuv_decoder_select
="bswapdsp huffyuvdsp"
1957 huffyuv_encoder_select
="bswapdsp huffman huffyuvencdsp"
1958 iac_decoder_select
="imc_decoder"
1959 imc_decoder_select
="bswapdsp fft mdct sinewin"
1960 indeo3_decoder_select
="hpeldsp"
1961 indeo4_decoder_select
="ividsp"
1962 indeo5_decoder_select
="ividsp"
1963 interplay_video_decoder_select
="hpeldsp"
1964 jpegls_decoder_select
="golomb mjpeg_decoder"
1965 jpegls_encoder_select
="golomb"
1966 jv_decoder_select
="blockdsp"
1967 lagarith_decoder_select
="huffyuvdsp"
1968 ljpeg_encoder_select
="aandcttables idctdsp jpegtables"
1969 loco_decoder_select
="golomb"
1970 mdec_decoder_select
="blockdsp idctdsp mpegvideo"
1971 metasound_decoder_select
="lsp mdct sinewin"
1972 mimic_decoder_select
="blockdsp bswapdsp hpeldsp idctdsp"
1973 mjpeg_decoder_select
="blockdsp hpeldsp idctdsp jpegtables"
1974 mjpeg_encoder_select
="aandcttables jpegtables mpegvideoenc"
1975 mjpegb_decoder_select
="mjpeg_decoder"
1976 mlp_decoder_select
="mlp_parser"
1977 motionpixels_decoder_select
="bswapdsp"
1978 mp1_decoder_select
="mpegaudio"
1979 mp1float_decoder_select
="mpegaudio"
1980 mp2_decoder_select
="mpegaudio"
1981 mp2float_decoder_select
="mpegaudio"
1982 mp3_decoder_select
="mpegaudio"
1983 mp3adu_decoder_select
="mpegaudio"
1984 mp3adufloat_decoder_select
="mpegaudio"
1985 mp3float_decoder_select
="mpegaudio"
1986 mp3on4_decoder_select
="mpegaudio"
1987 mp3on4float_decoder_select
="mpegaudio"
1988 mpc7_decoder_select
="bswapdsp mpegaudiodsp"
1989 mpc8_decoder_select
="mpegaudiodsp"
1990 mpeg_xvmc_decoder_deps
="X11_extensions_XvMClib_h"
1991 mpeg_xvmc_decoder_select
="mpeg2video_decoder"
1992 mpeg1video_decoder_select
="error_resilience mpeg_er mpegvideo"
1993 mpeg1video_encoder_select
="aandcttables mpegvideoenc"
1994 mpeg2video_decoder_select
="error_resilience mpeg_er mpegvideo"
1995 mpeg2video_encoder_select
="aandcttables mpegvideoenc"
1996 mpeg2_qsv_decoder_deps
="libmfx"
1997 mpeg2_qsv_decoder_select
="qsvdec mpeg2_qsv_hwaccel mpegvideo_parser"
1998 mpeg2_qsv_encoder_deps
="libmfx"
1999 mpeg2_qsv_encoder_select
="qsvenc"
2000 mpeg4_decoder_select
="h263_decoder mpeg4video_parser"
2001 mpeg4_encoder_select
="h263_encoder"
2002 msa1_decoder_select
="mss34dsp"
2003 msmpeg4v1_decoder_select
="h263_decoder"
2004 msmpeg4v2_decoder_select
="h263_decoder"
2005 msmpeg4v2_encoder_select
="h263_encoder"
2006 msmpeg4v3_decoder_select
="h263_decoder"
2007 msmpeg4v3_encoder_select
="h263_encoder"
2008 mss2_decoder_select
="error_resilience mpeg_er qpeldsp vc1_decoder"
2009 mts2_decoder_select
="mss34dsp"
2010 mxpeg_decoder_select
="mjpeg_decoder"
2011 nellymoser_decoder_select
="mdct sinewin"
2012 nellymoser_encoder_select
="audio_frame_queue mdct sinewin"
2013 nuv_decoder_select
="idctdsp lzo"
2014 nvenc_h264_encoder_deps
="nvenc"
2015 nvenc_hevc_encoder_deps
="nvenc"
2016 on2avc_decoder_select
="mdct"
2017 opus_decoder_deps
="avresample"
2018 opus_decoder_select
="imdct15"
2019 png_decoder_deps
="zlib"
2020 png_encoder_deps
="zlib"
2021 png_encoder_select
="huffyuvencdsp"
2022 prores_decoder_select
="idctdsp"
2023 prores_encoder_select
="fdctdsp"
2024 qcelp_decoder_select
="lsp"
2025 qdm2_decoder_select
="mdct rdft mpegaudiodsp"
2026 ra_144_encoder_select
="audio_frame_queue lpc"
2027 ralf_decoder_select
="golomb"
2028 rscc_decoder_deps
="zlib"
2029 rv10_decoder_select
="error_resilience h263_decoder h263dsp mpeg_er"
2030 rv10_encoder_select
="h263_encoder"
2031 rv20_decoder_select
="error_resilience h263_decoder h263dsp mpeg_er"
2032 rv20_encoder_select
="h263_encoder"
2033 rv30_decoder_select
="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
2034 rv40_decoder_select
="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo rv34dsp videodsp"
2035 screenpresso_decoder_deps
="zlib"
2036 shorten_decoder_select
="golomb"
2037 sipr_decoder_select
="lsp"
2038 sp5x_decoder_select
="mjpeg_decoder"
2039 svq1_decoder_select
="hpeldsp"
2040 svq1_encoder_select
="aandcttables hpeldsp me_cmp mpegvideoenc"
2041 svq3_decoder_select
="h264_decoder hpeldsp tpeldsp"
2042 svq3_decoder_suggest
="zlib"
2043 tak_decoder_select
="audiodsp"
2044 tdsc_decoder_deps
="zlib"
2045 tdsc_decoder_select
="mjpeg_decoder"
2046 theora_decoder_select
="vp3_decoder"
2047 thp_decoder_select
="mjpeg_decoder"
2048 tiff_decoder_suggest
="zlib"
2049 tiff_encoder_suggest
="zlib"
2050 truehd_decoder_select
="mlp_decoder"
2051 truemotion2_decoder_select
="bswapdsp"
2052 truespeech_decoder_select
="bswapdsp"
2053 tscc_decoder_deps
="zlib"
2054 txd_decoder_select
="texturedsp"
2055 twinvq_decoder_select
="mdct lsp sinewin"
2056 utvideo_decoder_select
="bswapdsp"
2057 utvideo_encoder_select
="bswapdsp huffman huffyuvencdsp"
2058 vble_decoder_select
="huffyuvdsp"
2059 vc1_decoder_select
="blockdsp error_resilience h263_decoder h264chroma h264qpel intrax8 mpeg_er qpeldsp startcode"
2060 vc1image_decoder_select
="vc1_decoder"
2061 vorbis_decoder_select
="mdct"
2062 vorbis_encoder_select
="mdct"
2063 vp3_decoder_select
="hpeldsp vp3dsp videodsp"
2064 vp5_decoder_select
="h264chroma hpeldsp videodsp vp3dsp vp56dsp"
2065 vp6_decoder_select
="h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
2066 vp6a_decoder_select
="vp6_decoder"
2067 vp6f_decoder_select
="vp6_decoder"
2068 vp7_decoder_select
="h264pred videodsp vp8dsp"
2069 vp8_decoder_select
="h264pred videodsp vp8dsp"
2070 vp9_decoder_select
="videodsp"
2071 webp_decoder_select
="vp8_decoder"
2072 wmapro_decoder_select
="mdct sinewin wma_freqs"
2073 wmav1_decoder_select
="mdct sinewin wma_freqs"
2074 wmav1_encoder_select
="mdct sinewin wma_freqs"
2075 wmav2_decoder_select
="mdct sinewin wma_freqs"
2076 wmav2_encoder_select
="mdct sinewin wma_freqs"
2077 wmavoice_decoder_select
="lsp rdft dct mdct sinewin"
2078 wmv1_decoder_select
="h263_decoder"
2079 wmv1_encoder_select
="h263_encoder"
2080 wmv2_decoder_select
="blockdsp h263_decoder idctdsp intrax8 videodsp wmv2dsp"
2081 wmv2_encoder_select
="h263_encoder wmv2dsp"
2082 wmv3_decoder_select
="vc1_decoder"
2083 wmv3image_decoder_select
="wmv3_decoder"
2084 zerocodec_decoder_deps
="zlib"
2085 zlib_decoder_deps
="zlib"
2086 zlib_encoder_deps
="zlib"
2087 zmbv_decoder_deps
="zlib"
2088 zmbv_encoder_deps
="zlib"
2090 # hardware accelerators
2091 d3d11va_deps
="d3d11_h dxva_h ID3D11VideoDecoder"
2092 dxva2_deps
="dxva2api_h DXVA2_ConfigPictureDecode"
2093 vaapi_deps
="va_va_h"
2094 vda_deps
="VideoDecodeAcceleration_VDADecoder_h pthreads"
2095 vda_extralibs
="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2096 vdpau_deps
="vdpau_vdpau_h vdpau_vdpau_x11_h"
2098 h263_vaapi_hwaccel_deps
="vaapi"
2099 h263_vaapi_hwaccel_select
="h263_decoder"
2100 h264_d3d11va_hwaccel_deps
="d3d11va"
2101 h264_d3d11va_hwaccel_select
="h264_decoder"
2102 h264_dxva2_hwaccel_deps
="dxva2"
2103 h264_dxva2_hwaccel_select
="h264_decoder"
2104 h264_mmal_decoder_deps
="mmal"
2105 h264_mmal_hwaccel_deps
="mmal"
2106 h264_mmal_decoder_select
="h264_decoder"
2107 h264_mmal_encoder_deps
="mmal"
2108 h264_qsv_hwaccel_deps
="libmfx"
2109 h264_vaapi_hwaccel_deps
="vaapi"
2110 h264_vaapi_hwaccel_select
="h264_decoder"
2111 h264_vda_hwaccel_deps
="vda"
2112 h264_vda_hwaccel_select
="h264_decoder"
2113 h264_vda_old_hwaccel_deps
="vda"
2114 h264_vda_old_hwaccel_select
="h264_decoder"
2115 h264_vdpau_hwaccel_deps
="vdpau"
2116 h264_vdpau_hwaccel_select
="h264_decoder"
2117 hevc_d3d11va_hwaccel_deps
="d3d11va DXVA_PicParams_HEVC"
2118 hevc_d3d11va_hwaccel_select
="hevc_decoder"
2119 hevc_dxva2_hwaccel_deps
="dxva2 DXVA_PicParams_HEVC"
2120 hevc_dxva2_hwaccel_select
="hevc_decoder"
2121 hevc_qsv_hwaccel_deps
="libmfx"
2122 mpeg1_vdpau_hwaccel_deps
="vdpau"
2123 mpeg1_vdpau_hwaccel_select
="mpeg1video_decoder"
2124 mpeg2_d3d11va_hwaccel_deps
="d3d11va"
2125 mpeg2_d3d11va_hwaccel_select
="mpeg2video_decoder"
2126 mpeg2_dxva2_hwaccel_deps
="dxva2"
2127 mpeg2_dxva2_hwaccel_select
="mpeg2video_decoder"
2128 mpeg2_qsv_hwaccel_deps
="libmfx"
2129 mpeg2_vaapi_hwaccel_deps
="vaapi"
2130 mpeg2_vaapi_hwaccel_select
="mpeg2video_decoder"
2131 mpeg2_vdpau_hwaccel_deps
="vdpau"
2132 mpeg2_vdpau_hwaccel_select
="mpeg2video_decoder"
2133 mpeg4_vaapi_hwaccel_deps
="vaapi"
2134 mpeg4_vaapi_hwaccel_select
="mpeg4_decoder"
2135 mpeg4_vdpau_hwaccel_deps
="vdpau"
2136 mpeg4_vdpau_hwaccel_select
="mpeg4_decoder"
2137 vc1_d3d11va_hwaccel_deps
="d3d11va"
2138 vc1_d3d11va_hwaccel_select
="vc1_decoder"
2139 vc1_dxva2_hwaccel_deps
="dxva2"
2140 vc1_dxva2_hwaccel_select
="vc1_decoder"
2141 vc1_vaapi_hwaccel_deps
="vaapi"
2142 vc1_vaapi_hwaccel_select
="vc1_decoder"
2143 vc1_vdpau_hwaccel_deps
="vdpau"
2144 vc1_vdpau_hwaccel_select
="vc1_decoder"
2145 wmv3_d3d11va_hwaccel_select
="vc1_d3d11va_hwaccel"
2146 wmv3_dxva2_hwaccel_select
="vc1_dxva2_hwaccel"
2147 wmv3_vaapi_hwaccel_select
="vc1_vaapi_hwaccel"
2148 wmv3_vdpau_hwaccel_select
="vc1_vdpau_hwaccel"
2151 h264_parser_select
="h264_decoder"
2152 hevc_parser_select
="golomb"
2153 mpegvideo_parser_select
="mpegvideo"
2154 mpeg4video_parser_select
="error_resilience h263dsp mpeg_er mpegvideo qpeldsp"
2155 vc1_parser_select
="mpegvideo startcode vc1_decoder"
2158 mjpeg2jpeg_bsf_select
="jpegtables"
2160 # external libraries
2161 libdcadec_decoder_deps
="libdcadec"
2162 libfaac_encoder_deps
="libfaac"
2163 libfaac_encoder_select
="audio_frame_queue"
2164 libfdk_aac_decoder_deps
="libfdk_aac"
2165 libfdk_aac_encoder_deps
="libfdk_aac"
2166 libfdk_aac_encoder_select
="audio_frame_queue"
2167 libgsm_decoder_deps
="libgsm"
2168 libgsm_encoder_deps
="libgsm"
2169 libgsm_ms_decoder_deps
="libgsm"
2170 libgsm_ms_encoder_deps
="libgsm"
2171 libilbc_decoder_deps
="libilbc"
2172 libilbc_encoder_deps
="libilbc"
2173 libkvazaar_encoder_deps
="libkvazaar"
2174 libmp3lame_encoder_deps
="libmp3lame"
2175 libmp3lame_encoder_select
="audio_frame_queue"
2176 libopencore_amrnb_decoder_deps
="libopencore_amrnb"
2177 libopencore_amrnb_encoder_deps
="libopencore_amrnb"
2178 libopencore_amrnb_encoder_select
="audio_frame_queue"
2179 libopencore_amrwb_decoder_deps
="libopencore_amrwb"
2180 libopenh264_encoder_deps
="libopenh264"
2181 libopenjpeg_decoder_deps
="libopenjpeg"
2182 libopenjpeg_encoder_deps
="libopenjpeg"
2183 libopus_decoder_deps
="libopus"
2184 libopus_encoder_deps
="libopus"
2185 libopus_encoder_select
="audio_frame_queue"
2186 libschroedinger_decoder_deps
="libschroedinger"
2187 libschroedinger_encoder_deps
="libschroedinger"
2188 libspeex_decoder_deps
="libspeex"
2189 libspeex_encoder_deps
="libspeex"
2190 libspeex_encoder_select
="audio_frame_queue"
2191 libtheora_encoder_deps
="libtheora"
2192 libtwolame_encoder_deps
="libtwolame"
2193 libvo_aacenc_encoder_deps
="libvo_aacenc"
2194 libvo_aacenc_encoder_select
="audio_frame_queue"
2195 libvo_amrwbenc_encoder_deps
="libvo_amrwbenc"
2196 libvorbis_encoder_deps
="libvorbis"
2197 libvorbis_encoder_select
="audio_frame_queue"
2198 libvpx_vp8_decoder_deps
="libvpx"
2199 libvpx_vp8_encoder_deps
="libvpx"
2200 libvpx_vp9_decoder_deps
="libvpx"
2201 libvpx_vp9_encoder_deps
="libvpx"
2202 libwavpack_encoder_deps
="libwavpack"
2203 libwebp_encoder_deps
="libwebp"
2204 libx262_encoder_deps
="libx262"
2205 libx264_encoder_deps
="libx264"
2206 libx265_encoder_deps
="libx265"
2207 libxavs_encoder_deps
="libxavs"
2208 libxvid_encoder_deps
="libxvid"
2211 ac3_demuxer_select
="ac3_parser"
2212 asf_demuxer_select
="riffdec"
2213 asf_muxer_select
="riffenc"
2214 asf_stream_muxer_select
="asf_muxer"
2215 avi_demuxer_select
="riffdec"
2216 avi_muxer_select
="riffenc"
2217 avisynth_demuxer_deps
="avisynth"
2218 avisynth_demuxer_select
="riffdec"
2219 caf_demuxer_select
="riffdec"
2220 dash_muxer_select
="mp4_muxer"
2221 dirac_demuxer_select
="dirac_parser"
2222 dv_demuxer_select
="dvprofile"
2223 dv_muxer_select
="dvprofile"
2224 dxa_demuxer_select
="riffdec"
2225 eac3_demuxer_select
="ac3_parser"
2226 f4v_muxer_select
="mov_muxer"
2227 flac_demuxer_select
="flac_parser"
2228 hds_muxer_select
="flv_muxer"
2229 hls_muxer_select
="mpegts_muxer"
2230 ipod_muxer_select
="mov_muxer"
2231 ismv_muxer_select
="mov_muxer"
2232 matroska_audio_muxer_select
="matroska_muxer"
2233 matroska_demuxer_select
="riffdec"
2234 matroska_demuxer_suggest
="bzlib lzo zlib"
2235 matroska_muxer_select
="riffenc"
2236 mmf_muxer_select
="riffenc"
2237 mov_demuxer_select
="riffdec"
2238 mov_demuxer_suggest
="zlib"
2239 mov_muxer_select
="riffenc rtpenc_chain"
2240 mp3_demuxer_select
="mpegaudio_parser"
2241 mp4_muxer_select
="mov_muxer"
2242 mpegts_muxer_select
="adts_muxer latm_muxer"
2243 mpegtsraw_demuxer_select
="mpegts_demuxer"
2244 mxf_d10_muxer_select
="mxf_muxer"
2245 nut_muxer_select
="riffenc"
2246 nuv_demuxer_select
="riffdec"
2247 oga_muxer_select
="ogg_muxer"
2248 ogg_demuxer_select
="dirac_parse"
2249 opus_muxer_select
="ogg_muxer"
2250 psp_muxer_select
="mov_muxer"
2251 rtp_demuxer_select
="sdp_demuxer"
2252 rtpdec_select
="asf_demuxer jpegtables mov_demuxer mpegts_demuxer rm_demuxer rtp_protocol"
2253 rtsp_demuxer_select
="http_protocol rtpdec"
2254 rtsp_muxer_select
="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2255 sap_demuxer_select
="sdp_demuxer"
2256 sap_muxer_select
="rtp_muxer rtp_protocol rtpenc_chain"
2257 sdp_demuxer_select
="rtpdec"
2258 smoothstreaming_muxer_select
="ismv_muxer"
2259 spdif_muxer_select
="aac_parser"
2260 spx_muxer_select
="ogg_muxer"
2261 swf_demuxer_suggest
="zlib"
2262 tak_demuxer_select
="tak_parser"
2263 tg2_muxer_select
="mov_muxer"
2264 tgp_muxer_select
="mov_muxer"
2265 w64_demuxer_select
="wav_demuxer"
2266 wav_demuxer_select
="riffdec"
2267 wav_muxer_select
="riffenc"
2268 webm_muxer_select
="riffenc"
2269 webm_muxer_suggest
="libopus_encoder libvorbis_encoder libvpx_vp8_encoder libvpx_vp9_encoder"
2270 wtv_demuxer_select
="riffdec"
2271 xmv_demuxer_select
="riffdec"
2272 xwma_demuxer_select
="riffdec"
2275 alsa_indev_deps
="alsa_asoundlib_h snd_pcm_htimestamp"
2276 alsa_outdev_deps
="alsa_asoundlib_h"
2277 avfoundation_indev_deps
="AVFoundation_AVFoundation_h"
2278 bktr_indev_deps_any
="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2279 dv1394_indev_deps
="dv1394"
2280 dv1394_indev_select
="dv_demuxer"
2281 fbdev_indev_deps
="linux_fb_h"
2282 jack_indev_deps
="jack_jack_h pthreads"
2283 libcdio_indev_deps
="libcdio"
2284 libdc1394_indev_deps
="libdc1394"
2285 oss_indev_deps_any
="soundcard_h sys_soundcard_h"
2286 oss_outdev_deps_any
="soundcard_h sys_soundcard_h"
2287 pulse_indev_deps
="libpulse"
2288 sndio_indev_deps
="sndio_h"
2289 sndio_outdev_deps
="sndio_h"
2290 v4l2_indev_deps_any
="linux_videodev2_h sys_videoio_h"
2291 vfwcap_indev_deps
="capCreateCaptureWindow vfwcap_defines"
2292 vfwcap_indev_extralibs
="-lavicap32"
2293 x11grab_indev_deps
="x11grab"
2294 x11grab_xcb_indev_deps
="libxcb"
2297 ffrtmpcrypt_protocol_deps
="!librtmp_protocol"
2298 ffrtmpcrypt_protocol_deps_any
="gcrypt gmp openssl"
2299 ffrtmpcrypt_protocol_select
="tcp_protocol"
2300 ffrtmphttp_protocol_deps
="!librtmp_protocol"
2301 ffrtmphttp_protocol_select
="http_protocol"
2302 gopher_protocol_select
="network"
2303 http_protocol_select
="tcp_protocol"
2304 httpproxy_protocol_select
="tcp_protocol"
2305 https_protocol_select
="tls_protocol"
2306 icecast_protocol_select
="http_protocol"
2307 librtmp_protocol_deps
="librtmp"
2308 librtmpe_protocol_deps
="librtmp"
2309 librtmps_protocol_deps
="librtmp"
2310 librtmpt_protocol_deps
="librtmp"
2311 librtmpte_protocol_deps
="librtmp"
2312 mmsh_protocol_select
="http_protocol"
2313 mmst_protocol_select
="network"
2314 rtmp_protocol_deps
="!librtmp_protocol"
2315 rtmp_protocol_select
="tcp_protocol"
2316 rtmpe_protocol_select
="ffrtmpcrypt_protocol"
2317 rtmps_protocol_deps
="!librtmp_protocol"
2318 rtmps_protocol_select
="tls_protocol"
2319 rtmpt_protocol_select
="ffrtmphttp_protocol"
2320 rtmpte_protocol_select
="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2321 rtmpts_protocol_select
="ffrtmphttp_protocol https_protocol"
2322 rtp_protocol_select
="udp_protocol"
2323 sctp_protocol_deps
="struct_sctp_event_subscribe"
2324 sctp_protocol_select
="network"
2325 srtp_protocol_select
="rtp_protocol"
2326 tcp_protocol_select
="network"
2327 tls_gnutls_protocol_deps
="gnutls"
2328 tls_gnutls_protocol_select
="tcp_protocol"
2329 tls_openssl_protocol_deps
="openssl !tls_gnutls_protocol"
2330 tls_openssl_protocol_select
="tcp_protocol"
2331 tls_protocol_deps_any
="tls_gnutls_protocol tls_openssl_protocol"
2332 udp_protocol_select
="network"
2333 unix_protocol_deps
="sys_un_h"
2334 unix_protocol_select
="network"
2337 blackframe_filter_deps
="gpl"
2338 boxblur_filter_deps
="gpl"
2339 bs2b_filter_deps
="libbs2b"
2340 cropdetect_filter_deps
="gpl"
2341 delogo_filter_deps
="gpl"
2342 drawtext_filter_deps
="libfreetype"
2343 frei0r_filter_deps
="frei0r dlopen"
2344 frei0r_filter_extralibs
='$ldl'
2345 frei0r_src_filter_deps
="frei0r dlopen"
2346 frei0r_src_filter_extralibs
='$ldl'
2347 hqdn3d_filter_deps
="gpl"
2348 interlace_filter_deps
="gpl"
2349 ocv_filter_deps
="libopencv"
2350 resample_filter_deps
="avresample"
2351 scale_filter_deps
="swscale"
2354 avcodec_example_deps
="avcodec avutil"
2355 filter_audio_example_deps
="avfilter avutil"
2356 metadata_example_deps
="avformat avutil"
2357 output_example_deps
="avcodec avformat avutil swscale"
2358 qsvdec_example_deps
="avcodec avutil libmfx h264_qsv_decoder vaapi_x11"
2359 transcode_aac_example_deps
="avcodec avformat avresample"
2361 # libraries, in linking order
2362 avcodec_deps
="avutil"
2363 avdevice_deps
="avformat avcodec avutil"
2364 avfilter_deps
="avutil"
2365 avformat_deps
="avcodec avutil"
2366 avresample_deps
="avutil"
2367 swscale_deps
="avutil"
2370 avconv_deps
="avcodec avfilter avformat avresample swscale"
2371 avconv_select
="aformat_filter anull_filter asyncts_filter atrim_filter format_filter
2372 fps_filter null_filter resample_filter scale_filter
2373 setpts_filter trim_filter"
2374 avplay_deps
="avcodec avformat avresample swscale sdl"
2375 avplay_libs
='$sdl_libs'
2376 avplay_select
="rdft transpose_filter hflip_filter vflip_filter"
2377 avprobe_deps
="avcodec avformat"
2381 texi2html_deps
="doc"
2383 # default parameters
2385 logfile
="config.log"
2387 # installation paths
2388 prefix_default
="/usr/local"
2389 bindir_default
='${prefix}/bin'
2390 datadir_default
='${prefix}/share/avconv'
2391 docdir_default
='${prefix}/share/doc/libav'
2392 incdir_default
='${prefix}/include'
2393 libdir_default
='${prefix}/lib'
2394 mandir_default
='${prefix}/share/man'
2395 shlibdir_default
="$libdir_default"
2400 host_cc_default
="gcc"
2405 pkg_config_default
=pkg-config
2411 arch_default
=$
(uname
-m
)
2416 target_os_default
=$
(tolower $
(uname
-s
))
2417 host_os
=$target_os_default
2419 # configurable options
2420 enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST
2425 enable faan faandct faanidct
2426 enable optimizations
2427 enable safe_bitstream_reader
2429 enable swscale_alpha
2430 enable valgrind_backtrace
2432 # By default, enable only those hwaccels that have no external dependencies.
2433 enable d3d11va dxva2 vda vdpau
2436 SHFLAGS
='-shared -Wl,-soname,$$(@F)'
2439 FULLNAME
='$(NAME)$(BUILDSUF)'
2440 LIBNAME
='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2443 SLIBNAME
='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2444 SLIBNAME_WITH_VERSION
='$(SLIBNAME).$(LIBVERSION)'
2445 SLIBNAME_WITH_MAJOR
='$(SLIBNAME).$(LIBMAJOR)'
2446 LIB_INSTALL_EXTRA_CMD
='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2447 SLIB_INSTALL_NAME
='$(SLIBNAME_WITH_VERSION)'
2448 SLIB_INSTALL_LINKS
='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2471 host_cflags_filter
=echo
2472 host_ldflags_filter
=echo
2474 target_path
='$(CURDIR)'
2476 # since the object filename is not given with the -MM flag, the compiler
2477 # is only able to print the basename, and we must add the path ourselves
2478 DEPCMD
='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2482 if test -f configure
; then
2485 source_path
=$
(cd $
(dirname "$0"); pwd)
2486 echo "$source_path" |
grep -q
'[[:blank:]]' &&
2487 die
"Out of tree builds are impossible with whitespace in source path."
2488 test -e
"$source_path/config.h" &&
2489 die
"Out of tree builds are impossible with config.h in source dir."
2496 LIBAV_CONFIGURATION
="${LIBAV_CONFIGURATION# } ${l}${r}"
2502 file=$source_path/$3
2503 sed -n
"s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2506 ENCODER_LIST
=$
(find_things encoder ENC libavcodec
/allcodecs.c
)
2507 DECODER_LIST
=$
(find_things decoder DEC libavcodec
/allcodecs.c
)
2508 HWACCEL_LIST
=$
(find_things hwaccel HWACCEL libavcodec
/allcodecs.c
)
2509 PARSER_LIST
=$
(find_things parser PARSER libavcodec
/allcodecs.c
)
2510 BSF_LIST
=$
(find_things bsf BSF libavcodec
/allcodecs.c
)
2511 MUXER_LIST
=$
(find_things muxer _MUX libavformat
/allformats.c
)
2512 DEMUXER_LIST
=$
(find_things demuxer DEMUX libavformat
/allformats.c
)
2513 OUTDEV_LIST
=$
(find_things outdev OUTDEV libavdevice
/alldevices.c
)
2514 INDEV_LIST
=$
(find_things indev _IN libavdevice
/alldevices.c
)
2515 PROTOCOL_LIST
=$
(find_things protocol PROTOCOL libavformat
/allformats.c
)
2516 FILTER_LIST
=$
(find_things filter FILTER libavfilter
/allfilters.c
)
2532 for n
in $COMPONENT_LIST; do
2533 v
=$
(toupper
${n%s})_LIST
2535 eval ${n}_if_any
="\$$v"
2538 enable $ARCH_EXT_LIST
2541 echo "Unknown option \"$1\"."
2542 echo "See $0 --help for available options."
2547 printf "%-25s %-25s %-25s\n" $
(cat |
tr ' ' '\n' |
sort)
2553 echo $
* |
sed s
/$suffix//g | print_3_columns
2565 is_in
${comp} $COMPONENT_LIST && eval comp
=\$$
(toupper
${comp%s})_LIST
2566 echo "prob ${prob:-0.5}"
2574 random_seed
=$
(awk "BEGIN { srand($random_seed); print srand() }")
2575 $action $
(rand_list
"$@" |
awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2584 --extra-ldexeflags
=*)
2585 add_ldexeflags
$optval
2588 add_extralibs
$optval
2591 disable
$INDEV_LIST $OUTDEV_LIST
2594 debuglevel
="$optval"
2597 disable
$PROGRAM_LIST
2599 --disable-everything
)
2600 map
'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2603 map
'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2604 disable
$LIBRARY_LIST $PROGRAM_LIST doc
2606 --enable-random|
--disable-random
)
2607 action
=${opt%%-random}
2608 do_random
${action#--} $COMPONENT_LIST
2610 --enable-random
=*|
--disable-random
=*)
2611 action
=${opt%%-random=*}
2612 do_random
${action#--} $optval
2614 --enable-
*=*|
--disable-
*=*)
2615 eval $
(echo "${opt%%=*}" |
sed 's/--/action=/;s/-/ thing=/')
2616 is_in
"${thing}s" $COMPONENT_LIST || die_unknown
"$opt"
2617 eval list
=\$$
(toupper
$thing)_LIST
2618 name
=$
(echo "${optval}" |
sed "s/,/_${thing}|/g")_
${thing}
2619 $action $
(filter
"$name" $list)
2621 --enable-avserver|
--disable-avserver
*)
2622 warn
"avserver has been removed, the ${opt} option is only"\
2623 "provided for compatibility and will be removed in the future"
2625 --enable-?
*|
--disable-?
*)
2626 eval $
(echo "$opt" |
sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2627 if is_in
$option $COMPONENT_LIST; then
2628 test $action = disable
&& action
=unset
2629 eval $action \$$
(toupper
${option%s})_LIST
2630 elif is_in
$option $CMDLINE_SELECT; then
2637 NAME
="${opt#--list-}"
2638 is_in
$NAME $COMPONENT_LIST || die_unknown
$opt
2640 eval show_list
$NAME \$$
(toupper
$NAME)_LIST
2642 --help|
-h
) show_help
2645 optname
="${opt%%=*}"
2646 optname
="${optname#--}"
2647 optname
=$
(echo "$optname" |
sed 's/-/_/g')
2648 if is_in
$optname $CMDLINE_SET; then
2649 eval $optname='$optval'
2650 elif is_in
$optname $CMDLINE_APPEND; then
2651 append
$optname "$optval"
2663 disabled logging
&& logfile
=/dev
/null
2665 # Disable all the library-specific components if the library itself
2666 # is disabled, see AVCODEC_LIST and following _LIST variables.
2668 disable_components
(){
2669 disabled
${1} && disable $
(
2670 eval components
="\$$(toupper ${1})_COMPONENTS"
2671 map
'eval echo \${$(toupper ${v%s})_LIST}' $components
2675 map
'disable_components $v' $LIBRARY_LIST
2677 echo "# $0 $LIBAV_CONFIGURATION" > $logfile
2680 case "$toolchain" in
2683 add_cflags
-fsanitize
=address
2684 add_ldflags
-fsanitize
=address
2688 add_cflags
-fsanitize
=thread
-pie
2689 add_ldflags
-fsanitize
=thread
-pie
2693 add_cflags
-fsanitize
=undefined
-O1
2694 add_ldflags
-fsanitize
=undefined
2698 add_cflags
-fsanitize
=address
2699 add_ldflags
-fsanitize
=address
2703 add_cflags
-fsanitize
=thread
-pie
-fPIC
2704 add_ldflags
-fsanitize
=thread
-pie
-fPIC
2708 add_cflags
-fsanitize
=undefined
2709 add_ldflags
-fsanitize
=undefined
2712 target_exec_default
="valgrind"
2713 target_exec_args
="--alloc-fn=av_malloc --alloc-fn=av_mallocz"
2716 target_exec_default
="valgrind"
2717 target_exec_args
="--track-origins=yes --leak-check=full"
2720 # Check whether the current MSVC version needs the C99 converter.
2721 # From MSVC 2013 (compiler major version 18) onwards, it does actually
2722 # support enough of C99 to build libav. Default to the new
2723 # behaviour if the regexp was unable to match anything, since this
2724 # successfully parses the version number of existing supported
2725 # versions that require the converter (MSVC 2010 and 2012).
2726 cl_major_ver
=$
(cl
2>&1 |
sed -n
's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
2727 if [ -z
"$cl_major_ver" ] ||
[ $cl_major_ver -ge
18 ]; then
2730 cc_default
="c99wrap cl"
2732 ld_default
="$source_path/compat/windows/mslink"
2733 nm_default
="dumpbin -symbols"
2740 target_os_default
="win32"
2741 # Use a relative path for TMPDIR. This makes sure all the
2742 # ffconf temp files are written with a relative path, avoiding
2743 # issues with msys/win32 path conversion for MSVC parameters
2744 # such as -Fo<file> or -out:<file>.
2750 nm_default
="dumpbin -symbols"
2752 target_os_default
="win32"
2756 add_cflags
-fprofile-arcs
-ftest-coverage
2757 add_ldflags
-fprofile-arcs
-ftest-coverage
2760 add_cppflags
-U_FORTIFY_SOURCE
-D_FORTIFY_SOURCE
=2
2761 add_cflags
-fno-strict-overflow
-fstack-protector-all
2762 add_ldflags
-Wl
,-z
,relro
-Wl
,-z
,now
2765 die
"Unknown toolchain $toolchain"
2769 test -n
"$cross_prefix" && enable cross_compile
2771 if enabled cross_compile
; then
2772 test -n
"$arch" && test -n
"$target_os" ||
2773 die
"Must specify target arch and OS when cross-compiling"
2776 ar_default
="${cross_prefix}${ar_default}"
2777 cc_default
="${cross_prefix}${cc_default}"
2778 occ_default
="${cross_prefix}${occ_default}"
2779 nm_default
="${cross_prefix}${nm_default}"
2780 pkg_config_default
="${cross_prefix}${pkg_config_default}"
2781 ranlib
="${cross_prefix}${ranlib}"
2782 strip
="${cross_prefix}${strip}"
2784 sysinclude_default
="${sysroot}/usr/include"
2786 set_default arch cc pkg_config sysinclude target_exec target_os
2787 enabled cross_compile || host_cc_default
=$cc
2790 if ! $pkg_config --version
>/dev
/null
2>&1; then
2791 warn
"$pkg_config not found, library detection may fail."
2797 mingw32
*|win32|win64|cygwin
*|
*-dos|freedos|opendos|os
/2*|symbian
) echo .exe
;;
2801 EXESUF
=$
(exesuf
$target_os)
2802 HOSTEXESUF
=$
(exesuf
$host_os)
2804 # set temporary file name
2805 : ${TMPDIR:=$TEMPDIR}
2809 if ! check_cmd mktemp
-u XXXXXX
; then
2810 # simple replacement for missing mktemp
2811 # NOT SAFE FOR GENERAL USE
2813 echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
2818 tmp
=$
(mktemp
-u
"${TMPDIR}/ffconf.XXXXXXXX")$2 &&
2819 (set -C
; exec > $tmp) 2>/dev
/null ||
2820 die
"Unable to create temporary file in $TMPDIR."
2821 append TMPFILES
$tmp
2825 trap 'rm -f -- $TMPFILES' EXIT
2829 tmpfile TMPE
$EXESUF
2840 # make sure we can execute files in $TMPDIR
2841 cat > $TMPSH 2>> $logfile <<EOF
2844 chmod +x
$TMPSH >> $logfile 2>&1
2845 if ! $TMPSH >> $logfile 2>&1; then
2847 Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
2848 variable to another directory and make sure that it is not mounted noexec.
2850 die
"Sanity test failed."
2856 # Filter out MSVC cl.exe options from cflags that shouldn't
2857 # be passed to gas-preprocessor
2867 -std
=c99
) echo -c99
;;
2868 -mcpu
=*) echo -arch
${flag#*=} ;;
2869 -mieee
) echo -ieee
;;
2870 -O
*|
-fast
) echo $flag ;;
2871 -fno-math-errno
) echo -assume nomath_errno
;;
2873 -Wall
) echo -msg_enable level2
;;
2874 -Wno-pointer-sign
) echo -msg_disable ptrmismatch1
;;
2875 -Wl
,*) echo $flag ;;
2885 -Wno-switch
) echo -Wno-switch-enum
;;
2886 -Wno-format-zero-length
) ;;
2887 -Wdisabled-optimization
) ;;
2888 -Wno-pointer-sign
) echo -Wno-other
;;
2894 msvc_common_flags
(){
2897 # In addition to specifying certain flags under the compiler
2898 # specific filters, they must be specified here as well or else the
2899 # generic catch all at the bottom will print the original flag.
2903 -fomit-frame-pointer
) ;;
2907 -fno-signed-zeros
) ;;
2911 -lz
) echo zlib.lib
;;
2912 -lavifil32
) echo vfw32.lib
;;
2913 -lavicap32
) echo vfw32.lib user32.lib
;;
2914 -l
*) echo ${flag#-l}.lib
;;
2915 -L
*) echo -libpath
:${flag#-L} ;;
2922 msvc_common_flags
"$@"
2925 -Wall
) echo -W4
-wd4244
-wd4127
-wd4018
-wd4389 \
2926 -wd4146
-wd4057
-wd4204
-wd4706
-wd4305 \
2927 -wd4152
-wd4324
-we4013
-wd4100
-wd4214 \
2928 -wd4273
-wd4554
-wd4701
;;
2934 msvc_common_flags
"$@"
2937 # Despite what Intel's documentation says -Wall, which is supported
2938 # on Windows, does enable remarks so disable them here.
2939 -Wall
) echo $flag -Qdiag-disable
:remark
;;
2940 -std
=c99
) echo -Qstd
=c99
;;
2948 -flto
) echo -Mipa
=fast
,libopt
,libinline
,vestigial
;;
2949 -fomit-frame-pointer
) echo -Mnoframe
;;
2960 case "${flag#*=}" in
2961 native
) echo -xtarget
=native
;;
2962 v9|niagara
) echo -xarch
=sparc
;;
2963 ultrasparc
) echo -xarch
=sparcvis
;;
2964 ultrasparc3|niagara2
) echo -xarch
=sparcvis2
;;
2965 i586|pentium
) echo -xchip
=pentium
;;
2966 i686|pentiumpro|pentium2
) echo -xtarget
=pentium_pro
;;
2967 pentium3
*|c3-2
) echo -xtarget
=pentium3
;;
2968 pentium-m
) echo -xarch
=sse2
-xchip
=pentium3
;;
2969 pentium4
*) echo -xtarget
=pentium4
;;
2970 prescott|nocona
) echo -xarch
=sse3
-xchip
=pentium4
;;
2971 *-sse3
) echo -xarch
=sse3
;;
2972 core2
) echo -xarch
=ssse3
-xchip
=core2
;;
2973 corei7
) echo -xarch
=sse4_2
-xchip
=nehalem
;;
2974 corei7-avx
) echo -xarch
=avx
-xchip
=sandybridge
;;
2975 amdfam10|barcelona|bdver
*) echo -xarch
=sse4_1
;;
2976 athlon-4|athlon-
[mx
]p
) echo -xarch
=ssea
;;
2977 k8|opteron|athlon64|athlon-fx
)
2978 echo -xarch
=sse2a
;;
2979 athlon
*) echo -xarch
=pentium_proa
;;
2982 -std
=c99
) echo -xc99
;;
2983 -fomit-frame-pointer
) echo -xregs
=frameptr
;;
2984 -fPIC
) echo -KPIC
-xcode
=pic32
;;
2985 -W
*,*) echo $flag ;;
2986 -f
*-*|
-W
*|
-mimpure-text
) ;;
2997 case "${flag#*=}" in
2998 armv7-a|cortex-a
*) echo -mv=7a8
;;
2999 armv7-r|cortex-r
*) echo -mv=7r4
;;
3000 armv7-m|cortex-m
*) echo -mv=7m3
;;
3001 armv6
*|arm11
*) echo -mv=6 ;;
3002 armv5
*e|arm
[79]*e
*|arm9
[24]6*|arm96
*|arm102
[26])
3004 armv4
*|arm7
*|arm9
[24]*) echo -mv=4 ;;
3007 -mfpu
=neon
) echo --float_support
=vfpv3
--neon
;;
3008 -mfpu
=vfp
) echo --float_support
=vfpv2
;;
3009 -mfpu
=vfpv3
) echo --float_support
=vfpv3
;;
3010 -mfpu
=vfpv3-d16
) echo --float_support
=vfpv3d16
;;
3011 -msoft-float
) echo --float_support
=vfplib
;;
3012 -O
[0-3]|
-mf
=*) echo $flag ;;
3014 -pds
=*) echo $flag ;;
3015 -D
*|
-I
*) echo $flag ;;
3016 --gcc|
--abi
=*) echo $flag ;;
3026 unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3027 unset _ld_o _ldflags _ld_lib _ld_path
3028 unset _depflags _DEPCMD _DEPFLAGS
3031 if $_cc -v
2>&1 |
grep -q
'^gcc.*LLVM'; then
3033 gcc_extra_ver
=$
(expr "$($_cc --version 2>/dev/null | head -n1)" : '.*\((.*)\)')
3034 _ident
="llvm-gcc $($_cc -dumpversion 2>/dev/null) $gcc_extra_ver"
3035 _depflags
='-MMD -MF $(@:.o=.d) -MT $@'
3038 elif $_cc -v
2>&1 |
grep -qi ^gcc
; then
3040 gcc_version
=$
($_cc --version |
head -n1
)
3041 gcc_basever
=$
($_cc -dumpversion
)
3042 gcc_pkg_ver
=$
(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3043 gcc_ext_ver
=$
(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3044 _ident
=$
(cleanws
"gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3045 if ! $_cc -dumpversion |
grep -q
'^2\.'; then
3046 _depflags
='-MMD -MF $(@:.o=.d) -MT $@'
3050 elif $_cc --version
2>/dev
/null |
grep -q ^icc
; then
3052 _ident
=$
($_cc --version |
head -n1
)
3057 elif $_cc -v
2>&1 |
grep -q xlc
; then
3059 _ident
=$
($_cc -qversion
2>/dev
/null |
head -n1
)
3061 _cflags_size
='-O5 -qcompact'
3062 elif $_cc -V
2>/dev
/null |
grep -q Compaq
; then
3064 _ident
=$
($_cc -V |
head -n1 | cut
-d
' ' -f1-3
)
3066 _cflags_speed
='-fast'
3068 _flags_filter
=ccc_flags
3069 elif $_cc --vsn
2>/dev
/null |
grep -Eq
"ARM (C/C\+\+ )?Compiler"; then
3070 test -d
"$sysroot" || die
"No valid sysroot specified."
3072 _ident
=$
($_cc --vsn |
grep -i build |
head -n1 |
sed 's/.*: //')
3073 armcc_conf
="$PWD/armcc.conf"
3074 $_cc --arm_linux_configure \
3075 --arm_linux_config_file
="$armcc_conf" \
3076 --configure_sysroot
="$sysroot" \
3077 --configure_cpp_headers
="$sysinclude" >>$logfile 2>&1 ||
3078 die
"Error creating armcc configuration file."
3079 $_cc --vsn |
grep -q RVCT
&& armcc_opt
=rvct || armcc_opt
=armcc
3080 _flags
="--arm_linux_config_file=$armcc_conf --translate_gcc"
3081 as_default
="${cross_prefix}gcc"
3085 elif $_cc -version
2>/dev
/null |
grep -Eq
'TMS470|TI ARM'; then
3087 _ident
=$
($_cc -version |
head -n1 |
tr -s
' ')
3088 _flags
='--gcc --abi=eabi -me'
3091 _depflags
='-ppa -ppd=$(@:.o=.d)'
3092 _cflags_speed
='-O3 -mf=5'
3093 _cflags_size
='-O3 -mf=2'
3094 _flags_filter
=tms470_flags
3095 elif $_cc -v
2>&1 |
grep -q clang
; then
3097 _ident
=$
($_cc --version
2>/dev
/null |
head -n1
)
3098 _depflags
='-MMD -MF $(@:.o=.d) -MT $@'
3101 elif $_cc -V
2>&1 |
grep -q Sun
; then
3103 _ident
=$
($_cc -V
2>&1 |
head -n1 | cut
-d
' ' -f
2-)
3104 _DEPCMD
='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3105 _DEPFLAGS
='-xM1 -xc99'
3108 _cflags_size
='-O5 -xspace'
3109 _flags_filter
=suncc_flags
3110 elif $_cc -v
2>&1 |
grep -q
'PathScale\|Path64'; then
3112 _ident
=$
($_cc -v
2>&1 |
head -n1 |
tr -d
:)
3113 _depflags
='-MMD -MF $(@:.o=.d) -MT $@'
3116 _flags_filter
='filter_out -Wdisabled-optimization'
3117 elif $_cc -v
2>&1 |
grep -q Open64
; then
3119 _ident
=$
($_cc -v
2>&1 |
head -n1 |
tr -d
:)
3120 _depflags
='-MMD -MF $(@:.o=.d) -MT $@'
3123 _flags_filter
='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3124 elif $_cc -V
2>&1 |
grep -q Portland
; then
3126 _ident
="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3127 opt_common
='-alias=ansi -Mdse -Mlre -Mpre'
3128 _cflags_speed
="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3129 _cflags_size
="-O2 -Munroll=c:1 $opt_common"
3131 _flags_filter
=pgi_flags
3132 elif $_cc 2>&1 |
grep -q
'Microsoft.*ARM.*Assembler'; then
3134 _ident
=$
($_cc |
head -n1
)
3135 # 4509: "This form of conditional instruction is deprecated"
3136 _flags
="-nologo -ignore 4509"
3137 _flags_filter
=armasm_flags
3138 elif $_cc -nologo-
2>&1 |
grep -q Microsoft
; then
3140 _ident
=$
($_cc 2>&1 |
head -n1
)
3141 _DEPCMD
='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3142 _DEPFLAGS
='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3145 if $_cc -nologo-
2>&1 |
grep -q Linker
; then
3152 _flags_filter
=msvc_flags
3154 _ld_path
='-libpath:'
3156 _cflags
='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_WARNINGS'
3157 elif $_cc 2>&1 |
grep -q Intel
; then
3159 _ident
=$
($_cc 2>&1 |
head -n1
)
3160 _depflags
='-QMMD -QMF$(@:.o=.d) -QMT$@'
3161 # Not only is O3 broken on 13.x+ but it is slower on all previous
3162 # versions (tested) as well.
3164 _cflags_size
="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3165 if $_cc 2>&1 |
grep -q Linker
; then
3172 _flags_filter
=icl_flags
3174 _ld_path
='-libpath:'
3175 # -Qdiag-error to make icl error when seeing certain unknown arguments
3176 _flags
='-nologo -Qdiag-error:4044,10157'
3177 # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
3178 # with MSVC which enables it by default.
3179 _cflags
='-D_USE_MATH_DEFINES -Qms0 -Qvec- -Qsimd- -GS'
3180 elif $_cc --version
2>/dev
/null |
grep -q ^cparser
; then
3182 _ident
=$
($_cc --version |
head -n1
)
3186 _flags_filter
=cparser_flags
3189 eval ${pfx}_type
=\
$_type
3190 eval ${pfx}_ident
=\
$_ident
3194 eval ${1}_C
=\
${_cc_c-\${${1}_C
}}
3195 eval ${1}_E
=\
${_cc_e-\${${1}_E
}}
3196 eval ${1}_O
=\
${_cc_o-\${${1}_O
}}
3198 if [ -n
"$_depflags" ]; then
3199 eval ${1}_DEPFLAGS
=\
$_depflags
3201 eval ${1}DEP
=\
${_DEPCMD:-\$DEPCMD}
3202 eval ${1}DEP_FLAGS
=\
${_DEPFLAGS:-\$DEPFLAGS}
3203 eval DEP
${1}FLAGS
=\
$_flags
3208 cflags_filter
=$_flags_filter
3209 cflags_speed
=$_cflags_speed
3210 cflags_size
=$_cflags_size
3211 cflags_noopt
=$_cflags_noopt
3212 add_cflags
$_flags $_cflags
3213 cc_ldflags
=$_ldflags
3216 probe_cc hostcc
"$host_cc"
3217 host_cflags_filter
=$_flags_filter
3218 add_host_cflags
$_flags $_cflags
3221 test -n
"$cc_type" && enable $cc_type ||
3222 warn
"Unknown C compiler $cc, unable to select optimal CFLAGS"
3224 : ${as_default:=$cc}
3225 : ${objcc_default:=$cc}
3226 : ${dep_cc_default:=$cc}
3227 : ${ld_default:=$cc}
3228 : ${host_ld_default:=$host_cc}
3229 set_default
ar as objcc dep_cc ld host_ld
3232 asflags_filter
=$_flags_filter
3233 add_asflags
$_flags $_cflags
3236 probe_cc objcc
"$objcc"
3237 objcflags_filter
=$_flags_filter
3238 add_objcflags
$_flags $_cflags
3242 ldflags_filter
=$_flags_filter
3243 add_ldflags
$_flags $_ldflags
3244 test "$cc_type" != "$ld_type" && add_ldflags
$cc_ldflags
3246 LD_LIB
=${_ld_lib-$LD_LIB}
3247 LD_PATH
=${_ld_path-$LD_PATH}
3249 probe_cc hostld
"$host_ld"
3250 host_ldflags_filter
=$_flags_filter
3251 add_host_ldflags
$_flags $_ldflags
3252 HOSTLD_O
=${_ld_o-$HOSTLD_O}
3254 if [ -z
"$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3255 probe_cc depcc
"$dep_cc"
3256 CCDEP
=${_DEPCMD:-$DEPCMD}
3257 CCDEP_FLAGS
=${_DEPFLAGS:=$DEPFLAGS}
3261 if $ar 2>&1 |
grep -q Microsoft
; then
3264 elif $ar 2>&1 |
grep -q
'Texas Instruments'; then
3267 elif $ar 2>&1 |
grep -q
'Usage: ar.*-X.*any'; then
3268 arflags
='-Xany -r -c'
3275 add_cflags
$extra_cflags
3276 add_objcflags
$extra_objcflags
3277 add_asflags
$extra_cflags
3279 if test -n
"$sysroot"; then
3282 add_cppflags
--sysroot
="$sysroot"
3283 add_ldflags
--sysroot
="$sysroot"
3286 add_cppflags
-I
"$sysinclude"
3287 add_ldflags
--sysroot
="$sysroot"
3292 if test "$cpu" = host; then
3293 enabled cross_compile
&&
3294 die
"--cpu=host makes no sense when cross-compiling."
3299 $cc $1=native
-v
-c
-o
$TMPO $TMPC >$TMPE 2>&1 ||
return
3301 s/.*$1=\\([^ ]*\\).*/\\1/
3306 cpu
=$
(check_native
-march || check_native
-mcpu
)
3310 test "${cpu:-host}" = host &&
3311 die
"--cpu=host not supported with compiler $cc"
3314 # Deal with common $arch aliases
3328 "Power Macintosh"|ppc
*|powerpc
*)
3343 i
[3-6]86|i86pc|BePC|x86pc|x86_64|amd64
)
3348 is_in
$arch $ARCH_LIST || warn
"unknown architecture $arch"
3351 # Add processor-specific flags
3352 if enabled aarch64
; then
3356 cpuflags
="-march=$cpu"
3359 cpuflags
="-mcpu=$cpu"
3363 elif enabled alpha
; then
3365 cpuflags
="-mcpu=$cpu"
3367 elif enabled arm
; then
3370 check_cpp_condition stddef.h \
3371 "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3376 if check_arm_arch
4; then echo armv4
;
3377 elif check_arm_arch
4T
; then echo armv4t
;
3378 elif check_arm_arch
5; then echo armv5
;
3379 elif check_arm_arch
5E
; then echo armv5e
;
3380 elif check_arm_arch
5T
; then echo armv5t
;
3381 elif check_arm_arch
5TE
; then echo armv5te
;
3382 elif check_arm_arch
5TEJ
; then echo armv5te
;
3383 elif check_arm_arch
6; then echo armv6
;
3384 elif check_arm_arch
6J
; then echo armv6j
;
3385 elif check_arm_arch
6K
; then echo armv6k
;
3386 elif check_arm_arch
6Z
; then echo armv6z
;
3387 elif check_arm_arch
6ZK
; then echo armv6zk
;
3388 elif check_arm_arch
6T2
; then echo armv6t2
;
3389 elif check_arm_arch
7; then echo armv7
;
3390 elif check_arm_arch
7A
7_A
; then echo armv7-a
;
3391 elif check_arm_arch
7S
; then echo armv7-a
;
3392 elif check_arm_arch
7R
7_R
; then echo armv7-r
;
3393 elif check_arm_arch
7M
7_M
; then echo armv7-m
;
3394 elif check_arm_arch
7EM
7E_M
; then echo armv7-m
;
3395 elif check_arm_arch
8A
8_A
; then echo armv8-a
;
3399 [ "$cpu" = generic
] && cpu
=$
(probe_arm_arch
)
3403 cpuflags
="-march=$cpu"
3404 subarch
=$
(echo $cpu |
sed 's/[^a-z0-9]//g')
3407 cpuflags
="-mcpu=$cpu"
3409 cortex-a
*) subarch
=armv7a
;;
3410 cortex-r
*) subarch
=armv7r
;;
3411 cortex-m
*) enable thumb
; subarch
=armv7m
;;
3412 arm11
*) subarch
=armv6
;;
3413 arm
[79]*e
*|arm9
[24]6*|arm96
*|arm102
[26]) subarch
=armv5te
;;
3414 armv4
*|arm7
*|arm9
[24]*) subarch
=armv4
;;
3415 *) subarch
=$
(probe_arm_arch
) ;;
3421 armv5t
*) enable fast_clz
;;
3422 armv
[6-8]*) enable fast_clz fast_unaligned
;;
3425 elif enabled avr32
; then
3430 cpuflags
="-mpart=$cpu"
3434 cpuflags
="-march=$cpu"
3438 cpuflags
="-mcpu=$cpu"
3442 cpuflags
="-march=$cpu"
3446 elif enabled bfin
; then
3448 cpuflags
="-mcpu=$cpu"
3450 elif enabled mips
; then
3452 cpuflags
="-march=$cpu"
3454 elif enabled ppc
; then
3458 case $
(tolower
$cpu) in
3459 601|ppc601|powerpc601
)
3460 cpuflags
="-mcpu=601"
3463 603*|ppc603
*|powerpc603
*)
3464 cpuflags
="-mcpu=603"
3467 604*|ppc604
*|powerpc604
*)
3468 cpuflags
="-mcpu=604"
3471 g3|
75*|ppc75
*|powerpc75
*)
3472 cpuflags
="-mcpu=750"
3475 g4|
745*|ppc745
*|powerpc745
*)
3476 cpuflags
="-mcpu=7450"
3479 74*|ppc74
*|powerpc74
*)
3480 cpuflags
="-mcpu=7400"
3483 g5|
970|ppc970|powerpc970
)
3484 cpuflags
="-mcpu=970"
3488 cpuflags
="-mcpu=$cpu"
3492 cpuflags
="-mcpu=$cpu"
3496 cpuflags
="-mcpu=cell"
3501 cpuflags
="-mcpu=e500mc"
3505 cpuflags
="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3510 cpuflags
="-mcpu=8540 -mhard-float"
3516 elif enabled sparc
; then
3519 cypress|f93
[04]|tsc701|sparcl
*|supersparc|hypersparc|niagara|v
[789])
3520 cpuflags
="-mcpu=$cpu"
3522 ultrasparc
*|niagara
[234])
3523 cpuflags
="-mcpu=$cpu"
3527 elif enabled x86
; then
3531 cpuflags
="-march=$cpu"
3535 # targets that do NOT support nopl and conditional mov (cmov)
3536 pentium-mmx|k6|k6-
[23]|winchip-c6|winchip2|c3
)
3537 cpuflags
="-march=$cpu"
3540 # targets that do support nopl and conditional mov (cmov)
3541 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
*)
3542 cpuflags
="-march=$cpu"
3546 # targets that do support conditional mov but on which it's slow
3547 pentium4|pentium4m|prescott|nocona
)
3548 cpuflags
="-march=$cpu"
3556 if [ "$cpu" != generic
]; then
3557 add_cflags
$cpuflags
3558 add_asflags
$cpuflags
3559 test "$cc_type" = "$ld_type" && add_ldflags
$cpuflags
3562 # compiler sanity check
3564 int main(void){ return 0; }
3566 if test "$?" != 0; then
3567 echo "$cc is unable to create an executable file."
3568 if test -z
"$cross_prefix" && ! enabled cross_compile
; then
3569 echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3570 echo "Only do this if you know what cross compiling means."
3572 die
"C compiler test failed."
3575 add_cppflags
-D_ISOC99_SOURCE
3576 check_cflags
-std
=c99
3577 check_cc
-D_FILE_OFFSET_BITS
=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3580 check_cc
-D_LARGEFILE_SOURCE
<<EOF && add_cppflags -D_LARGEFILE_SOURCE
3584 add_host_cppflags
-D_ISOC99_SOURCE
3585 check_host_cflags
-std
=c99
3586 check_host_cflags
-Wall
3587 check_host_cflags
-O3
3593 check_code cc
"" "int test[2*($expr) - 1]" &&
3594 subarch
=$arch64 || subarch
=$arch32
3602 check_64bit mips mips64
'_MIPS_SIM > 1'
3606 check_64bit parisc parisc64
'sizeof(void *) > 4'
3610 check_64bit ppc ppc64
'sizeof(void *) > 4'
3614 check_64bit s390 s390x
'sizeof(void *) > 4'
3618 check_64bit sparc sparc64
'sizeof(void *) > 4'
3622 check_64bit x86_32 x86_64
'sizeof(void *) > 4'
3623 if test "$subarch" = "x86_64"; then
3630 enabled spic
&& enable_weak pic
3636 add_cppflags
'-I\$(SRC_PATH)/compat/aix'
3637 enabled shared
&& add_ldflags
-Wl
,-brtl
3641 enable section_data_rel_ro
3642 SLIB_INSTALL_NAME
='$(SLIBNAME)'
3644 SHFLAGS
='-shared -Wl,-soname,$(SLIBNAME)'
3647 prefix_default
="/boot/common"
3648 network_extralibs
="-lnetwork"
3652 SHFLAGS
='-shared -Wl,-h,$$(@F)'
3653 enabled x86
&& SHFLAGS
="-mimpure-text $SHFLAGS"
3654 network_extralibs
="-lsocket -lnsl"
3655 # When using suncc to build, the Solaris linker will mark
3656 # an executable with each instruction set encountered by
3657 # the Solaris assembler. As our libraries contain their own
3658 # guards for processor-specific code, instead suppress
3659 # generation of the HWCAPS ELF section on Solaris x86 only.
3660 enabled_all suncc x86
&&
3661 echo "hwcap_1 = OVERRIDE;" > mapfile
&&
3662 add_ldflags
-Wl
,-M
,mapfile
3663 nm_default
='nm -P -g'
3664 SLIB_CREATE_DEF_CMD
='$(Q)perl $(SRC_PATH)/compat/solaris/make_sunver.pl $$(filter %.ver,$$^) $(OBJS) | grep -v @ > $(SUBDIR)lib$(NAME).ver-sol2'
3668 oss_indev_extralibs
="-lossaudio"
3669 oss_outdev_extralibs
="-lossaudio"
3674 SLIB_INSTALL_NAME
='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
3676 oss_indev_extralibs
="-lossaudio"
3677 oss_outdev_extralibs
="-lossaudio"
3685 add_extralibs
-lpoll
-lgnugetopt
3688 enabled ppc
&& add_asflags
-force_cpusubtype_ALL
3689 SHFLAGS
='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
3690 enabled x86_32
&& append SHFLAGS
-Wl
,-read_only_relocs
,suppress
3691 add_ldflags
-Wl
,-dynamic
,-search_paths_first
3693 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
3694 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
3696 enabled x86_64
&& objformat
="macho64"
3697 enabled_any pic shared ||
3698 { check_cflags
-mdynamic-no-pic
&& add_asflags
-mdynamic-no-pic
; }
3701 die
"Native MSYS builds are discouraged, please use the MINGW environment.";
3704 if test $target_os = "mingw32ce"; then
3710 if enabled x86_64
; then
3711 LIBTARGET
="i386:x86-64"
3712 elif enabled arm
; then
3715 check_ldflags
-Wl
,--nxcompat
3716 check_ldflags
-Wl
,--dynamicbase
3717 shlibdir_default
="$bindir_default"
3720 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3721 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3722 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)'
3723 SLIB_INSTALL_NAME
='$(SLIBNAME_WITH_MAJOR)'
3725 SLIB_INSTALL_EXTRA_SHLIB
='$(SLIBNAME:$(SLIBSUF)=.lib)'
3726 SLIB_INSTALL_EXTRA_LIB
='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3727 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'
3729 dlltool
="${cross_prefix}dlltool"
3735 if enabled shared
; then
3736 # Link to the import library instead of the normal static library
3739 # Cannot build both shared and static libs with MSVC or icl.
3742 shlibdir_default
="$bindir_default"
3745 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3746 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3747 SLIB_CREATE_DEF_CMD
='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
3748 SLIB_INSTALL_NAME
='$(SLIBNAME_WITH_MAJOR)'
3750 SLIB_INSTALL_EXTRA_SHLIB
='$(SLIBNAME:$(SLIBSUF)=.lib)'
3751 SLIB_INSTALL_EXTRA_LIB
='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
3752 SHFLAGS
='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
3759 shlibdir_default
="$bindir_default"
3762 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
3763 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
3764 SLIB_INSTALL_NAME
='$(SLIBNAME_WITH_MAJOR)'
3766 SLIB_INSTALL_EXTRA_LIB
='lib$(FULLNAME).dll.a'
3767 SHFLAGS
='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
3771 *-dos|freedos|opendos
)
3772 network_extralibs
="-lsocket"
3775 add_cppflags
-U__STRICT_ANSI__
3779 enable section_data_rel_ro
3783 ranlib
="echo ignoring ranlib"
3788 add_cppflags
-D_GNU_SOURCE
3789 add_ldflags
-Zomf
-Zbin-files
-Zargs-wild
-Zmap
3790 SHFLAGS
='$(SUBDIR)$(NAME).def -Zdll -Zomf'
3794 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
3795 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
3796 SLIB_CREATE_DEF_CMD
='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
3797 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
3798 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
3799 echo EXPORTS >> $(SUBDIR)$(NAME).def; \
3800 emxexp $(OBJS) >> $(SUBDIR)$(NAME).def'
3801 SLIB_EXTRA_CMD
='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
3802 emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
3803 SLIB_INSTALL_EXTRA_LIB
='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
3807 add_cppflags
-D_BSD_SOURCE
3812 add_cppflags
-D_QNX_SOURCE
3813 network_extralibs
="-lsocket"
3818 add_cflags
--include
=$sysinclude/gcce
/gcce.h
-fvisibility
=default
3819 add_cppflags
-D__GCCE__
-D__SYMBIAN32__
-DSYMBIAN_OE_POSIX_SIGNALS
3820 add_ldflags
-Wl
,--target1-abs
,--no-undefined \
3821 -Wl
,-Ttext
,0x80000,-Tdata
,0x1000000 -shared \
3822 -Wl
,--entry
=_E32Startup
-Wl
,-u
,_E32Startup
3823 add_extralibs
-l
:eexe.lib
-l
:usrt2_2.lib
-l
:dfpaeabi.dso \
3824 -l
:drtaeabi.dso
-l
:scppnwdl.dso
-lsupc
++ -lgcc \
3825 -l
:libc.dso
-l
:libm.dso
-l
:euser.dso
-l
:libcrt0.lib
3828 add_cppflags
-D_OSF_SOURCE
-D_POSIX_PII
-D_REENTRANT
3833 add_cppflags
-D_C99_SNPRINTF_EXTENSION \
3834 -D_REENTRANT_SOURCE \
3835 -D_RESEARCH_SOURCE \
3838 add_compat strtod.o strtod
=avpriv_strtod
3839 network_extralibs
='-lbsd'
3840 exeobjs
=compat
/plan9
/main.o
3846 die
"Unknown OS '$target_os'."
3850 # determine libc flavour
3855 # uclibc defines __GLIBC__, so it needs to be checked before glibc.
3856 if check_
${pfx}cpp_condition features.h
"defined __UCLIBC__"; then
3857 eval ${pfx}libc_type
=uclibc
3858 add_
${pfx}cppflags
-D_POSIX_C_SOURCE
=200112 -D_XOPEN_SOURCE
=600
3859 elif check_
${pfx}cpp_condition features.h
"defined __GLIBC__"; then
3860 eval ${pfx}libc_type
=glibc
3861 add_
${pfx}cppflags
-D_POSIX_C_SOURCE
=200112 -D_XOPEN_SOURCE
=600
3862 # MinGW headers can be installed on Cygwin, so check for newlib first.
3863 elif check_
${pfx}cpp_condition newlib.h
"defined _NEWLIB_VERSION"; then
3864 eval ${pfx}libc_type
=newlib
3865 add_
${pfx}cppflags
-U__STRICT_ANSI__
3866 # MinGW64 is backwards compatible with MinGW32, so check for it first.
3867 elif check_
${pfx}cpp_condition _mingw.h
"defined __MINGW64_VERSION_MAJOR"; then
3868 eval ${pfx}libc_type
=mingw64
3869 add_
${pfx}cppflags
-U__STRICT_ANSI__
-D__USE_MINGW_ANSI_STDIO
=1
3870 eval test \$
${pfx_no_}cc_type
= "gcc" &&
3871 add_
${pfx}cppflags
-D__printf__
=__gnu_printf__
3872 elif check_
${pfx}cpp_condition _mingw.h
"defined __MINGW_VERSION" ||
3873 check_
${pfx}cpp_condition _mingw.h
"defined __MINGW32_VERSION"; then
3874 eval ${pfx}libc_type
=mingw32
3875 check_
${pfx}cpp_condition _mingw.h
"__MINGW32_MAJOR_VERSION > 3 || \
3876 (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
3877 die
"ERROR: MinGW32 runtime version must be >= 3.15."
3878 add_
${pfx}cppflags
-U__STRICT_ANSI__
-D__USE_MINGW_ANSI_STDIO
=1
3879 eval test \$
${pfx_no_}cc_type
= "gcc" &&
3880 add_
${pfx}cppflags
-D__printf__
=__gnu_printf__
3881 elif check_
${pfx}cpp_condition crtversion.h
"defined _VC_CRT_MAJOR_VERSION"; then
3882 eval ${pfx}libc_type
=msvcrt
3883 if check_
${pfx}cpp_condition crtversion.h
"_VC_CRT_MAJOR_VERSION < 14"; then
3884 if [ "$pfx" = host_
]; then
3885 add_host_cppflags
-Dsnprintf
=_snprintf
3887 add_compat strtod.o strtod
=avpriv_strtod
3888 add_compat msvcrt
/snprintf.o snprintf
=avpriv_snprintf \
3889 _snprintf
=avpriv_snprintf \
3890 vsnprintf
=avpriv_vsnprintf
3893 # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
3894 # 0x601 by default unless something else is set by the user.
3895 # This can easily lead to us detecting functions only present
3896 # in such new versions and producing binaries requiring windows 7.0.
3897 # Therefore explicitly set the default to XP unless the user has
3898 # set something else on the command line.
3899 # Don't do this if WINAPI_FAMILY is set and is set to a non-desktop
3900 # family. For these cases, configure is free to use any functions
3901 # found in the SDK headers by default. (Alternatively, we could force
3902 # _WIN32_WINNT to 0x0602 in that case.)
3903 check_
${pfx}cpp_condition stdlib.h
"defined(_WIN32_WINNT)" ||
3904 { check_
${pfx}cpp
<<EOF && add_${pfx}cppflags -D_WIN32_WINNT=0x0502; }
3905 #ifdef WINAPI_FAMILY
3906 #include <winapifamily.h>
3907 #if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
3912 elif check_
${pfx}cpp_condition stddef.h
"defined __KLIBC__"; then
3913 eval ${pfx}libc_type
=klibc
3914 elif check_
${pfx}cpp_condition sys
/cdefs.h
"defined __BIONIC__"; then
3915 eval ${pfx}libc_type
=bionic
3916 elif check_
${pfx}cpp_condition sys
/brand.h
"defined LABELED_BRAND_NAME"; then
3917 eval ${pfx}libc_type
=solaris
3918 add_
${pfx}cppflags
-D__EXTENSIONS__
-D_XOPEN_SOURCE
=600
3920 eval ${pfx}libc_type
=default
3921 add_
${pfx}cppflags
-D_DEFAULT_SOURCE
3926 test -n
"$libc_type" && enable libc_
$libc_type
3928 test -n
"$host_libc_type" && enable host_libc_
$host_libc_type
3932 add_compat strtod.o strtod
=avpriv_strtod
3936 # hacks for compiler/libc/os combinations
3938 if enabled_all tms470 libc_glibc
; then
3939 CPPFLAGS
="-I${source_path}/compat/tms470 ${CPPFLAGS}"
3940 add_cppflags
-D__USER_LABEL_PREFIX__
=
3941 add_cppflags
-D__builtin_memset
=memset
3942 add_cppflags
-D__gnuc_va_list
=va_list
-D_VA_LIST_DEFINED
3943 add_cflags
-pds
=48 # incompatible redefinition of macro
3946 if enabled_all ccc libc_glibc
; then
3947 add_ldflags
-Wl
,-z
,now
# calls to libots crash without this
3950 check_compile_assert flt_lim
"float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
3951 add_cppflags
'-I\$(SRC_PATH)/compat/float'
3954 echo "$*" |
sed 's/%/%25/g;s/:/%3a/g'
3957 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
3959 check_cpp_condition stdlib.h
"defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
3961 set_default
$PATHS_LIST
3964 # we need to build at least one lib type
3965 if ! enabled_any static shared
; then
3967 At least one library type must be built.
3968 Specify --enable-static to build the static libraries or --enable-shared to
3969 build the shared libraries as well. To only build the shared libraries specify
3970 --disable-static in addition to --enable-shared.
3975 die_license_disabled
() {
3976 enabled
$1 ||
{ enabled
$2 && die
"$2 is $1 and --enable-$1 is not specified."; }
3979 die_license_disabled gpl libcdio
3980 die_license_disabled gpl libx264
3981 die_license_disabled gpl libx265
3982 die_license_disabled gpl libxavs
3983 die_license_disabled gpl libxvid
3984 die_license_disabled gpl x11grab
3986 die_license_disabled nonfree libfaac
3987 die_license_disabled nonfree libfdk_aac
3988 die_license_disabled nonfree nvenc
3989 die_license_disabled nonfree openssl
3991 die_license_disabled version3 libopencore_amrnb
3992 die_license_disabled version3 libopencore_amrwb
3993 die_license_disabled version3 libvo_aacenc
3994 die_license_disabled version3 libvo_amrwbenc
3996 enabled version3
&& { enabled gpl
&& enable gplv3 ||
enable lgplv3
; }
3998 disabled optimizations || check_cflags
-fomit-frame-pointer
4001 disabled pic
&& return
4004 case "$target_os" in
4014 enabled pic
&& enable_weak_pic
4016 check_cc
<<EOF || die "Symbol mangling check failed."
4019 sym
=$
($nm $TMPO |
awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
4020 extern_prefix
=${sym%%ff_extern*}
4022 check_cc
<<EOF && enable_weak inline_asm
4023 void foo(void) { __asm__ volatile ("" ::); }
4027 for restrict_keyword
in restrict __restrict__ __restrict
; do
4028 check_cc
<<EOF && _restrict=$restrict_keyword && break
4029 void foo(char * $restrict_keyword p);
4033 check_cc
<<EOF && enable pragma_deprecated
4034 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
4037 check_cc
<<EOF && enable attribute_packed
4038 struct { int x; } __attribute__((packed)) x;
4041 check_cc
<<EOF && enable attribute_may_alias
4042 union { int x; } __attribute__((may_alias)) x;
4045 check_cc
<<EOF || die "endian test failed"
4046 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
4048 od -t x1
$TMPO |
grep -q
'42 *49 *47 *45' && enable bigendian
4051 log
"check_gas using '$as' as AS"
4052 # :vararg is used on aarch64, arm and ppc altivec
4053 check_as
<<EOF || return 1
4054 .macro m n, y:vararg=0
4059 # .altmacro is only used in arm asm
4060 ! enabled arm || check_as
<<EOF || return 1
4067 if enabled_any arm aarch64 || enabled_all ppc altivec
&& enabled asm
; then
4069 enabled_any arm aarch64
&& nogas
=die
4070 enabled_all ppc altivec
&& nogas
=warn
4074 arm
*) gaspp_as_type
=armasm
; as_noop
=-h
;;
4075 gcc
) gaspp_as_type
=gas
;;
4076 *) gaspp_as_type
=$as_type ;;
4079 [ $target_os = "darwin" ] && gaspp_as_type
="apple-$gaspp_as_type"
4081 check_cmd gas-preprocessor.pl
-arch
$arch -as-type
$gaspp_as_type -- $as $as_noop &&
4082 gas
="gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- $as"
4084 if ! check_gas
; then
4087 $nogas "GNU assembler not found, install/update gas-preprocessor"
4090 check_as
<<EOF && enable as_func
4096 check_inline_asm inline_asm_labels
'"1:\n"'
4098 if enabled aarch64
; then
4099 enabled armv8
&& check_insn armv8
'prfm pldl1strm, [x0]'
4100 # internal assembler in clang 3.3 does not support this instruction
4101 enabled neon
&& check_insn neon
'ext v0.8B, v0.8B, v1.8B, #1'
4102 enabled vfp
&& check_insn vfp
'fmadd d0, d0, d1, d2'
4104 map
'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
4106 elif enabled alpha
; then
4110 elif enabled arm
; then
4112 enabled msvc
&& check_cpp_condition stddef.h
"defined _M_ARMT" && enable thumb
4113 check_cpp_condition stddef.h
"defined __thumb__" && enable_weak thumb
4114 enabled thumb
&& check_cflags
-mthumb || check_cflags
-marm
4116 if check_cpp_condition stddef.h
"defined __ARM_PCS_VFP"; then
4118 elif check_cpp_condition stddef.h
"defined _M_ARM_FP && _M_ARM_FP >= 30"; then
4120 elif ! check_cpp_condition stddef.h
"defined __ARM_PCS || defined __SOFTFP__" && [ $target_os != darwin
]; then
4121 case "${cross_prefix:-$cc}" in
4122 *hardfloat
*) enable vfp_args
; fpabi
=vfp
;;
4123 *) check_ld
<<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4124 __asm__ (".eabi_attribute 28, 1");
4125 int main(void) { return 0; }
4128 warn
"Compiler does not indicate floating-point ABI, guessing $fpabi."
4131 enabled armv5te
&& check_insn armv5te
'qadd r0, r0, r0'
4132 enabled armv6
&& check_insn armv6
'sadd16 r0, r0, r0'
4133 enabled armv6t2
&& check_insn armv6t2
'movt r0, #0'
4134 enabled neon
&& check_insn neon
'vadd.i16 q0, q0, q0'
4135 enabled vfp
&& check_insn vfp
'fadds s0, s0, s0'
4136 enabled vfpv3
&& check_insn vfpv3
'vmov.f32 s0, #1.0'
4138 [ $target_os = linux
] ||
[ $target_os = android
] ||
4139 map
'enabled_any ${v}_external ${v}_inline || disable $v' \
4142 check_inline_asm asm_mod_q
'"add r0, %Q0, %R0" :: "r"((long long)0)'
4144 check_as
<<EOF && enable as_dn_directive
4149 # llvm's integrated assembler supports .object_arch from llvm 3.5
4150 [ "$objformat" = elf
] && check_as
<<EOF && enable as_object_arch
4154 [ $target_os != win32
] && enabled_all armv6t2 shared
!pic
&& enable_weak_pic
4156 elif enabled mips
; then
4158 check_inline_asm loongson
'"dmult.g $1, $2, $3"'
4160 # make sure that only an instruction set is enabled
4161 disable mips64r6 mips32r6 mips64r2 mips32r2 mips64r1 mips32r1
4163 if enabled mips64
; then
4164 check_inline_asm mips64r6
'"dlsa $0, $0, $0, 1"' ||
4165 check_inline_asm mips64r2
'"dext $0, $0, 0, 1"' ||
4166 check_inline_asm mips64r1
'"daddi $0, $0, 0"'
4168 check_inline_asm mips32r6
'"aui $0, $0, 0"' ||
4169 check_inline_asm mips32r2
'"ext $0, $0, 0, 1"' ||
4170 check_inline_asm mips32r1
'"addi $0, $0, 0"'
4173 elif enabled parisc
; then
4175 if enabled gcc
; then
4176 case $
($cc -dumpversion
) in
4177 4.
[3-8].
*) check_cflags
-fno-optimize-sibling-calls
;;
4181 elif enabled ppc
; then
4183 enable local_aligned_8 local_aligned_16
4185 check_inline_asm dcbzl
'"dcbzl 0, %0" :: "r"(0)'
4186 check_inline_asm ibm_asm
'"add 0, 0, 0"'
4187 check_inline_asm ppc4xx
'"maclhw r10, r11, r12"'
4188 check_inline_asm xform_asm
'"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4190 # AltiVec flags: The FSF version of GCC differs from the Apple version
4191 if enabled altivec
; then
4192 check_cflags
-maltivec
-mabi
=altivec
&&
4193 { check_header altivec.h
&& inc_altivec_h
="#include <altivec.h>" ; } ||
4194 check_cflags
-faltivec
4196 # check if our compiler supports Motorola AltiVec C API
4197 check_cc
<<EOF || disable altivec
4200 vector signed int v1 = (vector signed int) { 0 };
4201 vector signed int v2 = (vector signed int) { 1 };
4202 v1 = vec_add(v1, v2);
4207 enabled altivec || warn
"Altivec disabled, possibly missing --cpu flag"
4210 if enabled vsx
; then
4211 check_cflags
-mvsx
&&
4212 check_builtin vec_vsx_ld
"altivec.h" "__builtin_vec_vsx_ld" || disable vsx
4215 if enabled power8
; then
4216 check_cpp_condition
"altivec.h" "defined(_ARCH_PWR8)" || disable power8
4219 elif enabled x86
; then
4221 check_builtin rdtsc intrin.h
"__rdtsc()"
4222 check_builtin mm_empty mmintrin.h
"_mm_empty()"
4224 enable local_aligned_8 local_aligned_16
4226 # check whether EBP is available on x86
4227 # As 'i' is stored on the stack, this program will crash
4228 # if the base pointer is used to access it because the
4229 # base pointer is cleared in the inline assembly code.
4230 check_exec_crash
<<EOF && enable ebp_available
4232 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
4236 # check whether EBX is available on x86
4237 check_inline_asm ebx_available
'""::"b"(0)' &&
4238 check_inline_asm ebx_available
'"":::"%ebx"'
4240 # check whether xmm clobbers are supported
4241 check_inline_asm xmm_clobbers
'"":::"%xmm0"'
4243 # check whether binutils is new enough to compile SSSE3/MMXEXT
4244 enabled ssse3
&& check_inline_asm ssse3_inline
'"pabsw %xmm0, %xmm0"'
4245 enabled mmxext
&& check_inline_asm mmxext_inline
'"pmaxub %mm0, %mm1"'
4247 if ! disabled_any asm mmx yasm
; then
4248 if check_cmd
$yasmexe --version
; then
4249 enabled x86_64
&& yasm_extra
="-m amd64"
4250 yasm_debug
="-g dwarf2"
4251 elif check_cmd nasm
-v
; then
4253 yasm_debug
="-g -F dwarf"
4254 enabled x86_64
&& test "$objformat" = elf
&& objformat
=elf64
4257 YASMFLAGS
="-f $objformat $yasm_extra"
4258 enabled pic
&& append YASMFLAGS
"-DPIC"
4259 test -n
"$extern_prefix" && append YASMFLAGS
"-DPREFIX"
4260 case "$objformat" in
4261 elf
*) enabled debug
&& append YASMFLAGS
$yasm_debug ;;
4264 check_yasm
"movbe ecx, [5]" && enable yasm ||
4265 die
"yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
4266 check_yasm
"vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
4267 check_yasm
"vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external
4268 check_yasm
"vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4269 check_yasm
"CPU amdnop" || disable cpunop
4273 athlon
*|opteron
*|k8
*|pentium|pentium-mmx|prescott|nocona|atom|geode
)
4280 check_code cc arm_neon.h
"int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
4282 check_ldflags
-Wl
,--as-needed
4284 if check_func dlopen
; then
4286 elif check_func dlopen
-ldl
; then
4290 if ! disabled network
; then
4291 check_func getaddrinfo
$network_extralibs
4292 check_func inet_aton
$network_extralibs
4294 check_type netdb.h
"struct addrinfo"
4295 check_type netinet
/in.h
"struct group_source_req" -D_BSD_SOURCE
4296 check_type netinet
/in.h
"struct ip_mreq_source" -D_BSD_SOURCE
4297 check_type netinet
/in.h
"struct ipv6_mreq" -D_DARWIN_C_SOURCE
4298 check_type poll.h
"struct pollfd"
4299 check_type netinet
/sctp.h
"struct sctp_event_subscribe"
4300 check_struct
"sys/types.h sys/socket.h" "struct sockaddr" sa_len
4301 check_type netinet
/in.h
"struct sockaddr_in6"
4302 check_type
"sys/types.h sys/socket.h" "struct sockaddr_storage"
4303 check_type
"sys/types.h sys/socket.h" socklen_t
4305 # Prefer arpa/inet.h over winsock2
4306 if check_header arpa
/inet.h
; then
4307 check_func closesocket
4308 elif check_header winsock2.h
; then
4309 check_func_headers winsock2.h closesocket
-lws2
&&
4310 network_extralibs
="-lws2" ||
4311 { check_func_headers winsock2.h closesocket
-lws2_32
&&
4312 network_extralibs
="-lws2_32"; } || disable winsock2_h network
4313 check_func_headers ws2tcpip.h getaddrinfo
$network_extralibs
4315 check_type ws2tcpip.h socklen_t
4316 check_type ws2tcpip.h
"struct addrinfo"
4317 check_type ws2tcpip.h
"struct group_source_req"
4318 check_type ws2tcpip.h
"struct ip_mreq_source"
4319 check_type ws2tcpip.h
"struct ipv6_mreq"
4320 check_type winsock2.h
"struct pollfd"
4321 check_struct winsock2.h
"struct sockaddr" sa_len
4322 check_type ws2tcpip.h
"struct sockaddr_in6"
4323 check_type ws2tcpip.h
"struct sockaddr_storage"
4329 check_builtin atomic_cas_ptr atomic.h
"void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4330 check_builtin machine_rw_barrier mbarrier.h
"__machine_rw_barrier()"
4331 check_builtin MemoryBarrier windows.h
"MemoryBarrier()"
4332 check_builtin sync_val_compare_and_swap
"" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4334 case "$custom_allocator" in
4336 # jemalloc by default does not use a prefix
4337 require libjemalloc jemalloc
/jemalloc.h malloc
-ljemalloc
4340 require_pkg_config libtcmalloc gperftools
/tcmalloc.h tc_malloc
4345 check_func_headers malloc.h _aligned_malloc
&& enable aligned_malloc
4346 check_func
${malloc_prefix}memalign
&& enable memalign
4347 check_func
${malloc_prefix}posix_memalign
&& enable posix_memalign
4349 check_cpp_condition unistd.h
"defined(_POSIX_MONOTONIC_CLOCK)" &&
4350 check_func_headers
time.h clock_gettime ||
{ check_func_headers
time.h clock_gettime
-lrt
&& add_extralibs
-lrt
&& LIBRT
="-lrt"; }
4354 check_func gethrtime
4356 check_func getrusage
4357 check_func gettimeofday
4360 check_func localtime_r
4361 check_func mach_absolute_time
4365 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4366 check_func_headers
time.h nanosleep ||
{ check_func_headers
time.h nanosleep
-lrt
&& add_extralibs
-lrt
; }
4367 check_func sched_getaffinity
4368 check_func setrlimit
4369 check_func strerror_r
4374 check_func_headers io.h setmode
4375 check_func_headers stdlib.h getenv
4377 check_func_headers windows.h CoTaskMemFree
-lole32
4378 check_func_headers windows.h GetProcessAffinityMask
4379 check_func_headers windows.h GetProcessTimes
4380 check_func_headers windows.h GetSystemTimeAsFileTime
4381 check_func_headers windows.h LoadLibrary
4382 check_func_headers windows.h MapViewOfFile
4383 check_func_headers windows.h SetConsoleTextAttribute
4384 check_func_headers windows.h Sleep
4385 check_func_headers windows.h VirtualAlloc
4386 check_struct windows.h
"CONDITION_VARIABLE" Ptr
4388 check_header direct.h
4389 check_header dlfcn.h
4390 check_header d3d11.h
4392 check_header dxva2api.h
4394 check_header mach
/mach_time.h
4395 check_header malloc.h
4397 check_header sys
/mman.h
4398 check_header sys
/param.h
4399 check_header sys
/resource.h
4400 check_header sys
/select.h
4401 check_header sys
/time.h
4402 check_header sys
/un.h
4403 check_header unistd.h
4404 check_header valgrind
/valgrind.h
4405 check_header vdpau
/vdpau.h
4406 check_header vdpau
/vdpau_x11.h
4407 check_header VideoDecodeAcceleration
/VDADecoder.h
4408 check_header windows.h