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