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