]> granicus.if.org Git - libvpx/blob - configure
Merge "Remove AltiVec flag"
[libvpx] / configure
1 #!/bin/sh
2 ##
3 ##  configure
4 ##
5 ##  This script is the front-end to the build system. It provides a similar
6 ##  interface to standard configure scripts with some extra bits for dealing
7 ##  with toolchains that differ from the standard POSIX interface and
8 ##  for extracting subsets of the source tree. In theory, reusable parts
9 ##  of this script were intended to live in build/make/configure.sh,
10 ##  but in practice, the line is pretty blurry.
11 ##
12 ##  This build system is based in part on the FFmpeg configure script.
13 ##
14
15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
18
19 show_help(){
20     show_help_pre
21     cat << EOF
22 Advanced options:
23   ${toggle_libs}                  libraries
24   ${toggle_examples}              examples
25   ${toggle_docs}                  documentation
26   ${toggle_unit_tests}            unit tests
27   ${toggle_decode_perf_tests}     build decoder perf tests with unit tests
28   ${toggle_encode_perf_tests}     build encoder perf tests with unit tests
29   --cpu=CPU                       tune for the specified CPU (ARM: cortex-a8, X86: sse3)
30   --libc=PATH                     path to alternate libc
31   --size-limit=WxH                max size to allow in the decoder
32   --as={yasm|nasm|auto}           use specified assembler [auto, yasm preferred]
33   --sdk-path=PATH                 path to root of sdk (android builds only)
34   ${toggle_fast_unaligned}        don't use unaligned accesses, even when
35                                   supported by hardware [auto]
36   ${toggle_codec_srcs}            in/exclude codec library source code
37   ${toggle_debug_libs}            in/exclude debug version of libraries
38   ${toggle_static_msvcrt}         use static MSVCRT (VS builds only)
39   ${toggle_vp9_highbitdepth}      use VP9 high bit depth (10/12) profiles
40   ${toggle_vp8}                   VP8 codec support
41   ${toggle_vp9}                   VP9 codec support
42   ${toggle_internal_stats}        output of encoder internal stats for debug, if supported (encoders)
43   ${toggle_mem_tracker}           track memory usage
44   ${toggle_postproc}              postprocessing
45   ${toggle_vp9_postproc}          vp9 specific postprocessing
46   ${toggle_multithread}           multithreaded encoding and decoding
47   ${toggle_spatial_resampling}    spatial sampling (scaling) support
48   ${toggle_realtime_only}         enable this option while building for real-time encoding
49   ${toggle_onthefly_bitpacking}   enable on-the-fly bitpacking in real-time encoding
50   ${toggle_error_concealment}     enable this option to get a decoder which is able to conceal losses
51   ${toggle_coefficient_range_checking}
52                                   enable decoder to check if intermediate
53                                   transform coefficients are in valid range
54   ${toggle_runtime_cpu_detect}    runtime cpu detection
55   ${toggle_shared}                shared library support
56   ${toggle_static}                static library support
57   ${toggle_small}                 favor smaller size over speed
58   ${toggle_postproc_visualizer}   macro block / block level visualizers
59   ${toggle_multi_res_encoding}    enable multiple-resolution encoding
60   ${toggle_temporal_denoising}    enable temporal denoising and disable the spatial denoiser
61   ${toggle_vp9_temporal_denoising}
62                                   enable vp9 temporal denoising
63   ${toggle_webm_io}               enable input from and output to WebM container
64   ${toggle_libyuv}                enable libyuv
65
66 Codecs:
67   Codecs can be selectively enabled or disabled individually, or by family:
68       --disable-<codec>
69   is equivalent to:
70       --disable-<codec>-encoder
71       --disable-<codec>-decoder
72
73   Codecs available in this distribution:
74 EOF
75 #restore editor state '
76
77     family="";
78     last_family="";
79     c="";
80     str="";
81     for c in ${CODECS}; do
82         family=${c%_*}
83         if [ "${family}" != "${last_family}" ]; then
84             [ -z "${str}" ] || echo "${str}"
85             str="$(printf '    %10s:' ${family})"
86         fi
87         str="${str} $(printf '%10s' ${c#*_})"
88         last_family=${family}
89     done
90     echo "${str}"
91     show_help_post
92 }
93
94 ##
95 ## BEGIN APPLICATION SPECIFIC CONFIGURATION
96 ##
97
98 # all_platforms is a list of all supported target platforms. Maintain
99 # alphabetically by architecture, generic-gnu last.
100 all_platforms="${all_platforms} armv6-darwin-gcc"
101 all_platforms="${all_platforms} armv6-linux-rvct"
102 all_platforms="${all_platforms} armv6-linux-gcc"
103 all_platforms="${all_platforms} armv6-none-rvct"
104 all_platforms="${all_platforms} arm64-darwin-gcc"
105 all_platforms="${all_platforms} armv7-android-gcc"   #neon Cortex-A8
106 all_platforms="${all_platforms} armv7-darwin-gcc"    #neon Cortex-A8
107 all_platforms="${all_platforms} armv7-linux-rvct"    #neon Cortex-A8
108 all_platforms="${all_platforms} armv7-linux-gcc"     #neon Cortex-A8
109 all_platforms="${all_platforms} armv7-none-rvct"     #neon Cortex-A8
110 all_platforms="${all_platforms} armv7-win32-vs11"
111 all_platforms="${all_platforms} armv7-win32-vs12"
112 all_platforms="${all_platforms} armv7s-darwin-gcc"
113 all_platforms="${all_platforms} mips32-linux-gcc"
114 all_platforms="${all_platforms} mips64-linux-gcc"
115 all_platforms="${all_platforms} sparc-solaris-gcc"
116 all_platforms="${all_platforms} x86-android-gcc"
117 all_platforms="${all_platforms} x86-darwin8-gcc"
118 all_platforms="${all_platforms} x86-darwin8-icc"
119 all_platforms="${all_platforms} x86-darwin9-gcc"
120 all_platforms="${all_platforms} x86-darwin9-icc"
121 all_platforms="${all_platforms} x86-darwin10-gcc"
122 all_platforms="${all_platforms} x86-darwin11-gcc"
123 all_platforms="${all_platforms} x86-darwin12-gcc"
124 all_platforms="${all_platforms} x86-darwin13-gcc"
125 all_platforms="${all_platforms} x86-darwin14-gcc"
126 all_platforms="${all_platforms} x86-iphonesimulator-gcc"
127 all_platforms="${all_platforms} x86-linux-gcc"
128 all_platforms="${all_platforms} x86-linux-icc"
129 all_platforms="${all_platforms} x86-os2-gcc"
130 all_platforms="${all_platforms} x86-solaris-gcc"
131 all_platforms="${all_platforms} x86-win32-gcc"
132 all_platforms="${all_platforms} x86-win32-vs7"
133 all_platforms="${all_platforms} x86-win32-vs8"
134 all_platforms="${all_platforms} x86-win32-vs9"
135 all_platforms="${all_platforms} x86-win32-vs10"
136 all_platforms="${all_platforms} x86-win32-vs11"
137 all_platforms="${all_platforms} x86-win32-vs12"
138 all_platforms="${all_platforms} x86_64-darwin9-gcc"
139 all_platforms="${all_platforms} x86_64-darwin10-gcc"
140 all_platforms="${all_platforms} x86_64-darwin11-gcc"
141 all_platforms="${all_platforms} x86_64-darwin12-gcc"
142 all_platforms="${all_platforms} x86_64-darwin13-gcc"
143 all_platforms="${all_platforms} x86_64-darwin14-gcc"
144 all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
145 all_platforms="${all_platforms} x86_64-linux-gcc"
146 all_platforms="${all_platforms} x86_64-linux-icc"
147 all_platforms="${all_platforms} x86_64-solaris-gcc"
148 all_platforms="${all_platforms} x86_64-win64-gcc"
149 all_platforms="${all_platforms} x86_64-win64-vs8"
150 all_platforms="${all_platforms} x86_64-win64-vs9"
151 all_platforms="${all_platforms} x86_64-win64-vs10"
152 all_platforms="${all_platforms} x86_64-win64-vs11"
153 all_platforms="${all_platforms} x86_64-win64-vs12"
154 all_platforms="${all_platforms} universal-darwin8-gcc"
155 all_platforms="${all_platforms} universal-darwin9-gcc"
156 all_platforms="${all_platforms} universal-darwin10-gcc"
157 all_platforms="${all_platforms} universal-darwin11-gcc"
158 all_platforms="${all_platforms} universal-darwin12-gcc"
159 all_platforms="${all_platforms} universal-darwin13-gcc"
160 all_platforms="${all_platforms} universal-darwin14-gcc"
161 all_platforms="${all_platforms} generic-gnu"
162
163 # all_targets is a list of all targets that can be configured
164 # note that these should be in dependency order for now.
165 all_targets="libs examples docs"
166
167 # all targets available are enabled, by default.
168 for t in ${all_targets}; do
169     [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
170 done
171
172 if ! perl --version >/dev/null; then
173     die "Perl is required to build"
174 fi
175
176
177 if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
178   # test to see if source_path already configured
179   if [ -f "${source_path}/vpx_config.h" ]; then
180     die "source directory already configured; run 'make distclean' there first"
181   fi
182 fi
183
184 # check installed doxygen version
185 doxy_version=$(doxygen --version 2>/dev/null)
186 doxy_major=${doxy_version%%.*}
187 if [ ${doxy_major:-0} -ge 1 ]; then
188     doxy_version=${doxy_version#*.}
189     doxy_minor=${doxy_version%%.*}
190     doxy_patch=${doxy_version##*.}
191
192     [ $doxy_major -gt 1 ] && enable_feature doxygen
193     [ $doxy_minor -gt 5 ] && enable_feature doxygen
194     [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
195 fi
196
197 # install everything except the sources, by default. sources will have
198 # to be enabled when doing dist builds, since that's no longer a common
199 # case.
200 enabled doxygen && enable_feature install_docs
201 enable_feature install_bins
202 enable_feature install_libs
203
204 enable_feature static
205 enable_feature optimizations
206 enable_feature dependency_tracking
207 enable_feature fast_unaligned #allow unaligned accesses, if supported by hw
208 enable_feature spatial_resampling
209 enable_feature multithread
210 enable_feature os_support
211 enable_feature temporal_denoising
212
213 [ -d "${source_path}/../include" ] && enable_feature alt_tree_layout
214 for d in vp8 vp9; do
215     [ -d "${source_path}/${d}" ] && disable_feature alt_tree_layout;
216 done
217
218 if ! enabled alt_tree_layout; then
219 # development environment
220 [ -d "${source_path}/vp8" ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
221 [ -d "${source_path}/vp9" ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
222 else
223 # customer environment
224 [ -f "${source_path}/../include/vpx/vp8cx.h" ] && CODECS="${CODECS} vp8_encoder"
225 [ -f "${source_path}/../include/vpx/vp8dx.h" ] && CODECS="${CODECS} vp8_decoder"
226 [ -f "${source_path}/../include/vpx/vp9cx.h" ] && CODECS="${CODECS} vp9_encoder"
227 [ -f "${source_path}/../include/vpx/vp9dx.h" ] && CODECS="${CODECS} vp9_decoder"
228 [ -f "${source_path}/../include/vpx/vp8cx.h" ] || disable_feature vp8_encoder
229 [ -f "${source_path}/../include/vpx/vp8dx.h" ] || disable_feature vp8_decoder
230 [ -f "${source_path}/../include/vpx/vp9cx.h" ] || disable_feature vp9_encoder
231 [ -f "${source_path}/../include/vpx/vp9dx.h" ] || disable_feature vp9_decoder
232
233 [ -f "${source_path}/../lib/*/*mt.lib" ] && soft_enable static_msvcrt
234 fi
235
236 CODECS="$(echo ${CODECS} | tr ' ' '\n')"
237 CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
238
239 ARCH_LIST="
240     arm
241     mips
242     x86
243     x86_64
244 "
245 ARCH_EXT_LIST="
246     edsp
247     media
248     neon
249     neon_asm
250
251     mips32
252     dspr2
253     msa
254     mips64
255
256     mmx
257     sse
258     sse2
259     sse3
260     ssse3
261     sse4_1
262     avx
263     avx2
264 "
265 HAVE_LIST="
266     ${ARCH_EXT_LIST}
267     vpx_ports
268     stdint_h
269     alt_tree_layout
270     pthread_h
271     sys_mman_h
272     unistd_h
273 "
274 EXPERIMENT_LIST="
275     spatial_svc
276     fp_mb_stats
277     emulate_hardware
278 "
279 CONFIG_LIST="
280     dependency_tracking
281     external_build
282     install_docs
283     install_bins
284     install_libs
285     install_srcs
286     use_x86inc
287     debug
288     gprof
289     gcov
290     rvct
291     gcc
292     msvs
293     pic
294     big_endian
295
296     codec_srcs
297     debug_libs
298     fast_unaligned
299     mem_manager
300     mem_tracker
301     mem_checks
302
303     dequant_tokens
304     dc_recon
305     runtime_cpu_detect
306     postproc
307     vp9_postproc
308     multithread
309     internal_stats
310     ${CODECS}
311     ${CODEC_FAMILIES}
312     encoders
313     decoders
314     static_msvcrt
315     spatial_resampling
316     realtime_only
317     onthefly_bitpacking
318     error_concealment
319     shared
320     static
321     small
322     postproc_visualizer
323     os_support
324     unit_tests
325     webm_io
326     libyuv
327     decode_perf_tests
328     encode_perf_tests
329     multi_res_encoding
330     temporal_denoising
331     vp9_temporal_denoising
332     coefficient_range_checking
333     vp9_highbitdepth
334     experimental
335     size_limit
336     ${EXPERIMENT_LIST}
337 "
338 CMDLINE_SELECT="
339     dependency_tracking
340     external_build
341     extra_warnings
342     werror
343     install_docs
344     install_bins
345     install_libs
346     install_srcs
347     debug
348     gprof
349     gcov
350     pic
351     use_x86inc
352     optimizations
353     ccache
354     runtime_cpu_detect
355     thumb
356
357     libs
358     examples
359     docs
360     libc
361     as
362     size_limit
363     fast_unaligned
364     codec_srcs
365     debug_libs
366
367     dequant_tokens
368     dc_recon
369     postproc
370     vp9_postproc
371     multithread
372     internal_stats
373     ${CODECS}
374     ${CODEC_FAMILIES}
375     static_msvcrt
376     mem_tracker
377     spatial_resampling
378     realtime_only
379     onthefly_bitpacking
380     error_concealment
381     shared
382     static
383     small
384     postproc_visualizer
385     unit_tests
386     webm_io
387     libyuv
388     decode_perf_tests
389     encode_perf_tests
390     multi_res_encoding
391     temporal_denoising
392     vp9_temporal_denoising
393     coefficient_range_checking
394     vp9_highbitdepth
395     experimental
396 "
397
398 process_cmdline() {
399     for opt do
400         optval="${opt#*=}"
401         case "$opt" in
402         --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
403         --enable-?*|--disable-?*)
404         eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
405         if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
406             if enabled experimental; then
407                 ${action}_feature $option
408             else
409                 log_echo "Ignoring $opt -- not in experimental mode."
410             fi
411         else
412             process_common_cmdline $opt
413         fi
414         ;;
415         *) process_common_cmdline "$opt"
416         ;;
417         esac
418     done
419 }
420
421 post_process_cmdline() {
422     c=""
423
424     # If the codec family is disabled, disable all components of that family.
425     # If the codec family is enabled, enable all components of that family.
426     log_echo "Configuring selected codecs"
427     for c in ${CODECS}; do
428         disabled ${c%%_*} && disable_feature ${c}
429         enabled ${c%%_*} && enable_feature ${c}
430     done
431
432     # Enable all detected codecs, if they haven't been disabled
433     for c in ${CODECS}; do soft_enable $c; done
434
435     # Enable the codec family if any component of that family is enabled
436     for c in ${CODECS}; do
437         enabled $c && enable_feature ${c%_*}
438     done
439
440     # Set the {en,de}coders variable if any algorithm in that class is enabled
441     for c in ${CODECS}; do
442         enabled ${c} && enable_feature ${c##*_}s
443     done
444 }
445
446
447 process_targets() {
448     enabled child || write_common_config_banner
449     enabled universal || write_common_target_config_h  ${BUILD_PFX}vpx_config.h
450
451     # For fat binaries, call configure recursively to configure for each
452     # binary architecture to be included.
453     if enabled universal; then
454         # Call configure (ourselves) for each subarchitecture
455         for arch in $fat_bin_archs; do
456             BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
457         done
458     fi
459
460     # The write_common_config (config.mk) logic is deferred until after the
461     # recursive calls to configure complete, because we want our universal
462     # targets to be executed last.
463     write_common_config_targets
464     enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
465
466     # Calculate the default distribution name, based on the enabled features
467     cf=""
468     DIST_DIR=vpx
469     for cf in $CODEC_FAMILIES; do
470         if enabled ${cf}_encoder && enabled ${cf}_decoder; then
471             DIST_DIR="${DIST_DIR}-${cf}"
472         elif enabled ${cf}_encoder; then
473             DIST_DIR="${DIST_DIR}-${cf}cx"
474         elif enabled ${cf}_decoder; then
475             DIST_DIR="${DIST_DIR}-${cf}dx"
476         fi
477     done
478     enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
479     enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
480     ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
481     ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
482     ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
483     DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
484     case "${tgt_os}" in
485     win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
486           DIST_DIR="${DIST_DIR}-${tgt_cc}"
487           ;;
488     esac
489     if [ -f "${source_path}/build/make/version.sh" ]; then
490         ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
491         DIST_DIR="${DIST_DIR}-${ver}"
492         VERSION_STRING=${ver}
493         ver=${ver%%-*}
494         VERSION_PATCH=${ver##*.}
495         ver=${ver%.*}
496         VERSION_MINOR=${ver##*.}
497         ver=${ver#v}
498         VERSION_MAJOR=${ver%.*}
499     fi
500     enabled child || cat <<EOF >> config.mk
501
502 PREFIX=${prefix}
503 ifeq (\$(MAKECMDGOALS),dist)
504 DIST_DIR?=${DIST_DIR}
505 else
506 DIST_DIR?=\$(DESTDIR)${prefix}
507 endif
508 LIBSUBDIR=${libdir##${prefix}/}
509
510 VERSION_STRING=${VERSION_STRING}
511
512 VERSION_MAJOR=${VERSION_MAJOR}
513 VERSION_MINOR=${VERSION_MINOR}
514 VERSION_PATCH=${VERSION_PATCH}
515
516 CONFIGURE_ARGS=${CONFIGURE_ARGS}
517 EOF
518     enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
519
520     #
521     # Write makefiles for all enabled targets
522     #
523     for tgt in libs examples docs solution; do
524         tgt_fn="$tgt-$toolchain.mk"
525
526         if enabled $tgt; then
527             echo "Creating makefiles for ${toolchain} ${tgt}"
528             write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
529             #write_${tgt}_config
530         fi
531     done
532
533 }
534
535 process_detect() {
536     if enabled shared; then
537         # Can only build shared libs on a subset of platforms. Doing this check
538         # here rather than at option parse time because the target auto-detect
539         # magic happens after the command line has been parsed.
540         if ! enabled linux; then
541             if enabled gnu; then
542                 echo "--enable-shared is only supported on ELF; assuming this is OK"
543             else
544                 die "--enable-shared only supported on ELF for now"
545             fi
546         fi
547     fi
548     if [ -z "$CC" ] || enabled external_build; then
549         echo "Bypassing toolchain for environment detection."
550         enable_feature external_build
551         check_header() {
552             log fake_check_header "$@"
553             header=$1
554             shift
555             var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
556             disable_feature $var
557             # Headers common to all environments
558             case $header in
559                 stdio.h)
560                     true;
561                 ;;
562                 *)
563                     result=false
564                     for d in "$@"; do
565                         [ -f "${d##-I}/$header" ] && result=true && break
566                     done
567                     ${result:-true}
568             esac && enable_feature $var
569
570             # Specialize windows and POSIX environments.
571             case $toolchain in
572                 *-win*-*)
573                     case $header-$toolchain in
574                         stdint*-gcc) true;;
575                         *) false;;
576                     esac && enable_feature $var
577                     ;;
578                 *)
579                     case $header in
580                         stdint.h) true;;
581                         pthread.h) true;;
582                         sys/mman.h) true;;
583                         unistd.h) true;;
584                         *) false;;
585                     esac && enable_feature $var
586             esac
587             enabled $var
588         }
589         check_ld() {
590             true
591         }
592     fi
593     check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
594     check_ld <<EOF || die "Toolchain is unable to link executables"
595 int main(void) {return 0;}
596 EOF
597     # check system headers
598     check_header stdint.h
599     check_header pthread.h
600     check_header sys/mman.h
601     check_header unistd.h # for sysconf(3) and friends.
602
603     check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
604 }
605
606 process_toolchain() {
607     process_common_toolchain
608
609     # Handle universal binaries for this architecture
610     case $toolchain in
611         universal-darwin*)
612             darwin_ver=${tgt_os##darwin}
613
614             # Tiger (10.4/darwin8) brought support for x86
615             if [ $darwin_ver -ge 8 ]; then
616                 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
617             fi
618
619             # Leopard (10.5/darwin9) brought 64 bit support
620             if [ $darwin_ver -ge 9 ]; then
621                 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
622             fi
623             ;;
624     esac
625
626
627     # Enable some useful compiler flags
628     if enabled gcc; then
629         enabled werror && check_add_cflags -Werror
630         check_add_cflags -Wall
631         check_add_cflags -Wdeclaration-after-statement
632         check_add_cflags -Wdisabled-optimization
633         check_add_cflags -Wpointer-arith
634         check_add_cflags -Wtype-limits
635         check_add_cflags -Wcast-qual
636         check_add_cflags -Wvla
637         check_add_cflags -Wimplicit-function-declaration
638         check_add_cflags -Wuninitialized
639         check_add_cflags -Wunused-variable
640         case ${CC} in
641           *clang*)
642               # libvpx and/or clang have issues with aliasing:
643               # https://code.google.com/p/webm/issues/detail?id=603
644               # work around them until they are fixed
645               check_add_cflags -fno-strict-aliasing
646           ;;
647           *) check_add_cflags -Wunused-but-set-variable ;;
648         esac
649         enabled extra_warnings || check_add_cflags -Wno-unused-function
650     fi
651
652     if enabled icc; then
653         enabled werror && check_add_cflags -Werror
654         check_add_cflags -Wall
655         check_add_cflags -Wpointer-arith
656
657         # ICC has a number of floating point optimizations that we disable
658         # in favor of deterministic output WRT to other compilers
659         add_cflags -fp-model precise
660     fi
661
662     # Enable extra, harmless warnings. These might provide additional insight
663     # to what the compiler is doing and why, but in general, but they shouldn't
664     # be treated as fatal, even if we're treating warnings as errors.
665     GCC_EXTRA_WARNINGS="
666         -Wdisabled-optimization
667         -Winline
668     "
669     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
670     RVCT_EXTRA_WARNINGS="
671         --remarks
672     "
673     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
674     if enabled extra_warnings; then
675         for w in ${EXTRA_WARNINGS}; do
676             check_add_cflags ${w}
677             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
678         done
679     fi
680
681     # ccache only really works on gcc toolchains
682     enabled gcc || soft_disable ccache
683     if enabled mips; then
684         enable_feature dequant_tokens
685         enable_feature dc_recon
686     fi
687
688     if enabled internal_stats; then
689         enable_feature vp9_postproc
690     fi
691
692     # Enable the postbuild target if building for visual studio.
693     case "$tgt_cc" in
694         vs*) enable_feature msvs
695              enable_feature solution
696              vs_version=${tgt_cc##vs}
697              case $vs_version in
698              [789])
699                  VCPROJ_SFX=vcproj
700                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
701                  ;;
702              10|11|12)
703                  VCPROJ_SFX=vcxproj
704                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
705                  enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
706                  ;;
707              esac
708              all_targets="${all_targets} solution"
709              INLINE="__forceinline"
710         ;;
711     esac
712
713     # Other toolchain specific defaults
714     case $toolchain in x86*|universal*) soft_enable postproc;; esac
715
716     if enabled postproc_visualizer; then
717         enabled postproc || die "postproc_visualizer requires postproc to be enabled"
718     fi
719
720     # Enable unit tests by default if we have a working C++ compiler.
721     case "$toolchain" in
722         *-vs*)
723             soft_enable unit_tests
724             soft_enable webm_io
725             soft_enable libyuv
726         ;;
727         *-android-*)
728             soft_enable webm_io
729             soft_enable libyuv
730             # GTestLog must be modified to use Android logging utilities.
731         ;;
732         *-darwin-*)
733             # iOS/ARM builds do not work with gtest. This does not match
734             # x86 targets.
735         ;;
736         *-iphonesimulator-*)
737             soft_enable webm_io
738             soft_enable libyuv
739         ;;
740         *-win*)
741             # Some mingw toolchains don't have pthread available by default.
742             # Treat these more like visual studio where threading in gtest
743             # would be disabled for the same reason.
744             check_cxx "$@" <<EOF && soft_enable unit_tests
745 int z;
746 EOF
747             check_cxx "$@" <<EOF && soft_enable webm_io
748 int z;
749 EOF
750             check_cxx "$@" <<EOF && soft_enable libyuv
751 int z;
752 EOF
753         ;;
754         *)
755             enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
756 int z;
757 EOF
758             check_cxx "$@" <<EOF && soft_enable webm_io
759 int z;
760 EOF
761             check_cxx "$@" <<EOF && soft_enable libyuv
762 int z;
763 EOF
764         ;;
765     esac
766     # libwebm needs to be linked with C++ standard library
767     enabled webm_io && LD=${CXX}
768 }
769
770
771 ##
772 ## END APPLICATION SPECIFIC CONFIGURATION
773 ##
774 CONFIGURE_ARGS="$@"
775 process "$@"
776 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
777 cat <<EOF >> ${BUILD_PFX}vpx_config.c
778 static const char* const cfg = "$CONFIGURE_ARGS";
779 const char *vpx_codec_build_config(void) {return cfg;}
780 EOF