]> granicus.if.org Git - libvpx/blob - configure
configure: restore vs_version variable
[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     use_x86inc
271     debug
272     gprof
273     gcov
274     rvct
275     gcc
276     msvs
277     pic
278     big_endian
279
280     codec_srcs
281     debug_libs
282
283     dequant_tokens
284     dc_recon
285     runtime_cpu_detect
286     postproc
287     vp9_postproc
288     multithread
289     internal_stats
290     ${CODECS}
291     ${CODEC_FAMILIES}
292     encoders
293     decoders
294     static_msvcrt
295     spatial_resampling
296     realtime_only
297     onthefly_bitpacking
298     error_concealment
299     shared
300     static
301     small
302     postproc_visualizer
303     os_support
304     unit_tests
305     webm_io
306     libyuv
307     decode_perf_tests
308     encode_perf_tests
309     multi_res_encoding
310     temporal_denoising
311     vp9_temporal_denoising
312     coefficient_range_checking
313     vp9_highbitdepth
314     better_hw_compatibility
315     experimental
316     size_limit
317     ${EXPERIMENT_LIST}
318 "
319 CMDLINE_SELECT="
320     dependency_tracking
321     external_build
322     extra_warnings
323     werror
324     install_docs
325     install_bins
326     install_libs
327     install_srcs
328     debug
329     gprof
330     gcov
331     pic
332     use_x86inc
333     optimizations
334     ccache
335     runtime_cpu_detect
336     thumb
337
338     libs
339     examples
340     docs
341     libc
342     as
343     size_limit
344     codec_srcs
345     debug_libs
346
347     dequant_tokens
348     dc_recon
349     postproc
350     vp9_postproc
351     multithread
352     internal_stats
353     ${CODECS}
354     ${CODEC_FAMILIES}
355     static_msvcrt
356     spatial_resampling
357     realtime_only
358     onthefly_bitpacking
359     error_concealment
360     shared
361     static
362     small
363     postproc_visualizer
364     unit_tests
365     webm_io
366     libyuv
367     decode_perf_tests
368     encode_perf_tests
369     multi_res_encoding
370     temporal_denoising
371     vp9_temporal_denoising
372     coefficient_range_checking
373     better_hw_compatibility
374     vp9_highbitdepth
375     experimental
376 "
377
378 process_cmdline() {
379     for opt do
380         optval="${opt#*=}"
381         case "$opt" in
382         --disable-codecs)
383           for c in ${CODEC_FAMILIES}; do disable_codec $c; done
384           ;;
385         --enable-?*|--disable-?*)
386         eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
387         if is_in ${option} ${EXPERIMENT_LIST}; then
388             if enabled experimental; then
389                 ${action}_feature $option
390             else
391                 log_echo "Ignoring $opt -- not in experimental mode."
392             fi
393         elif is_in ${option} "${CODECS} ${CODEC_FAMILIES}"; then
394             ${action}_codec ${option}
395         else
396             process_common_cmdline $opt
397         fi
398         ;;
399         *) process_common_cmdline "$opt"
400         ;;
401         esac
402     done
403 }
404
405 post_process_cmdline() {
406     c=""
407
408     # Enable all detected codecs, if they haven't been disabled
409     for c in ${CODECS}; do soft_enable $c; done
410
411     # Enable the codec family if any component of that family is enabled
412     for c in ${CODECS}; do
413         enabled $c && enable_feature ${c%_*}
414     done
415
416     # Set the {en,de}coders variable if any algorithm in that class is enabled
417     for c in ${CODECS}; do
418         enabled ${c} && enable_feature ${c##*_}s
419     done
420 }
421
422
423 process_targets() {
424     enabled child || write_common_config_banner
425     write_common_target_config_h ${BUILD_PFX}vpx_config.h
426     write_common_config_targets
427
428     # Calculate the default distribution name, based on the enabled features
429     cf=""
430     DIST_DIR=vpx
431     for cf in $CODEC_FAMILIES; do
432         if enabled ${cf}_encoder && enabled ${cf}_decoder; then
433             DIST_DIR="${DIST_DIR}-${cf}"
434         elif enabled ${cf}_encoder; then
435             DIST_DIR="${DIST_DIR}-${cf}cx"
436         elif enabled ${cf}_decoder; then
437             DIST_DIR="${DIST_DIR}-${cf}dx"
438         fi
439     done
440     enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
441     enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
442     ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
443     ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
444     ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
445     DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
446     case "${tgt_os}" in
447     win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
448           DIST_DIR="${DIST_DIR}-${tgt_cc}"
449           ;;
450     esac
451     if [ -f "${source_path}/build/make/version.sh" ]; then
452         ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
453         DIST_DIR="${DIST_DIR}-${ver}"
454         VERSION_STRING=${ver}
455         ver=${ver%%-*}
456         VERSION_PATCH=${ver##*.}
457         ver=${ver%.*}
458         VERSION_MINOR=${ver##*.}
459         ver=${ver#v}
460         VERSION_MAJOR=${ver%.*}
461     fi
462     enabled child || cat <<EOF >> config.mk
463
464 PREFIX=${prefix}
465 ifeq (\$(MAKECMDGOALS),dist)
466 DIST_DIR?=${DIST_DIR}
467 else
468 DIST_DIR?=\$(DESTDIR)${prefix}
469 endif
470 LIBSUBDIR=${libdir##${prefix}/}
471
472 VERSION_STRING=${VERSION_STRING}
473
474 VERSION_MAJOR=${VERSION_MAJOR}
475 VERSION_MINOR=${VERSION_MINOR}
476 VERSION_PATCH=${VERSION_PATCH}
477
478 CONFIGURE_ARGS=${CONFIGURE_ARGS}
479 EOF
480     enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
481
482     #
483     # Write makefiles for all enabled targets
484     #
485     for tgt in libs examples docs solution; do
486         tgt_fn="$tgt-$toolchain.mk"
487
488         if enabled $tgt; then
489             echo "Creating makefiles for ${toolchain} ${tgt}"
490             write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
491             #write_${tgt}_config
492         fi
493     done
494
495 }
496
497 process_detect() {
498     if enabled shared; then
499         # Can only build shared libs on a subset of platforms. Doing this check
500         # here rather than at option parse time because the target auto-detect
501         # magic happens after the command line has been parsed.
502         case "${tgt_os}" in
503         linux|os2|darwin*|iphonesimulator*)
504             # Supported platforms
505             ;;
506         *)
507             if enabled gnu; then
508                 echo "--enable-shared is only supported on ELF; assuming this is OK"
509             else
510                 die "--enable-shared only supported on ELF, OS/2, and Darwin for now"
511             fi
512             ;;
513         esac
514     fi
515     if [ -z "$CC" ] || enabled external_build; then
516         echo "Bypassing toolchain for environment detection."
517         enable_feature external_build
518         check_header() {
519             log fake_check_header "$@"
520             header=$1
521             shift
522             var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
523             disable_feature $var
524             # Headers common to all environments
525             case $header in
526                 stdio.h)
527                     true;
528                 ;;
529                 *)
530                     result=false
531                     for d in "$@"; do
532                         [ -f "${d##-I}/$header" ] && result=true && break
533                     done
534                     ${result:-true}
535             esac && enable_feature $var
536
537             # Specialize windows and POSIX environments.
538             case $toolchain in
539                 *-win*-*)
540                     # Don't check for any headers in Windows builds.
541                     false
542                 ;;
543                 *)
544                     case $header in
545                         pthread.h) true;;
546                         unistd.h) true;;
547                         *) false;;
548                     esac && enable_feature $var
549             esac
550             enabled $var
551         }
552         check_ld() {
553             true
554         }
555     fi
556     check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
557     check_ld <<EOF || die "Toolchain is unable to link executables"
558 int main(void) {return 0;}
559 EOF
560     # check system headers
561     check_header pthread.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         if enabled mips || [ -z "${INLINE}" ]; then
593           enabled extra_warnings || check_add_cflags -Wno-unused-function
594         else
595           check_add_cflags -Wunused-function
596         fi
597     fi
598
599     if enabled icc; then
600         enabled werror && check_add_cflags -Werror
601         check_add_cflags -Wall
602         check_add_cflags -Wpointer-arith
603
604         # ICC has a number of floating point optimizations that we disable
605         # in favor of deterministic output WRT to other compilers
606         add_cflags -fp-model precise
607     fi
608
609     # Enable extra, harmless warnings. These might provide additional insight
610     # to what the compiler is doing and why, but in general, but they shouldn't
611     # be treated as fatal, even if we're treating warnings as errors.
612     GCC_EXTRA_WARNINGS="
613         -Wdisabled-optimization
614         -Winline
615     "
616     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
617     RVCT_EXTRA_WARNINGS="
618         --remarks
619     "
620     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
621     if enabled extra_warnings; then
622         for w in ${EXTRA_WARNINGS}; do
623             check_add_cflags ${w}
624             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
625         done
626     fi
627
628     # ccache only really works on gcc toolchains
629     enabled gcc || soft_disable ccache
630     if enabled mips; then
631         enable_feature dequant_tokens
632         enable_feature dc_recon
633     fi
634
635     if enabled internal_stats; then
636         enable_feature vp9_postproc
637     fi
638
639     # Enable the postbuild target if building for visual studio.
640     case "$tgt_cc" in
641         vs*) enable_feature msvs
642              enable_feature solution
643              vs_version=${tgt_cc##vs}
644              VCPROJ_SFX=vcxproj
645              gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
646              enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
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     # append any user defined extra cflags
709     if [ -n "${extra_cflags}" ] ; then
710         check_add_cflags ${extra_cflags} || \
711         die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler"
712     fi
713     if [ -n "${extra_cxxflags}" ]; then
714         check_add_cxxflags ${extra_cxxflags} || \
715         die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler"
716     fi
717 }
718
719
720 ##
721 ## END APPLICATION SPECIFIC CONFIGURATION
722 ##
723 CONFIGURE_ARGS="$@"
724 process "$@"
725 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
726 cat <<EOF >> ${BUILD_PFX}vpx_config.c
727 #include "vpx/vpx_codec.h"
728 static const char* const cfg = "$CONFIGURE_ARGS";
729 const char *vpx_codec_build_config(void) {return cfg;}
730 EOF