blob: eedbf7fd7f6623531cea586476b2e07168f39ece [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_codec_srcs} in/exclude codec library source code
35 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040036 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
Yaowu Xu14e37cf2015-01-02 12:36:57 -080037 ${toggle_vp9_highbitdepth} use VP9 high bit depth (10/12) profiles
Yaowu Xu03a021a2015-12-02 17:00:26 -080038 ${toggle_better_hw_compatibility}
39 enable encoder to produce streams with better
40 hardware decoder compatibility
John Koleszar0ea50ce2010-05-18 11:58:33 -040041 ${toggle_vp8} VP8 codec support
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070042 ${toggle_vp9} VP9 codec support
Jingning Han3ee6db62015-08-05 19:00:31 -070043 ${toggle_vp10} VP10 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070044 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040045 ${toggle_postproc} postprocessing
Jim Bankoski79401542013-09-04 10:02:08 -070046 ${toggle_vp9_postproc} vp9 specific postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040047 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040048 ${toggle_spatial_resampling} spatial sampling (scaling) support
49 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020050 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020051 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
Yaowu Xu0a2b25d2014-07-29 13:40:55 -070052 ${toggle_coefficient_range_checking}
53 enable decoder to check if intermediate
54 transform coefficients are in valid range
John Koleszar0ea50ce2010-05-18 11:58:33 -040055 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040056 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070057 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040058 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070059 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040060 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010061 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
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"
Martin Storsjobabd3082016-03-03 11:53:49 +0200106all_platforms="${all_platforms} arm64-linux-gcc"
Fritz Koenigd8305732012-01-06 11:50:05 -0800107all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -0400108all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
109all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
110all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200111all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300112all_platforms="${all_platforms} armv7-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800113all_platforms="${all_platforms} armv7-win32-vs12"
Ghislain MARY3067c342015-07-28 16:37:09 +0200114all_platforms="${all_platforms} armv7-win32-vs14"
Tom Finegancd2088b2014-06-10 18:52:58 -0700115all_platforms="${all_platforms} armv7s-darwin-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400116all_platforms="${all_platforms} mips32-linux-gcc"
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200117all_platforms="${all_platforms} mips64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400118all_platforms="${all_platforms} sparc-solaris-gcc"
Andoni Morales Alastruey652589d2013-01-14 12:25:52 +0100119all_platforms="${all_platforms} x86-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400120all_platforms="${all_platforms} x86-darwin8-gcc"
121all_platforms="${all_platforms} x86-darwin8-icc"
122all_platforms="${all_platforms} x86-darwin9-gcc"
123all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700124all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700125all_platforms="${all_platforms} x86-darwin11-gcc"
126all_platforms="${all_platforms} x86-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200127all_platforms="${all_platforms} x86-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500128all_platforms="${all_platforms} x86-darwin14-gcc"
Alex Converse080ad912015-11-02 14:05:37 -0800129all_platforms="${all_platforms} x86-darwin15-gcc"
Tom Finegan4e6c5552014-06-04 18:57:25 -0700130all_platforms="${all_platforms} x86-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400131all_platforms="${all_platforms} x86-linux-gcc"
132all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900133all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400134all_platforms="${all_platforms} x86-solaris-gcc"
135all_platforms="${all_platforms} x86-win32-gcc"
136all_platforms="${all_platforms} x86-win32-vs7"
137all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400138all_platforms="${all_platforms} x86-win32-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300139all_platforms="${all_platforms} x86-win32-vs10"
140all_platforms="${all_platforms} x86-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800141all_platforms="${all_platforms} x86-win32-vs12"
Ghislain MARY3067c342015-07-28 16:37:09 +0200142all_platforms="${all_platforms} x86-win32-vs14"
James Zern5da87e82015-07-24 14:24:20 -0700143all_platforms="${all_platforms} x86_64-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400144all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500145all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700146all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700147all_platforms="${all_platforms} x86_64-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200148all_platforms="${all_platforms} x86_64-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500149all_platforms="${all_platforms} x86_64-darwin14-gcc"
Alex Converse080ad912015-11-02 14:05:37 -0800150all_platforms="${all_platforms} x86_64-darwin15-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"
Ghislain MARY3067c342015-07-28 16:37:09 +0200161all_platforms="${all_platforms} x86_64-win64-vs14"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400162all_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
James Zern95735c32014-04-23 14:51:45 -0700170 [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400171done
172
James Zern4b418002014-03-18 18:19:16 -0700173if ! perl --version >/dev/null; then
174 die "Perl is required to build"
175fi
James Zern14be7ba2014-02-28 12:24:46 -0800176
James Zern9402e252014-03-05 14:13:01 -0800177
James Zern95735c32014-04-23 14:51:45 -0700178if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
James Zern9402e252014-03-05 14:13:01 -0800179 # test to see if source_path already configured
James Zern95735c32014-04-23 14:51:45 -0700180 if [ -f "${source_path}/vpx_config.h" ]; then
James Zern9402e252014-03-05 14:13:01 -0800181 die "source directory already configured; run 'make distclean' there first"
182 fi
183fi
184
John Koleszar0ea50ce2010-05-18 11:58:33 -0400185# 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
James Zern42ab4012013-08-21 18:11:45 -0700193 [ $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
John Koleszar0ea50ce2010-05-18 11:58:33 -0400196fi
197
Johann7875e1d2015-05-22 06:52:59 -0700198# disable codecs when their source directory does not exist
199[ -d "${source_path}/vp8" ] || disable_feature vp8
200[ -d "${source_path}/vp9" ] || disable_feature vp9
Jingning Han3ee6db62015-08-05 19:00:31 -0700201[ -d "${source_path}/vp10" ] || disable_feature vp10
Johann7875e1d2015-05-22 06:52:59 -0700202
Jingning Han407968c2015-08-15 16:04:11 -0700203# disable vp10 codec by default
204disable_feature vp10
205
John Koleszaree8bcb12010-05-24 10:16:44 -0400206# 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.
James Zernf8630c72014-05-10 11:15:11 -0700209enabled doxygen && enable_feature install_docs
James Zern42ab4012013-08-21 18:11:45 -0700210enable_feature install_bins
211enable_feature install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400212
James Zern42ab4012013-08-21 18:11:45 -0700213enable_feature static
214enable_feature optimizations
James Zernaaccf652015-02-05 19:31:38 -0800215enable_feature dependency_tracking
James Zern42ab4012013-08-21 18:11:45 -0700216enable_feature spatial_resampling
217enable_feature multithread
218enable_feature os_support
219enable_feature temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400220
Johann7875e1d2015-05-22 06:52:59 -0700221CODECS="
222 vp8_encoder
223 vp8_decoder
224 vp9_encoder
225 vp9_decoder
Jingning Han3ee6db62015-08-05 19:00:31 -0700226 vp10_encoder
227 vp10_decoder
Johann7875e1d2015-05-22 06:52:59 -0700228"
229CODEC_FAMILIES="
230 vp8
231 vp9
Jingning Han3ee6db62015-08-05 19:00:31 -0700232 vp10
Johann7875e1d2015-05-22 06:52:59 -0700233"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400234
235ARCH_LIST="
236 arm
237 mips
238 x86
239 x86_64
John Koleszar0ea50ce2010-05-18 11:58:33 -0400240"
James Zern6e6dbbc2015-11-17 16:14:05 -0800241ARCH_EXT_LIST_X86="
242 mmx
243 sse
244 sse2
245 sse3
246 ssse3
247 sse4_1
248 avx
249 avx2
250"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400251ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800252 edsp
253 media
254 neon
Johannce239312014-05-07 11:01:31 -0700255 neon_asm
John Koleszar0ea50ce2010-05-18 11:58:33 -0400256
257 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700258 dspr2
Parag Salasakar84ec68d2015-03-16 12:36:59 +0530259 msa
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200260 mips64
261
James Zern6e6dbbc2015-11-17 16:14:05 -0800262 ${ARCH_EXT_LIST_X86}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400263"
264HAVE_LIST="
265 ${ARCH_EXT_LIST}
266 vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400267 pthread_h
Attila Nagy297b2762011-03-25 12:53:03 +0200268 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400269"
John Koleszar0952acb2010-06-01 11:14:25 -0400270EXPERIMENT_LIST="
James Zernf12ebfc2014-05-14 19:45:20 -0700271 spatial_svc
Pengchong Jinaaabbd62014-06-30 09:52:27 -0700272 fp_mb_stats
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700273 emulate_hardware
Jingning Hancffcfdb2015-10-06 14:23:12 -0700274 var_tx
Jingning Hanfe8ecc82015-11-19 11:40:56 -0800275 ref_mv
hui sub3cc3a02015-08-24 14:37:54 -0700276 ext_tx
Ronald S. Bultje1589ecb2015-09-08 14:03:36 -0400277 misc_fixes
Yaowu Xu5a27b3b2015-10-22 12:18:52 -0700278 ext_intra
Debargha Mukherjee73e06f32015-11-02 09:58:58 -0800279 ext_inter
280 ext_interp
281 ext_refs
Sarah Parker091f0802016-03-23 15:24:44 -0700282 global_motion
Debargha Mukherjee5bbacd92015-11-13 11:32:17 -0800283 supertx
Alex Converse9ffcb462015-12-16 11:16:32 -0800284 ans
Debargha Mukherjee6a5a08e2016-01-15 12:55:03 -0800285 loop_restoration
286 ext_partition
Julia Robson8bc8f272016-03-18 15:22:42 +0000287 ext_partition_types
Debargha Mukherjee86088512016-03-08 07:17:29 -0800288 ext_tile
Yue Chene25ccff2016-02-10 15:53:08 -0800289 obmc
hui su08d7f442016-03-15 11:44:01 -0700290 entropy
John Koleszar0952acb2010-06-01 11:14:25 -0400291"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400292CONFIG_LIST="
James Zernaaccf652015-02-05 19:31:38 -0800293 dependency_tracking
John Koleszar0ea50ce2010-05-18 11:58:33 -0400294 external_build
295 install_docs
296 install_bins
297 install_libs
298 install_srcs
Jim Bankoskia93b1152013-08-05 17:28:52 -0700299 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400300 debug
301 gprof
302 gcov
303 rvct
304 gcc
305 msvs
306 pic
307 big_endian
308
309 codec_srcs
310 debug_libs
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
Yaowu Xu03a021a2015-12-02 17:00:26 -0800343 better_hw_compatibility
John Koleszar0952acb2010-06-01 11:14:25 -0400344 experimental
Jim Bankoski943e4322014-07-17 06:31:50 -0700345 size_limit
John Koleszar0952acb2010-06-01 11:14:25 -0400346 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400347"
348CMDLINE_SELECT="
James Zernaaccf652015-02-05 19:31:38 -0800349 dependency_tracking
John Koleszard9847632012-12-10 12:07:59 -0800350 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400351 extra_warnings
352 werror
353 install_docs
354 install_bins
355 install_libs
356 install_srcs
357 debug
358 gprof
359 gcov
360 pic
Jim Bankoskic9126e02013-08-06 07:31:54 -0700361 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400362 optimizations
363 ccache
364 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300365 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400366
367 libs
368 examples
Johannec658122012-10-10 09:16:37 -0700369 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400370 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200371 as
Jim Bankoski943e4322014-07-17 06:31:50 -0700372 size_limit
John Koleszar0ea50ce2010-05-18 11:58:33 -0400373 codec_srcs
374 debug_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400375
376 dequant_tokens
377 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400378 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700379 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400380 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700381 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400382 ${CODECS}
383 ${CODEC_FAMILIES}
384 static_msvcrt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400385 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
Yaowu Xu03a021a2015-12-02 17:00:26 -0800402 better_hw_compatibility
Deb Mukherjee5acfafb2014-08-26 12:35:15 -0700403 vp9_highbitdepth
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700404 experimental
John Koleszar0ea50ce2010-05-18 11:58:33 -0400405"
406
407process_cmdline() {
408 for opt do
409 optval="${opt#*=}"
410 case "$opt" in
James Zern42ab4012013-08-21 18:11:45 -0700411 --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400412 --enable-?*|--disable-?*)
413 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
414 if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
415 if enabled experimental; then
James Zernccb6bdc2013-08-21 19:00:08 -0700416 ${action}_feature $option
John Koleszar0952acb2010-06-01 11:14:25 -0400417 else
418 log_echo "Ignoring $opt -- not in experimental mode."
419 fi
420 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700421 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400422 fi
423 ;;
James Berrya0769f72012-05-02 17:25:58 -0400424 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700425 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400426 esac
427 done
428}
429
430post_process_cmdline() {
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900431 c=""
John Koleszar0ea50ce2010-05-18 11:58:33 -0400432
433 # If the codec family is disabled, disable all components of that family.
434 # If the codec family is enabled, enable all components of that family.
435 log_echo "Configuring selected codecs"
436 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700437 disabled ${c%%_*} && disable_feature ${c}
438 enabled ${c%%_*} && enable_feature ${c}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400439 done
440
441 # Enable all detected codecs, if they haven't been disabled
442 for c in ${CODECS}; do soft_enable $c; done
443
444 # Enable the codec family if any component of that family is enabled
445 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700446 enabled $c && enable_feature ${c%_*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400447 done
448
449 # Set the {en,de}coders variable if any algorithm in that class is enabled
450 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700451 enabled ${c} && enable_feature ${c##*_}s
John Koleszar0ea50ce2010-05-18 11:58:33 -0400452 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400453}
454
455
456process_targets() {
457 enabled child || write_common_config_banner
Tom Finegan3d7063d2015-05-12 15:33:40 -0700458 write_common_target_config_h ${BUILD_PFX}vpx_config.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400459 write_common_config_targets
John Koleszar0ea50ce2010-05-18 11:58:33 -0400460
461 # Calculate the default distribution name, based on the enabled features
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900462 cf=""
463 DIST_DIR=vpx
John Koleszar0ea50ce2010-05-18 11:58:33 -0400464 for cf in $CODEC_FAMILIES; do
465 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
466 DIST_DIR="${DIST_DIR}-${cf}"
467 elif enabled ${cf}_encoder; then
468 DIST_DIR="${DIST_DIR}-${cf}cx"
469 elif enabled ${cf}_decoder; then
470 DIST_DIR="${DIST_DIR}-${cf}dx"
471 fi
472 done
473 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
474 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
Jim Bankoski79401542013-09-04 10:02:08 -0700475 ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400476 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400477 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
478 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
479 case "${tgt_os}" in
480 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
481 DIST_DIR="${DIST_DIR}-${tgt_cc}"
482 ;;
483 esac
484 if [ -f "${source_path}/build/make/version.sh" ]; then
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900485 ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
John Koleszar0ea50ce2010-05-18 11:58:33 -0400486 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700487 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400488 ver=${ver%%-*}
489 VERSION_PATCH=${ver##*.}
490 ver=${ver%.*}
491 VERSION_MINOR=${ver##*.}
492 ver=${ver#v}
493 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400494 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400495 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700496
497PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400498ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400499DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400500else
John Koleszar670af3a2010-05-26 15:57:42 -0400501DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400502endif
John Koleszar670af3a2010-05-26 15:57:42 -0400503LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400504
Ralph Giles53e99872011-03-28 11:36:53 -0700505VERSION_STRING=${VERSION_STRING}
506
John Koleszar7aa97a32010-06-03 10:29:04 -0400507VERSION_MAJOR=${VERSION_MAJOR}
508VERSION_MINOR=${VERSION_MINOR}
509VERSION_PATCH=${VERSION_PATCH}
510
John Koleszar23d68a52010-06-22 09:53:23 -0400511CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400512EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400513 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
514
515 #
516 # Write makefiles for all enabled targets
517 #
518 for tgt in libs examples docs solution; do
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900519 tgt_fn="$tgt-$toolchain.mk"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400520
521 if enabled $tgt; then
522 echo "Creating makefiles for ${toolchain} ${tgt}"
523 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
524 #write_${tgt}_config
525 fi
526 done
527
528}
529
530process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400531 if enabled shared; then
532 # Can only build shared libs on a subset of platforms. Doing this check
533 # here rather than at option parse time because the target auto-detect
534 # magic happens after the command line has been parsed.
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900535 if ! enabled linux && ! enabled os2; then
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400536 if enabled gnu; then
537 echo "--enable-shared is only supported on ELF; assuming this is OK"
538 else
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900539 die "--enable-shared only supported on ELF and OS/2 for now"
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400540 fi
541 fi
John Koleszar7aa97a32010-06-03 10:29:04 -0400542 fi
John Koleszard9847632012-12-10 12:07:59 -0800543 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400544 echo "Bypassing toolchain for environment detection."
James Zern42ab4012013-08-21 18:11:45 -0700545 enable_feature external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400546 check_header() {
547 log fake_check_header "$@"
548 header=$1
549 shift
550 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
James Zern42ab4012013-08-21 18:11:45 -0700551 disable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800552 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400553 case $header in
554 stdio.h)
555 true;
556 ;;
557 *)
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900558 result=false
John Koleszar0ea50ce2010-05-18 11:58:33 -0400559 for d in "$@"; do
560 [ -f "${d##-I}/$header" ] && result=true && break
561 done
562 ${result:-true}
James Zern42ab4012013-08-21 18:11:45 -0700563 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800564
565 # Specialize windows and POSIX environments.
566 case $toolchain in
567 *-win*-*)
Johann3c921442015-12-17 16:51:59 -0800568 # Don't check for any headers in Windows builds.
569 false
570 ;;
John Koleszard9847632012-12-10 12:07:59 -0800571 *)
572 case $header in
John Koleszard9847632012-12-10 12:07:59 -0800573 pthread.h) true;;
John Koleszard9847632012-12-10 12:07:59 -0800574 unistd.h) true;;
575 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700576 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800577 esac
578 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400579 }
580 check_ld() {
581 true
582 }
583 fi
584 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
585 check_ld <<EOF || die "Toolchain is unable to link executables"
586int main(void) {return 0;}
587EOF
588 # check system headers
John Koleszar0ea50ce2010-05-18 11:58:33 -0400589 check_header pthread.h
John Koleszard9847632012-12-10 12:07:59 -0800590 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400591
James Zern42ab4012013-08-21 18:11:45 -0700592 check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400593}
594
595process_toolchain() {
596 process_common_toolchain
597
John Koleszar0ea50ce2010-05-18 11:58:33 -0400598 # Enable some useful compiler flags
599 if enabled gcc; then
600 enabled werror && check_add_cflags -Werror
601 check_add_cflags -Wall
602 check_add_cflags -Wdeclaration-after-statement
603 check_add_cflags -Wdisabled-optimization
604 check_add_cflags -Wpointer-arith
605 check_add_cflags -Wtype-limits
606 check_add_cflags -Wcast-qual
Daniel Kang2f963912012-08-13 14:18:09 -0700607 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300608 check_add_cflags -Wimplicit-function-declaration
609 check_add_cflags -Wuninitialized
610 check_add_cflags -Wunused-variable
James Zerndfa2fb52013-05-03 14:00:33 -0700611 case ${CC} in
Johann8b47e1c2013-10-28 15:44:41 -0700612 *clang*)
613 # libvpx and/or clang have issues with aliasing:
614 # https://code.google.com/p/webm/issues/detail?id=603
615 # work around them until they are fixed
616 check_add_cflags -fno-strict-aliasing
617 ;;
James Zerndfa2fb52013-05-03 14:00:33 -0700618 *) check_add_cflags -Wunused-but-set-variable ;;
619 esac
Yaowu Xu4d90ae42016-02-05 09:35:34 -0800620 if enabled mips || [ -z "${INLINE}" ]; then
James Zern771d2762016-02-01 20:52:16 -0800621 enabled extra_warnings || check_add_cflags -Wno-unused-function
622 else
623 check_add_cflags -Wunused-function
624 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400625 fi
626
627 if enabled icc; then
628 enabled werror && check_add_cflags -Werror
629 check_add_cflags -Wall
630 check_add_cflags -Wpointer-arith
631
632 # ICC has a number of floating point optimizations that we disable
633 # in favor of deterministic output WRT to other compilers
634 add_cflags -fp-model precise
635 fi
636
637 # Enable extra, harmless warnings. These might provide additional insight
638 # to what the compiler is doing and why, but in general, but they shouldn't
639 # be treated as fatal, even if we're treating warnings as errors.
640 GCC_EXTRA_WARNINGS="
641 -Wdisabled-optimization
642 -Winline
643 "
644 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
645 RVCT_EXTRA_WARNINGS="
646 --remarks
647 "
648 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
649 if enabled extra_warnings; then
650 for w in ${EXTRA_WARNINGS}; do
651 check_add_cflags ${w}
652 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
653 done
654 fi
655
656 # ccache only really works on gcc toolchains
657 enabled gcc || soft_disable ccache
658 if enabled mips; then
James Zern42ab4012013-08-21 18:11:45 -0700659 enable_feature dequant_tokens
660 enable_feature dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400661 fi
662
Yaowu Xu132ef422013-09-06 15:05:05 -0700663 if enabled internal_stats; then
664 enable_feature vp9_postproc
665 fi
666
John Koleszar0ea50ce2010-05-18 11:58:33 -0400667 # Enable the postbuild target if building for visual studio.
668 case "$tgt_cc" in
James Zern42ab4012013-08-21 18:11:45 -0700669 vs*) enable_feature msvs
670 enable_feature solution
John Koleszar0ea50ce2010-05-18 11:58:33 -0400671 vs_version=${tgt_cc##vs}
Martin Storsjobd91beb2013-05-17 00:57:57 +0300672 case $vs_version in
673 [789])
674 VCPROJ_SFX=vcproj
675 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
676 ;;
Ghislain MARY3067c342015-07-28 16:37:09 +0200677 10|11|12|14)
Martin Storsjobd91beb2013-05-17 00:57:57 +0300678 VCPROJ_SFX=vcxproj
679 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
James Zern37c60d82014-03-08 12:52:33 -0800680 enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300681 ;;
682 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400683 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800684 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400685 ;;
686 esac
687
688 # Other toolchain specific defaults
Tom Finegan3d7063d2015-05-12 15:33:40 -0700689 case $toolchain in x86*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700690
Fritz Koenig692b1082010-11-10 14:51:49 -0800691 if enabled postproc_visualizer; then
692 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
693 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700694
Johannb46d58a2013-01-18 11:31:22 -0800695 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700696 case "$toolchain" in
697 *-vs*)
698 soft_enable unit_tests
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700699 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700700 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700701 ;;
702 *-android-*)
Vignesh Venkatasubramanian4721f9e2014-04-29 00:03:01 -0700703 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700704 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700705 # GTestLog must be modified to use Android logging utilities.
706 ;;
Johanna1d929e2012-12-13 11:35:59 -0800707 *-darwin-*)
708 # iOS/ARM builds do not work with gtest. This does not match
709 # x86 targets.
710 ;;
Tom Finegan4e6c5552014-06-04 18:57:25 -0700711 *-iphonesimulator-*)
712 soft_enable webm_io
713 soft_enable libyuv
714 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700715 *-win*)
716 # Some mingw toolchains don't have pthread available by default.
717 # Treat these more like visual studio where threading in gtest
718 # would be disabled for the same reason.
719 check_cxx "$@" <<EOF && soft_enable unit_tests
720int z;
721EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700722 check_cxx "$@" <<EOF && soft_enable webm_io
723int z;
724EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700725 check_cxx "$@" <<EOF && soft_enable libyuv
726int z;
727EOF
James Zerne4d2c252013-06-26 18:35:11 -0700728 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700729 *)
James Zernf2dc3822013-06-20 12:49:15 -0700730 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700731int z;
732EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700733 check_cxx "$@" <<EOF && soft_enable webm_io
734int z;
735EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700736 check_cxx "$@" <<EOF && soft_enable libyuv
737int z;
738EOF
Johannd6e80de2012-06-12 08:58:11 -0700739 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700740 esac
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700741 # libwebm needs to be linked with C++ standard library
742 enabled webm_io && LD=${CXX}
James Zern43a34552015-08-26 20:28:26 -0700743
744 # append any user defined extra cflags
745 if [ -n "${extra_cflags}" ] ; then
746 check_add_cflags ${extra_cflags} || \
747 die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler"
748 fi
Yaowu Xu7c514e22015-09-28 15:55:46 -0700749 if [ -n "${extra_cxxflags}" ]; then
750 check_add_cxxflags ${extra_cxxflags} || \
751 die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler"
752 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400753}
754
755
756##
757## END APPLICATION SPECIFIC CONFIGURATION
758##
759CONFIGURE_ARGS="$@"
760process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400761print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
762cat <<EOF >> ${BUILD_PFX}vpx_config.c
James Zerndb4afa62015-05-14 19:34:53 -0700763#include "vpx/vpx_codec.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400764static const char* const cfg = "$CONFIGURE_ARGS";
765const char *vpx_codec_build_config(void) {return cfg;}
766EOF