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