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