]> granicus.if.org Git - libvpx/blob - configure
Merge "Move inter_predictor to vp9_reconinter.h"
[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} armv7s-darwin-gcc"
110 all_platforms="${all_platforms} mips32-linux-gcc"
111 all_platforms="${all_platforms} mips64-linux-gcc"
112 all_platforms="${all_platforms} sparc-solaris-gcc"
113 all_platforms="${all_platforms} x86-android-gcc"
114 all_platforms="${all_platforms} x86-darwin8-gcc"
115 all_platforms="${all_platforms} x86-darwin8-icc"
116 all_platforms="${all_platforms} x86-darwin9-gcc"
117 all_platforms="${all_platforms} x86-darwin9-icc"
118 all_platforms="${all_platforms} x86-darwin10-gcc"
119 all_platforms="${all_platforms} x86-darwin11-gcc"
120 all_platforms="${all_platforms} x86-darwin12-gcc"
121 all_platforms="${all_platforms} x86-darwin13-gcc"
122 all_platforms="${all_platforms} x86-darwin14-gcc"
123 all_platforms="${all_platforms} x86-iphonesimulator-gcc"
124 all_platforms="${all_platforms} x86-linux-gcc"
125 all_platforms="${all_platforms} x86-linux-icc"
126 all_platforms="${all_platforms} x86-os2-gcc"
127 all_platforms="${all_platforms} x86-solaris-gcc"
128 all_platforms="${all_platforms} x86-win32-gcc"
129 all_platforms="${all_platforms} x86-win32-vs7"
130 all_platforms="${all_platforms} x86-win32-vs8"
131 all_platforms="${all_platforms} x86-win32-vs9"
132 all_platforms="${all_platforms} x86-win32-vs10"
133 all_platforms="${all_platforms} x86-win32-vs11"
134 all_platforms="${all_platforms} x86-win32-vs12"
135 all_platforms="${all_platforms} x86_64-darwin9-gcc"
136 all_platforms="${all_platforms} x86_64-darwin10-gcc"
137 all_platforms="${all_platforms} x86_64-darwin11-gcc"
138 all_platforms="${all_platforms} x86_64-darwin12-gcc"
139 all_platforms="${all_platforms} x86_64-darwin13-gcc"
140 all_platforms="${all_platforms} x86_64-darwin14-gcc"
141 all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
142 all_platforms="${all_platforms} x86_64-linux-gcc"
143 all_platforms="${all_platforms} x86_64-linux-icc"
144 all_platforms="${all_platforms} x86_64-solaris-gcc"
145 all_platforms="${all_platforms} x86_64-win64-gcc"
146 all_platforms="${all_platforms} x86_64-win64-vs8"
147 all_platforms="${all_platforms} x86_64-win64-vs9"
148 all_platforms="${all_platforms} x86_64-win64-vs10"
149 all_platforms="${all_platforms} x86_64-win64-vs11"
150 all_platforms="${all_platforms} x86_64-win64-vs12"
151 all_platforms="${all_platforms} generic-gnu"
152
153 # all_targets is a list of all targets that can be configured
154 # note that these should be in dependency order for now.
155 all_targets="libs examples docs"
156
157 # all targets available are enabled, by default.
158 for t in ${all_targets}; do
159     [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
160 done
161
162 if ! perl --version >/dev/null; then
163     die "Perl is required to build"
164 fi
165
166
167 if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
168   # test to see if source_path already configured
169   if [ -f "${source_path}/vpx_config.h" ]; then
170     die "source directory already configured; run 'make distclean' there first"
171   fi
172 fi
173
174 # check installed doxygen version
175 doxy_version=$(doxygen --version 2>/dev/null)
176 doxy_major=${doxy_version%%.*}
177 if [ ${doxy_major:-0} -ge 1 ]; then
178     doxy_version=${doxy_version#*.}
179     doxy_minor=${doxy_version%%.*}
180     doxy_patch=${doxy_version##*.}
181
182     [ $doxy_major -gt 1 ] && enable_feature doxygen
183     [ $doxy_minor -gt 5 ] && enable_feature doxygen
184     [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
185 fi
186
187 # disable codecs when their source directory does not exist
188 [ -d "${source_path}/vp8" ] || disable_feature vp8
189 [ -d "${source_path}/vp9" ] || disable_feature vp9
190
191 # install everything except the sources, by default. sources will have
192 # to be enabled when doing dist builds, since that's no longer a common
193 # case.
194 enabled doxygen && enable_feature install_docs
195 enable_feature install_bins
196 enable_feature install_libs
197
198 enable_feature static
199 enable_feature optimizations
200 enable_feature dependency_tracking
201 enable_feature spatial_resampling
202 enable_feature multithread
203 enable_feature os_support
204 enable_feature temporal_denoising
205
206 CODECS="
207     vp8_encoder
208     vp8_decoder
209     vp9_encoder
210     vp9_decoder
211 "
212 CODEC_FAMILIES="
213     vp8
214     vp9
215 "
216
217 ARCH_LIST="
218     arm
219     mips
220     x86
221     x86_64
222 "
223 ARCH_EXT_LIST="
224     edsp
225     media
226     neon
227     neon_asm
228
229     mips32
230     dspr2
231     msa
232     mips64
233
234     mmx
235     sse
236     sse2
237     sse3
238     ssse3
239     sse4_1
240     avx
241     avx2
242 "
243 HAVE_LIST="
244     ${ARCH_EXT_LIST}
245     vpx_ports
246     stdint_h
247     pthread_h
248     sys_mman_h
249     unistd_h
250 "
251 EXPERIMENT_LIST="
252     spatial_svc
253     fp_mb_stats
254     emulate_hardware
255 "
256 CONFIG_LIST="
257     dependency_tracking
258     external_build
259     install_docs
260     install_bins
261     install_libs
262     install_srcs
263     use_x86inc
264     debug
265     gprof
266     gcov
267     rvct
268     gcc
269     msvs
270     pic
271     big_endian
272
273     codec_srcs
274     debug_libs
275
276     dequant_tokens
277     dc_recon
278     runtime_cpu_detect
279     postproc
280     vp9_postproc
281     multithread
282     internal_stats
283     ${CODECS}
284     ${CODEC_FAMILIES}
285     encoders
286     decoders
287     static_msvcrt
288     spatial_resampling
289     realtime_only
290     onthefly_bitpacking
291     error_concealment
292     shared
293     static
294     small
295     postproc_visualizer
296     os_support
297     unit_tests
298     webm_io
299     libyuv
300     decode_perf_tests
301     encode_perf_tests
302     multi_res_encoding
303     temporal_denoising
304     vp9_temporal_denoising
305     coefficient_range_checking
306     vp9_highbitdepth
307     experimental
308     size_limit
309     ${EXPERIMENT_LIST}
310 "
311 CMDLINE_SELECT="
312     dependency_tracking
313     external_build
314     extra_warnings
315     werror
316     install_docs
317     install_bins
318     install_libs
319     install_srcs
320     debug
321     gprof
322     gcov
323     pic
324     use_x86inc
325     optimizations
326     ccache
327     runtime_cpu_detect
328     thumb
329
330     libs
331     examples
332     docs
333     libc
334     as
335     size_limit
336     codec_srcs
337     debug_libs
338
339     dequant_tokens
340     dc_recon
341     postproc
342     vp9_postproc
343     multithread
344     internal_stats
345     ${CODECS}
346     ${CODEC_FAMILIES}
347     static_msvcrt
348     spatial_resampling
349     realtime_only
350     onthefly_bitpacking
351     error_concealment
352     shared
353     static
354     small
355     postproc_visualizer
356     unit_tests
357     webm_io
358     libyuv
359     decode_perf_tests
360     encode_perf_tests
361     multi_res_encoding
362     temporal_denoising
363     vp9_temporal_denoising
364     coefficient_range_checking
365     vp9_highbitdepth
366     experimental
367 "
368
369 process_cmdline() {
370     for opt do
371         optval="${opt#*=}"
372         case "$opt" in
373         --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
374         --enable-?*|--disable-?*)
375         eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
376         if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
377             if enabled experimental; then
378                 ${action}_feature $option
379             else
380                 log_echo "Ignoring $opt -- not in experimental mode."
381             fi
382         else
383             process_common_cmdline $opt
384         fi
385         ;;
386         *) process_common_cmdline "$opt"
387         ;;
388         esac
389     done
390 }
391
392 post_process_cmdline() {
393     c=""
394
395     # If the codec family is disabled, disable all components of that family.
396     # If the codec family is enabled, enable all components of that family.
397     log_echo "Configuring selected codecs"
398     for c in ${CODECS}; do
399         disabled ${c%%_*} && disable_feature ${c}
400         enabled ${c%%_*} && enable_feature ${c}
401     done
402
403     # Enable all detected codecs, if they haven't been disabled
404     for c in ${CODECS}; do soft_enable $c; done
405
406     # Enable the codec family if any component of that family is enabled
407     for c in ${CODECS}; do
408         enabled $c && enable_feature ${c%_*}
409     done
410
411     # Set the {en,de}coders variable if any algorithm in that class is enabled
412     for c in ${CODECS}; do
413         enabled ${c} && enable_feature ${c##*_}s
414     done
415 }
416
417
418 process_targets() {
419     enabled child || write_common_config_banner
420     write_common_target_config_h ${BUILD_PFX}vpx_config.h
421     write_common_config_targets
422
423     # Calculate the default distribution name, based on the enabled features
424     cf=""
425     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 && ! enabled vp9_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         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         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 && ! enabled os2; 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 and OS/2 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_feature 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_feature $var
514             # Headers common to all environments
515             case $header in
516                 stdio.h)
517                     true;
518                 ;;
519                 *)
520                     result=false
521                     for d in "$@"; do
522                         [ -f "${d##-I}/$header" ] && result=true && break
523                     done
524                     ${result:-true}
525             esac && enable_feature $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_feature $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_feature $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_feature vpx_ports
561 }
562
563 process_toolchain() {
564     process_common_toolchain
565
566     # Enable some useful compiler flags
567     if enabled gcc; then
568         enabled werror && check_add_cflags -Werror
569         check_add_cflags -Wall
570         check_add_cflags -Wdeclaration-after-statement
571         check_add_cflags -Wdisabled-optimization
572         check_add_cflags -Wpointer-arith
573         check_add_cflags -Wtype-limits
574         check_add_cflags -Wcast-qual
575         check_add_cflags -Wvla
576         check_add_cflags -Wimplicit-function-declaration
577         check_add_cflags -Wuninitialized
578         check_add_cflags -Wunused-variable
579         case ${CC} in
580           *clang*)
581               # libvpx and/or clang have issues with aliasing:
582               # https://code.google.com/p/webm/issues/detail?id=603
583               # work around them until they are fixed
584               check_add_cflags -fno-strict-aliasing
585           ;;
586           *) check_add_cflags -Wunused-but-set-variable ;;
587         esac
588         enabled extra_warnings || check_add_cflags -Wno-unused-function
589     fi
590
591     if enabled icc; then
592         enabled werror && check_add_cflags -Werror
593         check_add_cflags -Wall
594         check_add_cflags -Wpointer-arith
595
596         # ICC has a number of floating point optimizations that we disable
597         # in favor of deterministic output WRT to other compilers
598         add_cflags -fp-model precise
599     fi
600
601     # Enable extra, harmless warnings. These might provide additional insight
602     # to what the compiler is doing and why, but in general, but they shouldn't
603     # be treated as fatal, even if we're treating warnings as errors.
604     GCC_EXTRA_WARNINGS="
605         -Wdisabled-optimization
606         -Winline
607     "
608     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
609     RVCT_EXTRA_WARNINGS="
610         --remarks
611     "
612     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
613     if enabled extra_warnings; then
614         for w in ${EXTRA_WARNINGS}; do
615             check_add_cflags ${w}
616             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
617         done
618     fi
619
620     # ccache only really works on gcc toolchains
621     enabled gcc || soft_disable ccache
622     if enabled mips; then
623         enable_feature dequant_tokens
624         enable_feature dc_recon
625     fi
626
627     if enabled internal_stats; then
628         enable_feature vp9_postproc
629     fi
630
631     # Enable the postbuild target if building for visual studio.
632     case "$tgt_cc" in
633         vs*) enable_feature msvs
634              enable_feature solution
635              vs_version=${tgt_cc##vs}
636              case $vs_version in
637              [789])
638                  VCPROJ_SFX=vcproj
639                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
640                  ;;
641              10|11|12)
642                  VCPROJ_SFX=vcxproj
643                  gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
644                  enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
645                  ;;
646              esac
647              all_targets="${all_targets} solution"
648              INLINE="__forceinline"
649         ;;
650     esac
651
652     # Other toolchain specific defaults
653     case $toolchain in x86*) soft_enable postproc;; esac
654
655     if enabled postproc_visualizer; then
656         enabled postproc || die "postproc_visualizer requires postproc to be enabled"
657     fi
658
659     # Enable unit tests by default if we have a working C++ compiler.
660     case "$toolchain" in
661         *-vs*)
662             soft_enable unit_tests
663             soft_enable webm_io
664             soft_enable libyuv
665         ;;
666         *-android-*)
667             soft_enable webm_io
668             soft_enable libyuv
669             # GTestLog must be modified to use Android logging utilities.
670         ;;
671         *-darwin-*)
672             # iOS/ARM builds do not work with gtest. This does not match
673             # x86 targets.
674         ;;
675         *-iphonesimulator-*)
676             soft_enable webm_io
677             soft_enable libyuv
678         ;;
679         *-win*)
680             # Some mingw toolchains don't have pthread available by default.
681             # Treat these more like visual studio where threading in gtest
682             # would be disabled for the same reason.
683             check_cxx "$@" <<EOF && soft_enable unit_tests
684 int z;
685 EOF
686             check_cxx "$@" <<EOF && soft_enable webm_io
687 int z;
688 EOF
689             check_cxx "$@" <<EOF && soft_enable libyuv
690 int z;
691 EOF
692         ;;
693         *)
694             enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
695 int z;
696 EOF
697             check_cxx "$@" <<EOF && soft_enable webm_io
698 int z;
699 EOF
700             check_cxx "$@" <<EOF && soft_enable libyuv
701 int z;
702 EOF
703         ;;
704     esac
705     # libwebm needs to be linked with C++ standard library
706     enabled webm_io && LD=${CXX}
707 }
708
709
710 ##
711 ## END APPLICATION SPECIFIC CONFIGURATION
712 ##
713 CONFIGURE_ARGS="$@"
714 process "$@"
715 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
716 cat <<EOF >> ${BUILD_PFX}vpx_config.c
717 #include "vpx/vpx_codec.h"
718 static const char* const cfg = "$CONFIGURE_ARGS";
719 const char *vpx_codec_build_config(void) {return cfg;}
720 EOF