]> granicus.if.org Git - libvpx/blob - configure
VP9: Remove decoder args from find_mv_refs_idx()
[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_codec_srcs}            in/exclude codec library source code
35   ${toggle_debug_libs}            in/exclude debug version of libraries
36   ${toggle_static_msvcrt}         use static MSVCRT (VS builds only)
37   ${toggle_vp9_highbitdepth}      use VP9 high bit depth (10/12) profiles
38   ${toggle_better_hw_compatibility}
39                                   enable encoder to produce streams with better
40                                   hardware decoder compatibility
41   ${toggle_vp8}                   VP8 codec support
42   ${toggle_vp9}                   VP9 codec support
43   ${toggle_vp10}                  VP10 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} armv6-darwin-gcc"
102 all_platforms="${all_platforms} armv6-linux-rvct"
103 all_platforms="${all_platforms} armv6-linux-gcc"
104 all_platforms="${all_platforms} armv6-none-rvct"
105 all_platforms="${all_platforms} arm64-darwin-gcc"
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-vs11"
112 all_platforms="${all_platforms} armv7-win32-vs12"
113 all_platforms="${all_platforms} armv7-win32-vs14"
114 all_platforms="${all_platforms} armv7s-darwin-gcc"
115 all_platforms="${all_platforms} mips32-linux-gcc"
116 all_platforms="${all_platforms} mips64-linux-gcc"
117 all_platforms="${all_platforms} sparc-solaris-gcc"
118 all_platforms="${all_platforms} x86-android-gcc"
119 all_platforms="${all_platforms} x86-darwin8-gcc"
120 all_platforms="${all_platforms} x86-darwin8-icc"
121 all_platforms="${all_platforms} x86-darwin9-gcc"
122 all_platforms="${all_platforms} x86-darwin9-icc"
123 all_platforms="${all_platforms} x86-darwin10-gcc"
124 all_platforms="${all_platforms} x86-darwin11-gcc"
125 all_platforms="${all_platforms} x86-darwin12-gcc"
126 all_platforms="${all_platforms} x86-darwin13-gcc"
127 all_platforms="${all_platforms} x86-darwin14-gcc"
128 all_platforms="${all_platforms} x86-darwin15-gcc"
129 all_platforms="${all_platforms} x86-iphonesimulator-gcc"
130 all_platforms="${all_platforms} x86-linux-gcc"
131 all_platforms="${all_platforms} x86-linux-icc"
132 all_platforms="${all_platforms} x86-os2-gcc"
133 all_platforms="${all_platforms} x86-solaris-gcc"
134 all_platforms="${all_platforms} x86-win32-gcc"
135 all_platforms="${all_platforms} x86-win32-vs7"
136 all_platforms="${all_platforms} x86-win32-vs8"
137 all_platforms="${all_platforms} x86-win32-vs9"
138 all_platforms="${all_platforms} x86-win32-vs10"
139 all_platforms="${all_platforms} x86-win32-vs11"
140 all_platforms="${all_platforms} x86-win32-vs12"
141 all_platforms="${all_platforms} x86-win32-vs14"
142 all_platforms="${all_platforms} x86_64-android-gcc"
143 all_platforms="${all_platforms} x86_64-darwin9-gcc"
144 all_platforms="${all_platforms} x86_64-darwin10-gcc"
145 all_platforms="${all_platforms} x86_64-darwin11-gcc"
146 all_platforms="${all_platforms} x86_64-darwin12-gcc"
147 all_platforms="${all_platforms} x86_64-darwin13-gcc"
148 all_platforms="${all_platforms} x86_64-darwin14-gcc"
149 all_platforms="${all_platforms} x86_64-darwin15-gcc"
150 all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
151 all_platforms="${all_platforms} x86_64-linux-gcc"
152 all_platforms="${all_platforms} x86_64-linux-icc"
153 all_platforms="${all_platforms} x86_64-solaris-gcc"
154 all_platforms="${all_platforms} x86_64-win64-gcc"
155 all_platforms="${all_platforms} x86_64-win64-vs8"
156 all_platforms="${all_platforms} x86_64-win64-vs9"
157 all_platforms="${all_platforms} x86_64-win64-vs10"
158 all_platforms="${all_platforms} x86_64-win64-vs11"
159 all_platforms="${all_platforms} x86_64-win64-vs12"
160 all_platforms="${all_platforms} x86_64-win64-vs14"
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 # disable codecs when their source directory does not exist
198 [ -d "${source_path}/vp8" ] || disable_feature vp8
199 [ -d "${source_path}/vp9" ] || disable_feature vp9
200 [ -d "${source_path}/vp10" ] || disable_feature vp10
201
202 # disable vp10 codec by default
203 disable_feature vp10
204
205 # install everything except the sources, by default. sources will have
206 # to be enabled when doing dist builds, since that's no longer a common
207 # case.
208 enabled doxygen && enable_feature install_docs
209 enable_feature install_bins
210 enable_feature install_libs
211
212 enable_feature static
213 enable_feature optimizations
214 enable_feature dependency_tracking
215 enable_feature spatial_resampling
216 enable_feature multithread
217 enable_feature os_support
218 enable_feature temporal_denoising
219
220 CODECS="
221     vp8_encoder
222     vp8_decoder
223     vp9_encoder
224     vp9_decoder
225     vp10_encoder
226     vp10_decoder
227 "
228 CODEC_FAMILIES="
229     vp8
230     vp9
231     vp10
232 "
233
234 ARCH_LIST="
235     arm
236     mips
237     x86
238     x86_64
239 "
240 ARCH_EXT_LIST_X86="
241     mmx
242     sse
243     sse2
244     sse3
245     ssse3
246     sse4_1
247     avx
248     avx2
249 "
250 ARCH_EXT_LIST="
251     edsp
252     media
253     neon
254     neon_asm
255
256     mips32
257     dspr2
258     msa
259     mips64
260
261     ${ARCH_EXT_LIST_X86}
262 "
263 HAVE_LIST="
264     ${ARCH_EXT_LIST}
265     vpx_ports
266     stdint_h
267     pthread_h
268     sys_mman_h
269     unistd_h
270 "
271 EXPERIMENT_LIST="
272     spatial_svc
273     fp_mb_stats
274     emulate_hardware
275     misc_fixes
276 "
277 CONFIG_LIST="
278     dependency_tracking
279     external_build
280     install_docs
281     install_bins
282     install_libs
283     install_srcs
284     use_x86inc
285     debug
286     gprof
287     gcov
288     rvct
289     gcc
290     msvs
291     pic
292     big_endian
293
294     codec_srcs
295     debug_libs
296
297     dequant_tokens
298     dc_recon
299     runtime_cpu_detect
300     postproc
301     vp9_postproc
302     multithread
303     internal_stats
304     ${CODECS}
305     ${CODEC_FAMILIES}
306     encoders
307     decoders
308     static_msvcrt
309     spatial_resampling
310     realtime_only
311     onthefly_bitpacking
312     error_concealment
313     shared
314     static
315     small
316     postproc_visualizer
317     os_support
318     unit_tests
319     webm_io
320     libyuv
321     decode_perf_tests
322     encode_perf_tests
323     multi_res_encoding
324     temporal_denoising
325     vp9_temporal_denoising
326     coefficient_range_checking
327     vp9_highbitdepth
328     better_hw_compatibility
329     experimental
330     size_limit
331     ${EXPERIMENT_LIST}
332 "
333 CMDLINE_SELECT="
334     dependency_tracking
335     external_build
336     extra_warnings
337     werror
338     install_docs
339     install_bins
340     install_libs
341     install_srcs
342     debug
343     gprof
344     gcov
345     pic
346     use_x86inc
347     optimizations
348     ccache
349     runtime_cpu_detect
350     thumb
351
352     libs
353     examples
354     docs
355     libc
356     as
357     size_limit
358     codec_srcs
359     debug_libs
360
361     dequant_tokens
362     dc_recon
363     postproc
364     vp9_postproc
365     multithread
366     internal_stats
367     ${CODECS}
368     ${CODEC_FAMILIES}
369     static_msvcrt
370     spatial_resampling
371     realtime_only
372     onthefly_bitpacking
373     error_concealment
374     shared
375     static
376     small
377     postproc_visualizer
378     unit_tests
379     webm_io
380     libyuv
381     decode_perf_tests
382     encode_perf_tests
383     multi_res_encoding
384     temporal_denoising
385     vp9_temporal_denoising
386     coefficient_range_checking
387     better_hw_compatibility
388     vp9_highbitdepth
389     experimental
390 "
391
392 process_cmdline() {
393     for opt do
394         optval="${opt#*=}"
395         case "$opt" in
396         --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
397         --enable-?*|--disable-?*)
398         eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
399         if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
400             if enabled experimental; then
401                 ${action}_feature $option
402             else
403                 log_echo "Ignoring $opt -- not in experimental mode."
404             fi
405         else
406             process_common_cmdline $opt
407         fi
408         ;;
409         *) process_common_cmdline "$opt"
410         ;;
411         esac
412     done
413 }
414
415 post_process_cmdline() {
416     c=""
417
418     # If the codec family is disabled, disable all components of that family.
419     # If the codec family is enabled, enable all components of that family.
420     log_echo "Configuring selected codecs"
421     for c in ${CODECS}; do
422         disabled ${c%%_*} && disable_feature ${c}
423         enabled ${c%%_*} && enable_feature ${c}
424     done
425
426     # Enable all detected codecs, if they haven't been disabled
427     for c in ${CODECS}; do soft_enable $c; done
428
429     # Enable the codec family if any component of that family is enabled
430     for c in ${CODECS}; do
431         enabled $c && enable_feature ${c%_*}
432     done
433
434     # Set the {en,de}coders variable if any algorithm in that class is enabled
435     for c in ${CODECS}; do
436         enabled ${c} && enable_feature ${c##*_}s
437     done
438 }
439
440
441 process_targets() {
442     enabled child || write_common_config_banner
443     write_common_target_config_h ${BUILD_PFX}vpx_config.h
444     write_common_config_targets
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 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         if ! enabled linux && ! enabled os2; then
521             if enabled gnu; then
522                 echo "--enable-shared is only supported on ELF; assuming this is OK"
523             else
524                 die "--enable-shared only supported on ELF and OS/2 for now"
525             fi
526         fi
527     fi
528     if [ -z "$CC" ] || enabled external_build; then
529         echo "Bypassing toolchain for environment detection."
530         enable_feature external_build
531         check_header() {
532             log fake_check_header "$@"
533             header=$1
534             shift
535             var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
536             disable_feature $var
537             # Headers common to all environments
538             case $header in
539                 stdio.h)
540                     true;
541                 ;;
542                 *)
543                     result=false
544                     for d in "$@"; do
545                         [ -f "${d##-I}/$header" ] && result=true && break
546                     done
547                     ${result:-true}
548             esac && enable_feature $var
549
550             # Specialize windows and POSIX environments.
551             case $toolchain in
552                 *-win*-*)
553                     case $header-$toolchain in
554                         stdint*-gcc) true;;
555                         *) false;;
556                     esac && enable_feature $var
557                     ;;
558                 *)
559                     case $header in
560                         stdint.h) true;;
561                         pthread.h) true;;
562                         sys/mman.h) true;;
563                         unistd.h) true;;
564                         *) false;;
565                     esac && enable_feature $var
566             esac
567             enabled $var
568         }
569         check_ld() {
570             true
571         }
572     fi
573     check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
574     check_ld <<EOF || die "Toolchain is unable to link executables"
575 int main(void) {return 0;}
576 EOF
577     # check system headers
578     check_header stdint.h
579     check_header pthread.h
580     check_header sys/mman.h
581     check_header unistd.h # for sysconf(3) and friends.
582
583     check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
584 }
585
586 process_toolchain() {
587     process_common_toolchain
588
589     # Enable some useful compiler flags
590     if enabled gcc; then
591         enabled werror && check_add_cflags -Werror
592         check_add_cflags -Wall
593         check_add_cflags -Wdeclaration-after-statement
594         check_add_cflags -Wdisabled-optimization
595         check_add_cflags -Wpointer-arith
596         check_add_cflags -Wtype-limits
597         check_add_cflags -Wcast-qual
598         check_add_cflags -Wvla
599         check_add_cflags -Wimplicit-function-declaration
600         check_add_cflags -Wuninitialized
601         check_add_cflags -Wunused-variable
602         case ${CC} in
603           *clang*)
604               # libvpx and/or clang have issues with aliasing:
605               # https://code.google.com/p/webm/issues/detail?id=603
606               # work around them until they are fixed
607               check_add_cflags -fno-strict-aliasing
608           ;;
609           *) check_add_cflags -Wunused-but-set-variable ;;
610         esac
611         enabled extra_warnings || check_add_cflags -Wno-unused-function
612     fi
613
614     if enabled icc; then
615         enabled werror && check_add_cflags -Werror
616         check_add_cflags -Wall
617         check_add_cflags -Wpointer-arith
618
619         # ICC has a number of floating point optimizations that we disable
620         # in favor of deterministic output WRT to other compilers
621         add_cflags -fp-model precise
622     fi
623
624     # Enable extra, harmless warnings. These might provide additional insight
625     # to what the compiler is doing and why, but in general, but they shouldn't
626     # be treated as fatal, even if we're treating warnings as errors.
627     GCC_EXTRA_WARNINGS="
628         -Wdisabled-optimization
629         -Winline
630     "
631     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
632     RVCT_EXTRA_WARNINGS="
633         --remarks
634     "
635     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
636     if enabled extra_warnings; then
637         for w in ${EXTRA_WARNINGS}; do
638             check_add_cflags ${w}
639             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
640         done
641     fi
642
643     # ccache only really works on gcc toolchains
644     enabled gcc || soft_disable ccache
645     if enabled mips; then
646         enable_feature dequant_tokens
647         enable_feature dc_recon
648     fi
649
650     if enabled internal_stats; then
651         enable_feature vp9_postproc
652     fi
653
654     # Enable the postbuild target if building for visual studio.
655     case "$tgt_cc" in
656         vs*) enable_feature msvs
657              enable_feature solution
658              vs_version=${tgt_cc##vs}
659              case $vs_version in
660              [789])
661                  VCPROJ_SFX=vcproj
662                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
663                  ;;
664              10|11|12|14)
665                  VCPROJ_SFX=vcxproj
666                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
667                  enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
668                  ;;
669              esac
670              all_targets="${all_targets} solution"
671              INLINE="__forceinline"
672         ;;
673     esac
674
675     # Other toolchain specific defaults
676     case $toolchain in x86*) soft_enable postproc;; esac
677
678     if enabled postproc_visualizer; then
679         enabled postproc || die "postproc_visualizer requires postproc to be enabled"
680     fi
681
682     # Enable unit tests by default if we have a working C++ compiler.
683     case "$toolchain" in
684         *-vs*)
685             soft_enable unit_tests
686             soft_enable webm_io
687             soft_enable libyuv
688         ;;
689         *-android-*)
690             soft_enable webm_io
691             soft_enable libyuv
692             # GTestLog must be modified to use Android logging utilities.
693         ;;
694         *-darwin-*)
695             # iOS/ARM builds do not work with gtest. This does not match
696             # x86 targets.
697         ;;
698         *-iphonesimulator-*)
699             soft_enable webm_io
700             soft_enable libyuv
701         ;;
702         *-win*)
703             # Some mingw toolchains don't have pthread available by default.
704             # Treat these more like visual studio where threading in gtest
705             # would be disabled for the same reason.
706             check_cxx "$@" <<EOF && soft_enable unit_tests
707 int z;
708 EOF
709             check_cxx "$@" <<EOF && soft_enable webm_io
710 int z;
711 EOF
712             check_cxx "$@" <<EOF && soft_enable libyuv
713 int z;
714 EOF
715         ;;
716         *)
717             enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
718 int z;
719 EOF
720             check_cxx "$@" <<EOF && soft_enable webm_io
721 int z;
722 EOF
723             check_cxx "$@" <<EOF && soft_enable libyuv
724 int z;
725 EOF
726         ;;
727     esac
728     # libwebm needs to be linked with C++ standard library
729     enabled webm_io && LD=${CXX}
730
731     # append any user defined extra cflags
732     if [ -n "${extra_cflags}" ] ; then
733         check_add_cflags ${extra_cflags} || \
734         die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler"
735     fi
736     if [ -n "${extra_cxxflags}" ]; then
737         check_add_cxxflags ${extra_cxxflags} || \
738         die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler"
739     fi
740 }
741
742
743 ##
744 ## END APPLICATION SPECIFIC CONFIGURATION
745 ##
746 CONFIGURE_ARGS="$@"
747 process "$@"
748 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
749 cat <<EOF >> ${BUILD_PFX}vpx_config.c
750 #include "vpx/vpx_codec.h"
751 static const char* const cfg = "$CONFIGURE_ARGS";
752 const char *vpx_codec_build_config(void) {return cfg;}
753 EOF