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