blob: 80149c2f1216d88778a9a651e8bdd7d5f629e453 [file] [log] [blame]
Guillaume Martres3526f1c2013-08-13 18:46:58 -07001#!/bin/sh
John Koleszar0ea50ce2010-05-18 11:58:33 -04002##
John Koleszar0d719652010-05-28 10:11:58 -04003## configure
John Koleszar0ea50ce2010-05-18 11:58:33 -04004##
John Koleszar0d719652010-05-28 10:11:58 -04005## 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.
John Koleszar0ea50ce2010-05-18 11:58:33 -040013##
14
John Koleszar0ea50ce2010-05-18 11:58:33 -040015#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:
Johannec658122012-10-10 09:16:37 -070023 ${toggle_libs} libraries
24 ${toggle_examples} examples
25 ${toggle_docs} documentation
26 ${toggle_unit_tests} unit tests
Joshua Litta782d632013-11-15 12:29:26 -080027 ${toggle_decode_perf_tests} build decoder perf tests with unit tests
Joshua Litt83b843f2014-07-21 10:57:16 -070028 ${toggle_encode_perf_tests} build encoder perf tests with unit tests
Johann661802b2014-12-01 11:06:49 -080029 --cpu=CPU tune for the specified CPU (ARM: cortex-a8, X86: sse3)
John Koleszar0ea50ce2010-05-18 11:58:33 -040030 --libc=PATH path to alternate libc
Jim Bankoski943e4322014-07-17 06:31:50 -070031 --size-limit=WxH max size to allow in the decoder
Jan Kratochvil7be093e2010-10-05 19:15:08 +020032 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
Johann5d0c33b2013-11-13 14:05:27 -080033 --sdk-path=PATH path to root of sdk (android builds only)
John Koleszar0ea50ce2010-05-18 11:58:33 -040034 ${toggle_fast_unaligned} don't use unaligned accesses, even when
35 supported by hardware [auto]
36 ${toggle_codec_srcs} in/exclude codec library source code
37 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040038 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
Yaowu Xu14e37cf2015-01-02 12:36:57 -080039 ${toggle_vp9_highbitdepth} use VP9 high bit depth (10/12) profiles
John Koleszar0ea50ce2010-05-18 11:58:33 -040040 ${toggle_vp8} VP8 codec support
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070041 ${toggle_vp9} VP9 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070042 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040043 ${toggle_mem_tracker} track memory usage
John Koleszar0ea50ce2010-05-18 11:58:33 -040044 ${toggle_postproc} postprocessing
Jim Bankoski79401542013-09-04 10:02:08 -070045 ${toggle_vp9_postproc} vp9 specific postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040046 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040047 ${toggle_spatial_resampling} spatial sampling (scaling) support
48 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020049 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020050 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
Yaowu Xu0a2b25d2014-07-29 13:40:55 -070051 ${toggle_coefficient_range_checking}
52 enable decoder to check if intermediate
53 transform coefficients are in valid range
John Koleszar0ea50ce2010-05-18 11:58:33 -040054 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040055 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070056 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040057 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070058 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040059 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010060 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
Yaowu Xua6715a72015-01-16 11:15:02 -080061 ${toggle_vp9_highbitdepth} enable 10/12 bit support in VP9
Marcoc7d26cc2014-11-12 17:34:54 -080062 ${toggle_vp9_temporal_denoising}
63 enable vp9 temporal denoising
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070064 ${toggle_webm_io} enable input from and output to WebM container
Deb Mukherjee47031c02014-05-16 18:52:01 -070065 ${toggle_libyuv} enable libyuv
John Koleszar0ea50ce2010-05-18 11:58:33 -040066
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
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +090078 family="";
79 last_family="";
80 c="";
81 str="";
John Koleszar0ea50ce2010-05-18 11:58:33 -040082 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.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400101all_platforms="${all_platforms} armv6-darwin-gcc"
102all_platforms="${all_platforms} armv6-linux-rvct"
103all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200104all_platforms="${all_platforms} armv6-none-rvct"
Tom Finegane87d6812014-06-25 18:32:16 -0700105all_platforms="${all_platforms} arm64-darwin-gcc"
Fritz Koenigd8305732012-01-06 11:50:05 -0800106all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -0400107all_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
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200110all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300111all_platforms="${all_platforms} armv7-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800112all_platforms="${all_platforms} armv7-win32-vs12"
Tom Finegancd2088b2014-06-10 18:52:58 -0700113all_platforms="${all_platforms} armv7s-darwin-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400114all_platforms="${all_platforms} mips32-linux-gcc"
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200115all_platforms="${all_platforms} mips64-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400116all_platforms="${all_platforms} ppc32-darwin8-gcc"
117all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400118all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400119all_platforms="${all_platforms} ppc64-darwin8-gcc"
120all_platforms="${all_platforms} ppc64-darwin9-gcc"
121all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400122all_platforms="${all_platforms} sparc-solaris-gcc"
Andoni Morales Alastruey652589d2013-01-14 12:25:52 +0100123all_platforms="${all_platforms} x86-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400124all_platforms="${all_platforms} x86-darwin8-gcc"
125all_platforms="${all_platforms} x86-darwin8-icc"
126all_platforms="${all_platforms} x86-darwin9-gcc"
127all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700128all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700129all_platforms="${all_platforms} x86-darwin11-gcc"
130all_platforms="${all_platforms} x86-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200131all_platforms="${all_platforms} x86-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500132all_platforms="${all_platforms} x86-darwin14-gcc"
Tom Finegan4e6c5552014-06-04 18:57:25 -0700133all_platforms="${all_platforms} x86-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400134all_platforms="${all_platforms} x86-linux-gcc"
135all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900136all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400137all_platforms="${all_platforms} x86-solaris-gcc"
138all_platforms="${all_platforms} x86-win32-gcc"
139all_platforms="${all_platforms} x86-win32-vs7"
140all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400141all_platforms="${all_platforms} x86-win32-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300142all_platforms="${all_platforms} x86-win32-vs10"
143all_platforms="${all_platforms} x86-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800144all_platforms="${all_platforms} x86-win32-vs12"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400145all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500146all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700147all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700148all_platforms="${all_platforms} x86_64-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200149all_platforms="${all_platforms} x86_64-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500150all_platforms="${all_platforms} x86_64-darwin14-gcc"
Tom Finegan9b259762014-06-06 16:54:16 -0700151all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400152all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400153all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400154all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500155all_platforms="${all_platforms} x86_64-win64-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400156all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400157all_platforms="${all_platforms} x86_64-win64-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300158all_platforms="${all_platforms} x86_64-win64-vs10"
159all_platforms="${all_platforms} x86_64-win64-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800160all_platforms="${all_platforms} x86_64-win64-vs12"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400161all_platforms="${all_platforms} universal-darwin8-gcc"
162all_platforms="${all_platforms} universal-darwin9-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700163all_platforms="${all_platforms} universal-darwin10-gcc"
164all_platforms="${all_platforms} universal-darwin11-gcc"
165all_platforms="${all_platforms} universal-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200166all_platforms="${all_platforms} universal-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500167all_platforms="${all_platforms} universal-darwin14-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400168all_platforms="${all_platforms} generic-gnu"
169
170# all_targets is a list of all targets that can be configured
171# note that these should be in dependency order for now.
172all_targets="libs examples docs"
173
174# all targets available are enabled, by default.
175for t in ${all_targets}; do
James Zern95735c32014-04-23 14:51:45 -0700176 [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400177done
178
James Zern4b418002014-03-18 18:19:16 -0700179if ! perl --version >/dev/null; then
180 die "Perl is required to build"
181fi
James Zern14be7ba2014-02-28 12:24:46 -0800182
James Zern9402e252014-03-05 14:13:01 -0800183
James Zern95735c32014-04-23 14:51:45 -0700184if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
James Zern9402e252014-03-05 14:13:01 -0800185 # test to see if source_path already configured
James Zern95735c32014-04-23 14:51:45 -0700186 if [ -f "${source_path}/vpx_config.h" ]; then
James Zern9402e252014-03-05 14:13:01 -0800187 die "source directory already configured; run 'make distclean' there first"
188 fi
189fi
190
John Koleszar0ea50ce2010-05-18 11:58:33 -0400191# check installed doxygen version
192doxy_version=$(doxygen --version 2>/dev/null)
193doxy_major=${doxy_version%%.*}
194if [ ${doxy_major:-0} -ge 1 ]; then
195 doxy_version=${doxy_version#*.}
196 doxy_minor=${doxy_version%%.*}
197 doxy_patch=${doxy_version##*.}
198
James Zern42ab4012013-08-21 18:11:45 -0700199 [ $doxy_major -gt 1 ] && enable_feature doxygen
200 [ $doxy_minor -gt 5 ] && enable_feature doxygen
201 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
John Koleszar0ea50ce2010-05-18 11:58:33 -0400202fi
203
John Koleszaree8bcb12010-05-24 10:16:44 -0400204# install everything except the sources, by default. sources will have
205# to be enabled when doing dist builds, since that's no longer a common
206# case.
James Zernf8630c72014-05-10 11:15:11 -0700207enabled doxygen && enable_feature install_docs
James Zern42ab4012013-08-21 18:11:45 -0700208enable_feature install_bins
209enable_feature install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400210
James Zern42ab4012013-08-21 18:11:45 -0700211enable_feature static
212enable_feature optimizations
213enable_feature fast_unaligned #allow unaligned accesses, if supported by hw
James Zern42ab4012013-08-21 18:11:45 -0700214enable_feature spatial_resampling
215enable_feature multithread
216enable_feature os_support
217enable_feature temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400218
James Zern95735c32014-04-23 14:51:45 -0700219[ -d "${source_path}/../include" ] && enable_feature alt_tree_layout
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800220for d in vp8 vp9; do
James Zern95735c32014-04-23 14:51:45 -0700221 [ -d "${source_path}/${d}" ] && disable_feature alt_tree_layout;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400222done
223
224if ! enabled alt_tree_layout; then
225# development environment
James Zern95735c32014-04-23 14:51:45 -0700226[ -d "${source_path}/vp8" ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
227[ -d "${source_path}/vp9" ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400228else
229# customer environment
James Zern95735c32014-04-23 14:51:45 -0700230[ -f "${source_path}/../include/vpx/vp8cx.h" ] && CODECS="${CODECS} vp8_encoder"
231[ -f "${source_path}/../include/vpx/vp8dx.h" ] && CODECS="${CODECS} vp8_decoder"
232[ -f "${source_path}/../include/vpx/vp9cx.h" ] && CODECS="${CODECS} vp9_encoder"
233[ -f "${source_path}/../include/vpx/vp9dx.h" ] && CODECS="${CODECS} vp9_decoder"
234[ -f "${source_path}/../include/vpx/vp8cx.h" ] || disable_feature vp8_encoder
235[ -f "${source_path}/../include/vpx/vp8dx.h" ] || disable_feature vp8_decoder
236[ -f "${source_path}/../include/vpx/vp9cx.h" ] || disable_feature vp9_encoder
237[ -f "${source_path}/../include/vpx/vp9dx.h" ] || disable_feature vp9_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400238
James Zern95735c32014-04-23 14:51:45 -0700239[ -f "${source_path}/../lib/*/*mt.lib" ] && soft_enable static_msvcrt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400240fi
241
242CODECS="$(echo ${CODECS} | tr ' ' '\n')"
243CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
244
245ARCH_LIST="
246 arm
247 mips
248 x86
249 x86_64
250 ppc32
251 ppc64
252"
253ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800254 edsp
255 media
256 neon
Johannce239312014-05-07 11:01:31 -0700257 neon_asm
John Koleszar0ea50ce2010-05-18 11:58:33 -0400258
259 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700260 dspr2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400261
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200262 mips64
263
John Koleszar0ea50ce2010-05-18 11:58:33 -0400264 mmx
265 sse
266 sse2
267 sse3
268 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400269 sse4_1
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600270 avx
271 avx2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400272
273 altivec
274"
275HAVE_LIST="
276 ${ARCH_EXT_LIST}
277 vpx_ports
278 stdint_h
279 alt_tree_layout
280 pthread_h
281 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200282 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400283"
John Koleszar0952acb2010-06-01 11:14:25 -0400284EXPERIMENT_LIST="
James Zernf12ebfc2014-05-14 19:45:20 -0700285 spatial_svc
Pengchong Jinaaabbd62014-06-30 09:52:27 -0700286 fp_mb_stats
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700287 emulate_hardware
John Koleszar0952acb2010-06-01 11:14:25 -0400288"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400289CONFIG_LIST="
290 external_build
291 install_docs
292 install_bins
293 install_libs
294 install_srcs
Jim Bankoskia93b1152013-08-05 17:28:52 -0700295 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400296 debug
297 gprof
298 gcov
299 rvct
300 gcc
301 msvs
302 pic
303 big_endian
304
305 codec_srcs
306 debug_libs
307 fast_unaligned
308 mem_manager
309 mem_tracker
310 mem_checks
John Koleszar0ea50ce2010-05-18 11:58:33 -0400311
312 dequant_tokens
313 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400314 runtime_cpu_detect
315 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700316 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400317 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700318 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400319 ${CODECS}
320 ${CODEC_FAMILIES}
321 encoders
322 decoders
323 static_msvcrt
324 spatial_resampling
325 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200326 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200327 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400328 shared
James Zern495b2412011-07-25 15:40:36 -0700329 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400330 small
Fritz Koenig647df002010-11-04 16:03:36 -0700331 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200332 os_support
James Berrya0769f72012-05-02 17:25:58 -0400333 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700334 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700335 libyuv
Joshua Litta782d632013-11-15 12:29:26 -0800336 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700337 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400338 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100339 temporal_denoising
Marcoc7d26cc2014-11-12 17:34:54 -0800340 vp9_temporal_denoising
Yaowu Xu0a2b25d2014-07-29 13:40:55 -0700341 coefficient_range_checking
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700342 vp9_highbitdepth
John Koleszar0952acb2010-06-01 11:14:25 -0400343 experimental
Jim Bankoski943e4322014-07-17 06:31:50 -0700344 size_limit
John Koleszar0952acb2010-06-01 11:14:25 -0400345 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400346"
347CMDLINE_SELECT="
John Koleszard9847632012-12-10 12:07:59 -0800348 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400349 extra_warnings
350 werror
351 install_docs
352 install_bins
353 install_libs
354 install_srcs
355 debug
356 gprof
357 gcov
358 pic
Jim Bankoskic9126e02013-08-06 07:31:54 -0700359 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400360 optimizations
361 ccache
362 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300363 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400364
365 libs
366 examples
Johannec658122012-10-10 09:16:37 -0700367 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400368 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200369 as
Jim Bankoski943e4322014-07-17 06:31:50 -0700370 size_limit
John Koleszar0ea50ce2010-05-18 11:58:33 -0400371 fast_unaligned
372 codec_srcs
373 debug_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400374
375 dequant_tokens
376 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400377 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700378 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400379 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700380 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400381 ${CODECS}
382 ${CODEC_FAMILIES}
383 static_msvcrt
384 mem_tracker
385 spatial_resampling
386 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200387 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200388 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400389 shared
James Zern495b2412011-07-25 15:40:36 -0700390 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400391 small
Fritz Koenig647df002010-11-04 16:03:36 -0700392 postproc_visualizer
James Berrya0769f72012-05-02 17:25:58 -0400393 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700394 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700395 libyuv
Joshua Litta782d632013-11-15 12:29:26 -0800396 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700397 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400398 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100399 temporal_denoising
Marcoc7d26cc2014-11-12 17:34:54 -0800400 vp9_temporal_denoising
Yaowu Xu0a2b25d2014-07-29 13:40:55 -0700401 coefficient_range_checking
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700402 vp9_highbitdepth
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700403 experimental
John Koleszar0ea50ce2010-05-18 11:58:33 -0400404"
405
406process_cmdline() {
407 for opt do
408 optval="${opt#*=}"
409 case "$opt" in
James Zern42ab4012013-08-21 18:11:45 -0700410 --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400411 --enable-?*|--disable-?*)
412 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
413 if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
414 if enabled experimental; then
James Zernccb6bdc2013-08-21 19:00:08 -0700415 ${action}_feature $option
John Koleszar0952acb2010-06-01 11:14:25 -0400416 else
417 log_echo "Ignoring $opt -- not in experimental mode."
418 fi
419 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700420 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400421 fi
422 ;;
James Berrya0769f72012-05-02 17:25:58 -0400423 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700424 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400425 esac
426 done
427}
428
429post_process_cmdline() {
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900430 c=""
John Koleszar0ea50ce2010-05-18 11:58:33 -0400431
432 # If the codec family is disabled, disable all components of that family.
433 # If the codec family is enabled, enable all components of that family.
434 log_echo "Configuring selected codecs"
435 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700436 disabled ${c%%_*} && disable_feature ${c}
437 enabled ${c%%_*} && enable_feature ${c}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400438 done
439
440 # Enable all detected codecs, if they haven't been disabled
441 for c in ${CODECS}; do soft_enable $c; done
442
443 # Enable the codec family if any component of that family is enabled
444 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700445 enabled $c && enable_feature ${c%_*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400446 done
447
448 # Set the {en,de}coders variable if any algorithm in that class is enabled
449 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700450 enabled ${c} && enable_feature ${c##*_}s
John Koleszar0ea50ce2010-05-18 11:58:33 -0400451 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400452}
453
454
455process_targets() {
456 enabled child || write_common_config_banner
457 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
458
John Koleszar0ea50ce2010-05-18 11:58:33 -0400459 # For fat binaries, call configure recursively to configure for each
460 # binary architecture to be included.
461 if enabled universal; then
462 # Call configure (ourselves) for each subarchitecture
463 for arch in $fat_bin_archs; do
464 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
465 done
466 fi
467
468 # The write_common_config (config.mk) logic is deferred until after the
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600469 # recursive calls to configure complete, because we want our universal
John Koleszar0ea50ce2010-05-18 11:58:33 -0400470 # targets to be executed last.
471 write_common_config_targets
472 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
473
474 # Calculate the default distribution name, based on the enabled features
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900475 cf=""
476 DIST_DIR=vpx
John Koleszar0ea50ce2010-05-18 11:58:33 -0400477 for cf in $CODEC_FAMILIES; do
478 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
479 DIST_DIR="${DIST_DIR}-${cf}"
480 elif enabled ${cf}_encoder; then
481 DIST_DIR="${DIST_DIR}-${cf}cx"
482 elif enabled ${cf}_decoder; then
483 DIST_DIR="${DIST_DIR}-${cf}dx"
484 fi
485 done
486 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
487 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
Jim Bankoski79401542013-09-04 10:02:08 -0700488 ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400489 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400490 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
491 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
492 case "${tgt_os}" in
493 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
494 DIST_DIR="${DIST_DIR}-${tgt_cc}"
495 ;;
496 esac
497 if [ -f "${source_path}/build/make/version.sh" ]; then
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900498 ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
John Koleszar0ea50ce2010-05-18 11:58:33 -0400499 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700500 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400501 ver=${ver%%-*}
502 VERSION_PATCH=${ver##*.}
503 ver=${ver%.*}
504 VERSION_MINOR=${ver##*.}
505 ver=${ver#v}
506 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400507 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400508 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700509
510PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400511ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400512DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400513else
John Koleszar670af3a2010-05-26 15:57:42 -0400514DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400515endif
John Koleszar670af3a2010-05-26 15:57:42 -0400516LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400517
Ralph Giles53e99872011-03-28 11:36:53 -0700518VERSION_STRING=${VERSION_STRING}
519
John Koleszar7aa97a32010-06-03 10:29:04 -0400520VERSION_MAJOR=${VERSION_MAJOR}
521VERSION_MINOR=${VERSION_MINOR}
522VERSION_PATCH=${VERSION_PATCH}
523
John Koleszar23d68a52010-06-22 09:53:23 -0400524CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400525EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400526 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
527
528 #
529 # Write makefiles for all enabled targets
530 #
531 for tgt in libs examples docs solution; do
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900532 tgt_fn="$tgt-$toolchain.mk"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400533
534 if enabled $tgt; then
535 echo "Creating makefiles for ${toolchain} ${tgt}"
536 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
537 #write_${tgt}_config
538 fi
539 done
540
541}
542
543process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400544 if enabled shared; then
545 # Can only build shared libs on a subset of platforms. Doing this check
546 # here rather than at option parse time because the target auto-detect
547 # magic happens after the command line has been parsed.
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400548 if ! enabled linux; then
549 if enabled gnu; then
550 echo "--enable-shared is only supported on ELF; assuming this is OK"
551 else
552 die "--enable-shared only supported on ELF for now"
553 fi
554 fi
John Koleszar7aa97a32010-06-03 10:29:04 -0400555 fi
John Koleszard9847632012-12-10 12:07:59 -0800556 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400557 echo "Bypassing toolchain for environment detection."
James Zern42ab4012013-08-21 18:11:45 -0700558 enable_feature external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400559 check_header() {
560 log fake_check_header "$@"
561 header=$1
562 shift
563 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
James Zern42ab4012013-08-21 18:11:45 -0700564 disable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800565 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400566 case $header in
567 stdio.h)
568 true;
569 ;;
570 *)
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900571 result=false
John Koleszar0ea50ce2010-05-18 11:58:33 -0400572 for d in "$@"; do
573 [ -f "${d##-I}/$header" ] && result=true && break
574 done
575 ${result:-true}
James Zern42ab4012013-08-21 18:11:45 -0700576 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800577
578 # Specialize windows and POSIX environments.
579 case $toolchain in
580 *-win*-*)
581 case $header-$toolchain in
582 stdint*-gcc) true;;
583 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700584 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800585 ;;
586 *)
587 case $header in
588 stdint.h) true;;
589 pthread.h) true;;
590 sys/mman.h) true;;
591 unistd.h) true;;
592 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700593 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800594 esac
595 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400596 }
597 check_ld() {
598 true
599 }
600 fi
601 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
602 check_ld <<EOF || die "Toolchain is unable to link executables"
603int main(void) {return 0;}
604EOF
605 # check system headers
606 check_header stdint.h
607 check_header pthread.h
608 check_header sys/mman.h
John Koleszard9847632012-12-10 12:07:59 -0800609 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400610
James Zern42ab4012013-08-21 18:11:45 -0700611 check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400612}
613
614process_toolchain() {
615 process_common_toolchain
616
617 # Handle universal binaries for this architecture
618 case $toolchain in
619 universal-darwin*)
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900620 darwin_ver=${tgt_os##darwin}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400621
Johann101c2bd2012-04-27 11:40:04 -0700622 # Snow Leopard (10.6/darwin10) dropped support for PPC
623 # Include PPC support for all prior versions
624 if [ $darwin_ver -lt 10 ]; then
625 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
626 fi
627
628 # Tiger (10.4/darwin8) brought support for x86
629 if [ $darwin_ver -ge 8 ]; then
630 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
631 fi
632
633 # Leopard (10.5/darwin9) brought 64 bit support
634 if [ $darwin_ver -ge 9 ]; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400635 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
636 fi
637 ;;
638 esac
639
640
641 # Enable some useful compiler flags
642 if enabled gcc; then
643 enabled werror && check_add_cflags -Werror
644 check_add_cflags -Wall
645 check_add_cflags -Wdeclaration-after-statement
646 check_add_cflags -Wdisabled-optimization
647 check_add_cflags -Wpointer-arith
648 check_add_cflags -Wtype-limits
649 check_add_cflags -Wcast-qual
Daniel Kang2f963912012-08-13 14:18:09 -0700650 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300651 check_add_cflags -Wimplicit-function-declaration
652 check_add_cflags -Wuninitialized
653 check_add_cflags -Wunused-variable
James Zerndfa2fb52013-05-03 14:00:33 -0700654 case ${CC} in
Johann8b47e1c2013-10-28 15:44:41 -0700655 *clang*)
656 # libvpx and/or clang have issues with aliasing:
657 # https://code.google.com/p/webm/issues/detail?id=603
658 # work around them until they are fixed
659 check_add_cflags -fno-strict-aliasing
660 ;;
James Zerndfa2fb52013-05-03 14:00:33 -0700661 *) check_add_cflags -Wunused-but-set-variable ;;
662 esac
John Koleszarb601eb82011-02-04 11:51:21 -0500663 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400664 fi
665
666 if enabled icc; then
667 enabled werror && check_add_cflags -Werror
668 check_add_cflags -Wall
669 check_add_cflags -Wpointer-arith
670
671 # ICC has a number of floating point optimizations that we disable
672 # in favor of deterministic output WRT to other compilers
673 add_cflags -fp-model precise
674 fi
675
676 # Enable extra, harmless warnings. These might provide additional insight
677 # to what the compiler is doing and why, but in general, but they shouldn't
678 # be treated as fatal, even if we're treating warnings as errors.
679 GCC_EXTRA_WARNINGS="
680 -Wdisabled-optimization
681 -Winline
682 "
683 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
684 RVCT_EXTRA_WARNINGS="
685 --remarks
686 "
687 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
688 if enabled extra_warnings; then
689 for w in ${EXTRA_WARNINGS}; do
690 check_add_cflags ${w}
691 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
692 done
693 fi
694
695 # ccache only really works on gcc toolchains
696 enabled gcc || soft_disable ccache
697 if enabled mips; then
James Zern42ab4012013-08-21 18:11:45 -0700698 enable_feature dequant_tokens
699 enable_feature dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400700 fi
701
Yaowu Xu132ef422013-09-06 15:05:05 -0700702 if enabled internal_stats; then
703 enable_feature vp9_postproc
704 fi
705
John Koleszar0ea50ce2010-05-18 11:58:33 -0400706 # Enable the postbuild target if building for visual studio.
707 case "$tgt_cc" in
James Zern42ab4012013-08-21 18:11:45 -0700708 vs*) enable_feature msvs
709 enable_feature solution
John Koleszar0ea50ce2010-05-18 11:58:33 -0400710 vs_version=${tgt_cc##vs}
Martin Storsjobd91beb2013-05-17 00:57:57 +0300711 case $vs_version in
712 [789])
713 VCPROJ_SFX=vcproj
714 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
715 ;;
Yaowu Xua638bdf2013-11-13 11:36:32 -0800716 10|11|12)
Martin Storsjobd91beb2013-05-17 00:57:57 +0300717 VCPROJ_SFX=vcxproj
718 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
James Zern37c60d82014-03-08 12:52:33 -0800719 enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300720 ;;
721 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400722 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800723 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400724 ;;
725 esac
726
727 # Other toolchain specific defaults
728 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700729
Fritz Koenig692b1082010-11-10 14:51:49 -0800730 if enabled postproc_visualizer; then
731 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
732 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700733
Johannb46d58a2013-01-18 11:31:22 -0800734 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700735 case "$toolchain" in
736 *-vs*)
737 soft_enable unit_tests
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700738 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700739 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700740 ;;
741 *-android-*)
Vignesh Venkatasubramanian4721f9e2014-04-29 00:03:01 -0700742 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700743 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700744 # GTestLog must be modified to use Android logging utilities.
745 ;;
Johanna1d929e2012-12-13 11:35:59 -0800746 *-darwin-*)
747 # iOS/ARM builds do not work with gtest. This does not match
748 # x86 targets.
749 ;;
Tom Finegan4e6c5552014-06-04 18:57:25 -0700750 *-iphonesimulator-*)
751 soft_enable webm_io
752 soft_enable libyuv
753 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700754 *-win*)
755 # Some mingw toolchains don't have pthread available by default.
756 # Treat these more like visual studio where threading in gtest
757 # would be disabled for the same reason.
758 check_cxx "$@" <<EOF && soft_enable unit_tests
759int z;
760EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700761 check_cxx "$@" <<EOF && soft_enable webm_io
762int z;
763EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700764 check_cxx "$@" <<EOF && soft_enable libyuv
765int z;
766EOF
James Zerne4d2c252013-06-26 18:35:11 -0700767 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700768 *)
James Zernf2dc3822013-06-20 12:49:15 -0700769 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700770int z;
771EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700772 check_cxx "$@" <<EOF && soft_enable webm_io
773int z;
774EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700775 check_cxx "$@" <<EOF && soft_enable libyuv
776int z;
777EOF
Johannd6e80de2012-06-12 08:58:11 -0700778 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700779 esac
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700780 # libwebm needs to be linked with C++ standard library
781 enabled webm_io && LD=${CXX}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400782}
783
784
785##
786## END APPLICATION SPECIFIC CONFIGURATION
787##
788CONFIGURE_ARGS="$@"
789process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400790print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
791cat <<EOF >> ${BUILD_PFX}vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400792static const char* const cfg = "$CONFIGURE_ARGS";
793const char *vpx_codec_build_config(void) {return cfg;}
794EOF