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