blob: 45d5c12049c9b1ee6ccf4ce1d44d6dc0eea4a6ea [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
John Koleszar0ea50ce2010-05-18 11:58:33 -040027 --libc=PATH path to alternate libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +020028 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
Fritz Koenigd8305732012-01-06 11:50:05 -080029 --sdk-path=PATH path to root of sdk (iOS, android builds only)
John Koleszar0ea50ce2010-05-18 11:58:33 -040030 ${toggle_fast_unaligned} don't use unaligned accesses, even when
31 supported by hardware [auto]
32 ${toggle_codec_srcs} in/exclude codec library source code
33 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040034 ${toggle_md5} support for output of checksum data
35 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
36 ${toggle_vp8} VP8 codec support
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070037 ${toggle_vp9} VP9 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070038 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040039 ${toggle_mem_tracker} track memory usage
John Koleszar0ea50ce2010-05-18 11:58:33 -040040 ${toggle_postproc} postprocessing
Jim Bankoski79401542013-09-04 10:02:08 -070041 ${toggle_vp9_postproc} vp9 specific postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040042 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040043 ${toggle_spatial_resampling} spatial sampling (scaling) support
44 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020045 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020046 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
John Koleszar0ea50ce2010-05-18 11:58:33 -040047 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040048 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070049 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040050 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070051 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040052 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010053 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
John Koleszar0ea50ce2010-05-18 11:58:33 -040054
55Codecs:
56 Codecs can be selectively enabled or disabled individually, or by family:
57 --disable-<codec>
58 is equivalent to:
59 --disable-<codec>-encoder
60 --disable-<codec>-decoder
61
62 Codecs available in this distribution:
63EOF
64#restore editor state '
65
66 local family;
67 local last_family;
68 local c;
69 local str;
70 for c in ${CODECS}; do
71 family=${c%_*}
72 if [ "${family}" != "${last_family}" ]; then
73 [ -z "${str}" ] || echo "${str}"
74 str="$(printf ' %10s:' ${family})"
75 fi
76 str="${str} $(printf '%10s' ${c#*_})"
77 last_family=${family}
78 done
79 echo "${str}"
80 show_help_post
81}
82
83##
84## BEGIN APPLICATION SPECIFIC CONFIGURATION
85##
86
87# all_platforms is a list of all supported target platforms. Maintain
88# alphabetically by architecture, generic-gnu last.
Fritz Koenigd8305732012-01-06 11:50:05 -080089all_platforms="${all_platforms} armv5te-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040090all_platforms="${all_platforms} armv5te-linux-rvct"
91all_platforms="${all_platforms} armv5te-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020092all_platforms="${all_platforms} armv5te-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040093all_platforms="${all_platforms} armv6-darwin-gcc"
94all_platforms="${all_platforms} armv6-linux-rvct"
95all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020096all_platforms="${all_platforms} armv6-none-rvct"
Fritz Koenigd8305732012-01-06 11:50:05 -080097all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -040098all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
99all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
100all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200101all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300102all_platforms="${all_platforms} armv7-win32-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400103all_platforms="${all_platforms} mips32-linux-gcc"
104all_platforms="${all_platforms} ppc32-darwin8-gcc"
105all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400106all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400107all_platforms="${all_platforms} ppc64-darwin8-gcc"
108all_platforms="${all_platforms} ppc64-darwin9-gcc"
109all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400110all_platforms="${all_platforms} sparc-solaris-gcc"
Andoni Morales Alastruey652589d2013-01-14 12:25:52 +0100111all_platforms="${all_platforms} x86-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400112all_platforms="${all_platforms} x86-darwin8-gcc"
113all_platforms="${all_platforms} x86-darwin8-icc"
114all_platforms="${all_platforms} x86-darwin9-gcc"
115all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700116all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700117all_platforms="${all_platforms} x86-darwin11-gcc"
118all_platforms="${all_platforms} x86-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200119all_platforms="${all_platforms} x86-darwin13-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400120all_platforms="${all_platforms} x86-linux-gcc"
121all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900122all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400123all_platforms="${all_platforms} x86-solaris-gcc"
124all_platforms="${all_platforms} x86-win32-gcc"
125all_platforms="${all_platforms} x86-win32-vs7"
126all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400127all_platforms="${all_platforms} x86-win32-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300128all_platforms="${all_platforms} x86-win32-vs10"
129all_platforms="${all_platforms} x86-win32-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400130all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500131all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700132all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700133all_platforms="${all_platforms} x86_64-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200134all_platforms="${all_platforms} x86_64-darwin13-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400135all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400136all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400137all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500138all_platforms="${all_platforms} x86_64-win64-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400139all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400140all_platforms="${all_platforms} x86_64-win64-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300141all_platforms="${all_platforms} x86_64-win64-vs10"
142all_platforms="${all_platforms} x86_64-win64-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400143all_platforms="${all_platforms} universal-darwin8-gcc"
144all_platforms="${all_platforms} universal-darwin9-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700145all_platforms="${all_platforms} universal-darwin10-gcc"
146all_platforms="${all_platforms} universal-darwin11-gcc"
147all_platforms="${all_platforms} universal-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200148all_platforms="${all_platforms} universal-darwin13-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400149all_platforms="${all_platforms} generic-gnu"
150
151# all_targets is a list of all targets that can be configured
152# note that these should be in dependency order for now.
153all_targets="libs examples docs"
154
155# all targets available are enabled, by default.
156for t in ${all_targets}; do
James Zern42ab4012013-08-21 18:11:45 -0700157 [ -f ${source_path}/${t}.mk ] && enable_feature ${t}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400158done
159
160# check installed doxygen version
161doxy_version=$(doxygen --version 2>/dev/null)
162doxy_major=${doxy_version%%.*}
163if [ ${doxy_major:-0} -ge 1 ]; then
164 doxy_version=${doxy_version#*.}
165 doxy_minor=${doxy_version%%.*}
166 doxy_patch=${doxy_version##*.}
167
James Zern42ab4012013-08-21 18:11:45 -0700168 [ $doxy_major -gt 1 ] && enable_feature doxygen
169 [ $doxy_minor -gt 5 ] && enable_feature doxygen
170 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
John Koleszar0ea50ce2010-05-18 11:58:33 -0400171fi
172
John Koleszaree8bcb12010-05-24 10:16:44 -0400173# install everything except the sources, by default. sources will have
174# to be enabled when doing dist builds, since that's no longer a common
175# case.
James Zern42ab4012013-08-21 18:11:45 -0700176enabled doxygen && php -v >/dev/null 2>&1 && enable_feature install_docs
177enable_feature install_bins
178enable_feature install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400179
James Zern42ab4012013-08-21 18:11:45 -0700180enable_feature static
181enable_feature optimizations
182enable_feature fast_unaligned #allow unaligned accesses, if supported by hw
183enable_feature md5
184enable_feature spatial_resampling
185enable_feature multithread
186enable_feature os_support
187enable_feature temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400188
James Zern42ab4012013-08-21 18:11:45 -0700189[ -d ${source_path}/../include ] && enable_feature alt_tree_layout
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800190for d in vp8 vp9; do
James Zern42ab4012013-08-21 18:11:45 -0700191 [ -d ${source_path}/${d} ] && disable_feature alt_tree_layout;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400192done
193
194if ! enabled alt_tree_layout; then
195# development environment
196[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700197[ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400198else
199# customer environment
John Koleszarb7492342010-05-24 11:39:59 -0400200[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
201[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800202[ -f ${source_path}/../include/vpx/vp9cx.h ] && CODECS="${CODECS} vp9_encoder"
203[ -f ${source_path}/../include/vpx/vp9dx.h ] && CODECS="${CODECS} vp9_decoder"
James Zern42ab4012013-08-21 18:11:45 -0700204[ -f ${source_path}/../include/vpx/vp8cx.h ] || disable_feature vp8_encoder
205[ -f ${source_path}/../include/vpx/vp8dx.h ] || disable_feature vp8_decoder
206[ -f ${source_path}/../include/vpx/vp9cx.h ] || disable_feature vp9_encoder
207[ -f ${source_path}/../include/vpx/vp9dx.h ] || disable_feature vp9_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400208
209[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
210fi
211
212CODECS="$(echo ${CODECS} | tr ' ' '\n')"
213CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
214
215ARCH_LIST="
216 arm
217 mips
218 x86
219 x86_64
220 ppc32
221 ppc64
222"
223ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800224 edsp
225 media
226 neon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400227
228 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700229 dspr2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400230
231 mmx
232 sse
233 sse2
234 sse3
235 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400236 sse4_1
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600237 avx
238 avx2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400239
240 altivec
241"
242HAVE_LIST="
243 ${ARCH_EXT_LIST}
244 vpx_ports
245 stdint_h
246 alt_tree_layout
247 pthread_h
248 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200249 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400250"
John Koleszar0952acb2010-06-01 11:14:25 -0400251EXPERIMENT_LIST="
Yaowu Xu9780d582013-03-27 14:58:37 -0700252 oneshotq
Adrian Grangec2876cf2013-04-02 15:08:50 -0700253 multiple_arf
John Koleszar8dd82872013-05-06 11:01:35 -0700254 non420
John Koleszar679e4ab2013-05-15 17:55:08 -0700255 alpha
John Koleszar0952acb2010-06-01 11:14:25 -0400256"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400257CONFIG_LIST="
258 external_build
259 install_docs
260 install_bins
261 install_libs
262 install_srcs
Jim Bankoskia93b1152013-08-05 17:28:52 -0700263 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400264 debug
265 gprof
266 gcov
267 rvct
268 gcc
269 msvs
270 pic
271 big_endian
272
273 codec_srcs
274 debug_libs
275 fast_unaligned
276 mem_manager
277 mem_tracker
278 mem_checks
279 md5
280
281 dequant_tokens
282 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400283 runtime_cpu_detect
284 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700285 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400286 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700287 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400288 ${CODECS}
289 ${CODEC_FAMILIES}
290 encoders
291 decoders
292 static_msvcrt
293 spatial_resampling
294 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200295 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200296 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400297 shared
James Zern495b2412011-07-25 15:40:36 -0700298 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400299 small
Fritz Koenig647df002010-11-04 16:03:36 -0700300 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200301 os_support
James Berrya0769f72012-05-02 17:25:58 -0400302 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400303 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100304 temporal_denoising
John Koleszar0952acb2010-06-01 11:14:25 -0400305 experimental
Dmitry Kovalev26cec5c2013-03-15 18:21:55 -0700306 decrypt
John Koleszar0952acb2010-06-01 11:14:25 -0400307 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400308"
309CMDLINE_SELECT="
John Koleszard9847632012-12-10 12:07:59 -0800310 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400311 extra_warnings
312 werror
313 install_docs
314 install_bins
315 install_libs
316 install_srcs
317 debug
318 gprof
319 gcov
320 pic
Jim Bankoskic9126e02013-08-06 07:31:54 -0700321 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400322 optimizations
323 ccache
324 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300325 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400326
327 libs
328 examples
Johannec658122012-10-10 09:16:37 -0700329 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400330 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200331 as
John Koleszar0ea50ce2010-05-18 11:58:33 -0400332 fast_unaligned
333 codec_srcs
334 debug_libs
335 md5
336
337 dequant_tokens
338 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400339 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700340 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400341 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700342 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400343 ${CODECS}
344 ${CODEC_FAMILIES}
345 static_msvcrt
346 mem_tracker
347 spatial_resampling
348 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200349 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200350 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400351 shared
James Zern495b2412011-07-25 15:40:36 -0700352 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400353 small
Fritz Koenig647df002010-11-04 16:03:36 -0700354 postproc_visualizer
James Berrya0769f72012-05-02 17:25:58 -0400355 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400356 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100357 temporal_denoising
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700358 experimental
Dmitry Kovalev26cec5c2013-03-15 18:21:55 -0700359 decrypt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400360"
361
362process_cmdline() {
363 for opt do
364 optval="${opt#*=}"
365 case "$opt" in
James Zern42ab4012013-08-21 18:11:45 -0700366 --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400367 --enable-?*|--disable-?*)
368 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
369 if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
370 if enabled experimental; then
James Zernccb6bdc2013-08-21 19:00:08 -0700371 ${action}_feature $option
John Koleszar0952acb2010-06-01 11:14:25 -0400372 else
373 log_echo "Ignoring $opt -- not in experimental mode."
374 fi
375 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700376 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400377 fi
378 ;;
James Berrya0769f72012-05-02 17:25:58 -0400379 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700380 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400381 esac
382 done
383}
384
385post_process_cmdline() {
386 local c
387
388 # If the codec family is disabled, disable all components of that family.
389 # If the codec family is enabled, enable all components of that family.
390 log_echo "Configuring selected codecs"
391 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700392 disabled ${c%%_*} && disable_feature ${c}
393 enabled ${c%%_*} && enable_feature ${c}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400394 done
395
396 # Enable all detected codecs, if they haven't been disabled
397 for c in ${CODECS}; do soft_enable $c; done
398
399 # Enable the codec family if any component of that family is enabled
400 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700401 enabled $c && enable_feature ${c%_*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400402 done
403
404 # Set the {en,de}coders variable if any algorithm in that class is enabled
405 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700406 enabled ${c} && enable_feature ${c##*_}s
John Koleszar0ea50ce2010-05-18 11:58:33 -0400407 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400408}
409
410
411process_targets() {
412 enabled child || write_common_config_banner
413 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
414
415 # TODO: add host tools target (obj_int_extract, etc)
416
417 # For fat binaries, call configure recursively to configure for each
418 # binary architecture to be included.
419 if enabled universal; then
420 # Call configure (ourselves) for each subarchitecture
421 for arch in $fat_bin_archs; do
422 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
423 done
424 fi
425
426 # The write_common_config (config.mk) logic is deferred until after the
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600427 # recursive calls to configure complete, because we want our universal
John Koleszar0ea50ce2010-05-18 11:58:33 -0400428 # targets to be executed last.
429 write_common_config_targets
430 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
431
432 # Calculate the default distribution name, based on the enabled features
433 local cf
434 local DIST_DIR=vpx
435 for cf in $CODEC_FAMILIES; do
436 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
437 DIST_DIR="${DIST_DIR}-${cf}"
438 elif enabled ${cf}_encoder; then
439 DIST_DIR="${DIST_DIR}-${cf}cx"
440 elif enabled ${cf}_decoder; then
441 DIST_DIR="${DIST_DIR}-${cf}dx"
442 fi
443 done
444 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
445 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
Jim Bankoski79401542013-09-04 10:02:08 -0700446 ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400447 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400448 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
449 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
450 case "${tgt_os}" in
451 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
452 DIST_DIR="${DIST_DIR}-${tgt_cc}"
453 ;;
454 esac
455 if [ -f "${source_path}/build/make/version.sh" ]; then
456 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
457 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700458 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400459 ver=${ver%%-*}
460 VERSION_PATCH=${ver##*.}
461 ver=${ver%.*}
462 VERSION_MINOR=${ver##*.}
463 ver=${ver#v}
464 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400465 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400466 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700467
468PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400469ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400470DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400471else
John Koleszar670af3a2010-05-26 15:57:42 -0400472DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400473endif
John Koleszar670af3a2010-05-26 15:57:42 -0400474LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400475
Ralph Giles53e99872011-03-28 11:36:53 -0700476VERSION_STRING=${VERSION_STRING}
477
John Koleszar7aa97a32010-06-03 10:29:04 -0400478VERSION_MAJOR=${VERSION_MAJOR}
479VERSION_MINOR=${VERSION_MINOR}
480VERSION_PATCH=${VERSION_PATCH}
481
John Koleszar23d68a52010-06-22 09:53:23 -0400482CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400483EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400484 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
485
486 #
487 # Write makefiles for all enabled targets
488 #
489 for tgt in libs examples docs solution; do
490 local tgt_fn="$tgt-$toolchain.mk"
491
492 if enabled $tgt; then
493 echo "Creating makefiles for ${toolchain} ${tgt}"
494 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
495 #write_${tgt}_config
496 fi
497 done
498
499}
500
501process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400502 if enabled shared; then
503 # Can only build shared libs on a subset of platforms. Doing this check
504 # here rather than at option parse time because the target auto-detect
505 # magic happens after the command line has been parsed.
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400506 if ! enabled linux; then
507 if enabled gnu; then
508 echo "--enable-shared is only supported on ELF; assuming this is OK"
509 else
510 die "--enable-shared only supported on ELF for now"
511 fi
512 fi
John Koleszar7aa97a32010-06-03 10:29:04 -0400513 fi
John Koleszard9847632012-12-10 12:07:59 -0800514 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400515 echo "Bypassing toolchain for environment detection."
James Zern42ab4012013-08-21 18:11:45 -0700516 enable_feature external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400517 check_header() {
518 log fake_check_header "$@"
519 header=$1
520 shift
521 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
James Zern42ab4012013-08-21 18:11:45 -0700522 disable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800523 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400524 case $header in
525 stdio.h)
526 true;
527 ;;
528 *)
529 local result=false
530 for d in "$@"; do
531 [ -f "${d##-I}/$header" ] && result=true && break
532 done
533 ${result:-true}
James Zern42ab4012013-08-21 18:11:45 -0700534 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800535
536 # Specialize windows and POSIX environments.
537 case $toolchain in
538 *-win*-*)
539 case $header-$toolchain in
540 stdint*-gcc) true;;
541 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700542 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800543 ;;
544 *)
545 case $header in
546 stdint.h) true;;
547 pthread.h) true;;
548 sys/mman.h) true;;
549 unistd.h) true;;
550 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700551 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800552 esac
553 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400554 }
555 check_ld() {
556 true
557 }
558 fi
559 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
560 check_ld <<EOF || die "Toolchain is unable to link executables"
561int main(void) {return 0;}
562EOF
563 # check system headers
564 check_header stdint.h
565 check_header pthread.h
566 check_header sys/mman.h
John Koleszard9847632012-12-10 12:07:59 -0800567 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400568
James Zern42ab4012013-08-21 18:11:45 -0700569 check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400570}
571
572process_toolchain() {
573 process_common_toolchain
574
575 # Handle universal binaries for this architecture
576 case $toolchain in
577 universal-darwin*)
578 local darwin_ver=${tgt_os##darwin}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400579
Johann101c2bd2012-04-27 11:40:04 -0700580 # Snow Leopard (10.6/darwin10) dropped support for PPC
581 # Include PPC support for all prior versions
582 if [ $darwin_ver -lt 10 ]; then
583 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
584 fi
585
586 # Tiger (10.4/darwin8) brought support for x86
587 if [ $darwin_ver -ge 8 ]; then
588 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
589 fi
590
591 # Leopard (10.5/darwin9) brought 64 bit support
592 if [ $darwin_ver -ge 9 ]; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400593 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
594 fi
595 ;;
596 esac
597
598
599 # Enable some useful compiler flags
600 if enabled gcc; then
601 enabled werror && check_add_cflags -Werror
602 check_add_cflags -Wall
603 check_add_cflags -Wdeclaration-after-statement
604 check_add_cflags -Wdisabled-optimization
605 check_add_cflags -Wpointer-arith
606 check_add_cflags -Wtype-limits
607 check_add_cflags -Wcast-qual
Daniel Kang2f963912012-08-13 14:18:09 -0700608 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300609 check_add_cflags -Wimplicit-function-declaration
610 check_add_cflags -Wuninitialized
611 check_add_cflags -Wunused-variable
James Zerndfa2fb52013-05-03 14:00:33 -0700612 case ${CC} in
613 *clang*) ;;
614 *) check_add_cflags -Wunused-but-set-variable ;;
615 esac
John Koleszarb601eb82011-02-04 11:51:21 -0500616 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400617 fi
618
619 if enabled icc; then
620 enabled werror && check_add_cflags -Werror
621 check_add_cflags -Wall
622 check_add_cflags -Wpointer-arith
623
624 # ICC has a number of floating point optimizations that we disable
625 # in favor of deterministic output WRT to other compilers
626 add_cflags -fp-model precise
627 fi
628
629 # Enable extra, harmless warnings. These might provide additional insight
630 # to what the compiler is doing and why, but in general, but they shouldn't
631 # be treated as fatal, even if we're treating warnings as errors.
632 GCC_EXTRA_WARNINGS="
633 -Wdisabled-optimization
634 -Winline
635 "
636 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
637 RVCT_EXTRA_WARNINGS="
638 --remarks
639 "
640 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
641 if enabled extra_warnings; then
642 for w in ${EXTRA_WARNINGS}; do
643 check_add_cflags ${w}
644 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
645 done
646 fi
647
648 # ccache only really works on gcc toolchains
649 enabled gcc || soft_disable ccache
650 if enabled mips; then
James Zern42ab4012013-08-21 18:11:45 -0700651 enable_feature dequant_tokens
652 enable_feature dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400653 fi
654
Yaowu Xu132ef422013-09-06 15:05:05 -0700655 if enabled internal_stats; then
656 enable_feature vp9_postproc
657 fi
658
John Koleszar0ea50ce2010-05-18 11:58:33 -0400659 # Enable the postbuild target if building for visual studio.
660 case "$tgt_cc" in
James Zern42ab4012013-08-21 18:11:45 -0700661 vs*) enable_feature msvs
662 enable_feature solution
John Koleszar0ea50ce2010-05-18 11:58:33 -0400663 vs_version=${tgt_cc##vs}
Martin Storsjobd91beb2013-05-17 00:57:57 +0300664 case $vs_version in
665 [789])
666 VCPROJ_SFX=vcproj
667 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
668 ;;
669 10|11)
670 VCPROJ_SFX=vcxproj
671 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
672 ;;
673 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400674 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800675 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400676 ;;
677 esac
678
679 # Other toolchain specific defaults
680 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700681
Fritz Koenig692b1082010-11-10 14:51:49 -0800682 if enabled postproc_visualizer; then
683 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
684 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700685
Johannb46d58a2013-01-18 11:31:22 -0800686 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700687 case "$toolchain" in
688 *-vs*)
689 soft_enable unit_tests
690 ;;
691 *-android-*)
692 # GTestLog must be modified to use Android logging utilities.
693 ;;
Johanna1d929e2012-12-13 11:35:59 -0800694 *-darwin-*)
695 # iOS/ARM builds do not work with gtest. This does not match
696 # x86 targets.
697 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700698 *-win*)
699 # Some mingw toolchains don't have pthread available by default.
700 # Treat these more like visual studio where threading in gtest
701 # would be disabled for the same reason.
702 check_cxx "$@" <<EOF && soft_enable unit_tests
703int z;
704EOF
705 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700706 *)
James Zernf2dc3822013-06-20 12:49:15 -0700707 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700708int z;
709EOF
Johannd6e80de2012-06-12 08:58:11 -0700710 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700711 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400712}
713
714
715##
716## END APPLICATION SPECIFIC CONFIGURATION
717##
718CONFIGURE_ARGS="$@"
719process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400720print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
721cat <<EOF >> ${BUILD_PFX}vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400722static const char* const cfg = "$CONFIGURE_ARGS";
723const char *vpx_codec_build_config(void) {return cfg;}
724EOF