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