blob: 36fc08f222ab527963fe3e4d280ae1c98451f997 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001#!/bin/bash
2##
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
Yunqing Wangaa7335e2011-10-25 15:14:16 -040041 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040042 ${toggle_spatial_resampling} spatial sampling (scaling) support
43 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020044 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020045 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
John Koleszar0ea50ce2010-05-18 11:58:33 -040046 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040047 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070048 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040049 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070050 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040051 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010052 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
John Koleszar0ea50ce2010-05-18 11:58:33 -040053
54Codecs:
55 Codecs can be selectively enabled or disabled individually, or by family:
56 --disable-<codec>
57 is equivalent to:
58 --disable-<codec>-encoder
59 --disable-<codec>-decoder
60
61 Codecs available in this distribution:
62EOF
63#restore editor state '
64
65 local family;
66 local last_family;
67 local c;
68 local str;
69 for c in ${CODECS}; do
70 family=${c%_*}
71 if [ "${family}" != "${last_family}" ]; then
72 [ -z "${str}" ] || echo "${str}"
73 str="$(printf ' %10s:' ${family})"
74 fi
75 str="${str} $(printf '%10s' ${c#*_})"
76 last_family=${family}
77 done
78 echo "${str}"
79 show_help_post
80}
81
82##
83## BEGIN APPLICATION SPECIFIC CONFIGURATION
84##
85
86# all_platforms is a list of all supported target platforms. Maintain
87# alphabetically by architecture, generic-gnu last.
Fritz Koenigd8305732012-01-06 11:50:05 -080088all_platforms="${all_platforms} armv5te-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040089all_platforms="${all_platforms} armv5te-linux-rvct"
90all_platforms="${all_platforms} armv5te-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020091all_platforms="${all_platforms} armv5te-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040092all_platforms="${all_platforms} armv6-darwin-gcc"
93all_platforms="${all_platforms} armv6-linux-rvct"
94all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020095all_platforms="${all_platforms} armv6-none-rvct"
Fritz Koenigd8305732012-01-06 11:50:05 -080096all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -040097all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
98all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
99all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200100all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300101all_platforms="${all_platforms} armv7-win32-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400102all_platforms="${all_platforms} mips32-linux-gcc"
103all_platforms="${all_platforms} ppc32-darwin8-gcc"
104all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400105all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400106all_platforms="${all_platforms} ppc64-darwin8-gcc"
107all_platforms="${all_platforms} ppc64-darwin9-gcc"
108all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400109all_platforms="${all_platforms} sparc-solaris-gcc"
Andoni Morales Alastruey652589d2013-01-14 12:25:52 +0100110all_platforms="${all_platforms} x86-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400111all_platforms="${all_platforms} x86-darwin8-gcc"
112all_platforms="${all_platforms} x86-darwin8-icc"
113all_platforms="${all_platforms} x86-darwin9-gcc"
114all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700115all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700116all_platforms="${all_platforms} x86-darwin11-gcc"
117all_platforms="${all_platforms} x86-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400118all_platforms="${all_platforms} x86-linux-gcc"
119all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900120all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400121all_platforms="${all_platforms} x86-solaris-gcc"
122all_platforms="${all_platforms} x86-win32-gcc"
123all_platforms="${all_platforms} x86-win32-vs7"
124all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400125all_platforms="${all_platforms} x86-win32-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300126all_platforms="${all_platforms} x86-win32-vs10"
127all_platforms="${all_platforms} x86-win32-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400128all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500129all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700130all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700131all_platforms="${all_platforms} x86_64-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400132all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400133all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400134all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500135all_platforms="${all_platforms} x86_64-win64-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400136all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400137all_platforms="${all_platforms} x86_64-win64-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300138all_platforms="${all_platforms} x86_64-win64-vs10"
139all_platforms="${all_platforms} x86_64-win64-vs11"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400140all_platforms="${all_platforms} universal-darwin8-gcc"
141all_platforms="${all_platforms} universal-darwin9-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700142all_platforms="${all_platforms} universal-darwin10-gcc"
143all_platforms="${all_platforms} universal-darwin11-gcc"
144all_platforms="${all_platforms} universal-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400145all_platforms="${all_platforms} generic-gnu"
146
147# all_targets is a list of all targets that can be configured
148# note that these should be in dependency order for now.
149all_targets="libs examples docs"
150
151# all targets available are enabled, by default.
152for t in ${all_targets}; do
153 [ -f ${source_path}/${t}.mk ] && enable ${t}
154done
155
156# check installed doxygen version
157doxy_version=$(doxygen --version 2>/dev/null)
158doxy_major=${doxy_version%%.*}
159if [ ${doxy_major:-0} -ge 1 ]; then
160 doxy_version=${doxy_version#*.}
161 doxy_minor=${doxy_version%%.*}
162 doxy_patch=${doxy_version##*.}
163
164 [ $doxy_major -gt 1 ] && enable doxygen
165 [ $doxy_minor -gt 5 ] && enable doxygen
166 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
167fi
168
John Koleszaree8bcb12010-05-24 10:16:44 -0400169# install everything except the sources, by default. sources will have
170# to be enabled when doing dist builds, since that's no longer a common
171# case.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400172enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
173enable install_bins
174enable install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400175
James Zern495b2412011-07-25 15:40:36 -0700176enable static
John Koleszar0ea50ce2010-05-18 11:58:33 -0400177enable optimizations
178enable fast_unaligned #allow unaligned accesses, if supported by hw
179enable md5
180enable spatial_resampling
181enable multithread
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200182enable os_support
Stefan Holmer9c411432012-03-06 10:48:18 +0100183enable temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400184
185[ -d ${source_path}/../include ] && enable alt_tree_layout
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800186for d in vp8 vp9; do
John Koleszar0ea50ce2010-05-18 11:58:33 -0400187 [ -d ${source_path}/${d} ] && disable alt_tree_layout;
188done
189
190if ! enabled alt_tree_layout; then
191# development environment
192[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700193[ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400194else
195# customer environment
John Koleszarb7492342010-05-24 11:39:59 -0400196[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
197[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800198[ -f ${source_path}/../include/vpx/vp9cx.h ] && CODECS="${CODECS} vp9_encoder"
199[ -f ${source_path}/../include/vpx/vp9dx.h ] && CODECS="${CODECS} vp9_decoder"
Johannc459d372012-04-02 15:08:18 -0700200[ -f ${source_path}/../include/vpx/vp8cx.h ] || disable vp8_encoder
201[ -f ${source_path}/../include/vpx/vp8dx.h ] || disable vp8_decoder
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800202[ -f ${source_path}/../include/vpx/vp9cx.h ] || disable vp9_encoder
203[ -f ${source_path}/../include/vpx/vp9dx.h ] || disable vp9_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400204
205[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
206fi
207
208CODECS="$(echo ${CODECS} | tr ' ' '\n')"
209CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
210
211ARCH_LIST="
212 arm
213 mips
214 x86
215 x86_64
216 ppc32
217 ppc64
218"
219ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800220 edsp
221 media
222 neon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400223
224 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700225 dspr2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400226
227 mmx
228 sse
229 sse2
230 sse3
231 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400232 sse4_1
John Koleszar0ea50ce2010-05-18 11:58:33 -0400233
234 altivec
235"
236HAVE_LIST="
237 ${ARCH_EXT_LIST}
238 vpx_ports
239 stdint_h
240 alt_tree_layout
241 pthread_h
242 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200243 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400244"
John Koleszar0952acb2010-06-01 11:14:25 -0400245EXPERIMENT_LIST="
Yaowu Xu9780d582013-03-27 14:58:37 -0700246 oneshotq
Adrian Grangec2876cf2013-04-02 15:08:50 -0700247 multiple_arf
John Koleszar8dd82872013-05-06 11:01:35 -0700248 non420
John Koleszar679e4ab2013-05-15 17:55:08 -0700249 alpha
Deb Mukherjeeb8b3f1a2013-05-08 10:04:14 -0700250 balanced_coeftree
John Koleszar0952acb2010-06-01 11:14:25 -0400251"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400252CONFIG_LIST="
253 external_build
254 install_docs
255 install_bins
256 install_libs
257 install_srcs
258 debug
259 gprof
260 gcov
261 rvct
262 gcc
263 msvs
264 pic
265 big_endian
266
267 codec_srcs
268 debug_libs
269 fast_unaligned
270 mem_manager
271 mem_tracker
272 mem_checks
273 md5
274
275 dequant_tokens
276 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400277 runtime_cpu_detect
278 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400279 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700280 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400281 ${CODECS}
282 ${CODEC_FAMILIES}
283 encoders
284 decoders
285 static_msvcrt
286 spatial_resampling
287 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200288 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200289 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400290 shared
James Zern495b2412011-07-25 15:40:36 -0700291 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400292 small
Fritz Koenig647df002010-11-04 16:03:36 -0700293 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200294 os_support
James Berrya0769f72012-05-02 17:25:58 -0400295 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400296 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100297 temporal_denoising
John Koleszar0952acb2010-06-01 11:14:25 -0400298 experimental
Dmitry Kovalev26cec5c2013-03-15 18:21:55 -0700299 decrypt
John Koleszar0952acb2010-06-01 11:14:25 -0400300 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400301"
302CMDLINE_SELECT="
John Koleszard9847632012-12-10 12:07:59 -0800303 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400304 extra_warnings
305 werror
306 install_docs
307 install_bins
308 install_libs
309 install_srcs
310 debug
311 gprof
312 gcov
313 pic
314 optimizations
315 ccache
316 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300317 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400318
319 libs
320 examples
Johannec658122012-10-10 09:16:37 -0700321 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400322 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200323 as
John Koleszar0ea50ce2010-05-18 11:58:33 -0400324 fast_unaligned
325 codec_srcs
326 debug_libs
327 md5
328
329 dequant_tokens
330 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400331 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400332 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700333 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400334 ${CODECS}
335 ${CODEC_FAMILIES}
336 static_msvcrt
337 mem_tracker
338 spatial_resampling
339 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200340 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200341 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400342 shared
James Zern495b2412011-07-25 15:40:36 -0700343 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400344 small
Fritz Koenig647df002010-11-04 16:03:36 -0700345 postproc_visualizer
James Berrya0769f72012-05-02 17:25:58 -0400346 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400347 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100348 temporal_denoising
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700349 experimental
Dmitry Kovalev26cec5c2013-03-15 18:21:55 -0700350 decrypt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400351"
352
353process_cmdline() {
354 for opt do
355 optval="${opt#*=}"
356 case "$opt" in
357 --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400358 --enable-?*|--disable-?*)
359 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
360 if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
361 if enabled experimental; then
362 $action $option
363 else
364 log_echo "Ignoring $opt -- not in experimental mode."
365 fi
366 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700367 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400368 fi
369 ;;
James Berrya0769f72012-05-02 17:25:58 -0400370 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700371 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400372 esac
373 done
374}
375
376post_process_cmdline() {
377 local c
378
379 # If the codec family is disabled, disable all components of that family.
380 # If the codec family is enabled, enable all components of that family.
381 log_echo "Configuring selected codecs"
382 for c in ${CODECS}; do
383 disabled ${c%%_*} && disable ${c}
384 enabled ${c%%_*} && enable ${c}
385 done
386
387 # Enable all detected codecs, if they haven't been disabled
388 for c in ${CODECS}; do soft_enable $c; done
389
390 # Enable the codec family if any component of that family is enabled
391 for c in ${CODECS}; do
392 enabled $c && enable ${c%_*}
393 done
394
395 # Set the {en,de}coders variable if any algorithm in that class is enabled
396 for c in ${CODECS}; do
397 enabled ${c} && enable ${c##*_}s
398 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400399}
400
401
402process_targets() {
403 enabled child || write_common_config_banner
404 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
405
406 # TODO: add host tools target (obj_int_extract, etc)
407
408 # For fat binaries, call configure recursively to configure for each
409 # binary architecture to be included.
410 if enabled universal; then
411 # Call configure (ourselves) for each subarchitecture
412 for arch in $fat_bin_archs; do
413 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
414 done
415 fi
416
417 # The write_common_config (config.mk) logic is deferred until after the
418 # recursive calls to configure complete, becuase we want our universal
419 # targets to be executed last.
420 write_common_config_targets
421 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
422
423 # Calculate the default distribution name, based on the enabled features
424 local cf
425 local DIST_DIR=vpx
426 for cf in $CODEC_FAMILIES; do
427 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
428 DIST_DIR="${DIST_DIR}-${cf}"
429 elif enabled ${cf}_encoder; then
430 DIST_DIR="${DIST_DIR}-${cf}cx"
431 elif enabled ${cf}_decoder; then
432 DIST_DIR="${DIST_DIR}-${cf}dx"
433 fi
434 done
435 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
436 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
437 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
438 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400439 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
440 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
441 case "${tgt_os}" in
442 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
443 DIST_DIR="${DIST_DIR}-${tgt_cc}"
444 ;;
445 esac
446 if [ -f "${source_path}/build/make/version.sh" ]; then
447 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
448 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700449 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400450 ver=${ver%%-*}
451 VERSION_PATCH=${ver##*.}
452 ver=${ver%.*}
453 VERSION_MINOR=${ver##*.}
454 ver=${ver#v}
455 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400456 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400457 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700458
459PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400460ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400461DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400462else
John Koleszar670af3a2010-05-26 15:57:42 -0400463DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400464endif
John Koleszar670af3a2010-05-26 15:57:42 -0400465LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400466
Ralph Giles53e99872011-03-28 11:36:53 -0700467VERSION_STRING=${VERSION_STRING}
468
John Koleszar7aa97a32010-06-03 10:29:04 -0400469VERSION_MAJOR=${VERSION_MAJOR}
470VERSION_MINOR=${VERSION_MINOR}
471VERSION_PATCH=${VERSION_PATCH}
472
John Koleszar23d68a52010-06-22 09:53:23 -0400473CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400474EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400475 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
476
477 #
478 # Write makefiles for all enabled targets
479 #
480 for tgt in libs examples docs solution; do
481 local tgt_fn="$tgt-$toolchain.mk"
482
483 if enabled $tgt; then
484 echo "Creating makefiles for ${toolchain} ${tgt}"
485 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
486 #write_${tgt}_config
487 fi
488 done
489
490}
491
492process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400493 if enabled shared; then
494 # Can only build shared libs on a subset of platforms. Doing this check
495 # here rather than at option parse time because the target auto-detect
496 # magic happens after the command line has been parsed.
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400497 if ! enabled linux; then
498 if enabled gnu; then
499 echo "--enable-shared is only supported on ELF; assuming this is OK"
500 else
501 die "--enable-shared only supported on ELF for now"
502 fi
503 fi
John Koleszar7aa97a32010-06-03 10:29:04 -0400504 fi
John Koleszard9847632012-12-10 12:07:59 -0800505 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400506 echo "Bypassing toolchain for environment detection."
507 enable external_build
508 check_header() {
509 log fake_check_header "$@"
510 header=$1
511 shift
512 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
513 disable $var
John Koleszard9847632012-12-10 12:07:59 -0800514 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400515 case $header in
516 stdio.h)
517 true;
518 ;;
519 *)
520 local result=false
521 for d in "$@"; do
522 [ -f "${d##-I}/$header" ] && result=true && break
523 done
524 ${result:-true}
525 esac && enable $var
John Koleszard9847632012-12-10 12:07:59 -0800526
527 # Specialize windows and POSIX environments.
528 case $toolchain in
529 *-win*-*)
530 case $header-$toolchain in
531 stdint*-gcc) true;;
532 *) false;;
533 esac && enable $var
534 ;;
535 *)
536 case $header in
537 stdint.h) true;;
538 pthread.h) true;;
539 sys/mman.h) true;;
540 unistd.h) true;;
541 *) false;;
542 esac && enable $var
543 esac
544 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400545 }
546 check_ld() {
547 true
548 }
549 fi
550 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
551 check_ld <<EOF || die "Toolchain is unable to link executables"
552int main(void) {return 0;}
553EOF
554 # check system headers
555 check_header stdint.h
556 check_header pthread.h
557 check_header sys/mman.h
John Koleszard9847632012-12-10 12:07:59 -0800558 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400559
John Koleszarb7492342010-05-24 11:39:59 -0400560 check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400561}
562
563process_toolchain() {
564 process_common_toolchain
565
566 # Handle universal binaries for this architecture
567 case $toolchain in
568 universal-darwin*)
569 local darwin_ver=${tgt_os##darwin}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400570
Johann101c2bd2012-04-27 11:40:04 -0700571 # Snow Leopard (10.6/darwin10) dropped support for PPC
572 # Include PPC support for all prior versions
573 if [ $darwin_ver -lt 10 ]; then
574 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
575 fi
576
577 # Tiger (10.4/darwin8) brought support for x86
578 if [ $darwin_ver -ge 8 ]; then
579 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
580 fi
581
582 # Leopard (10.5/darwin9) brought 64 bit support
583 if [ $darwin_ver -ge 9 ]; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400584 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
585 fi
586 ;;
587 esac
588
589
590 # Enable some useful compiler flags
591 if enabled gcc; then
592 enabled werror && check_add_cflags -Werror
593 check_add_cflags -Wall
594 check_add_cflags -Wdeclaration-after-statement
595 check_add_cflags -Wdisabled-optimization
596 check_add_cflags -Wpointer-arith
597 check_add_cflags -Wtype-limits
598 check_add_cflags -Wcast-qual
Daniel Kang2f963912012-08-13 14:18:09 -0700599 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300600 check_add_cflags -Wimplicit-function-declaration
601 check_add_cflags -Wuninitialized
602 check_add_cflags -Wunused-variable
James Zerndfa2fb52013-05-03 14:00:33 -0700603 case ${CC} in
604 *clang*) ;;
605 *) check_add_cflags -Wunused-but-set-variable ;;
606 esac
John Koleszarb601eb82011-02-04 11:51:21 -0500607 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400608 fi
609
610 if enabled icc; then
611 enabled werror && check_add_cflags -Werror
612 check_add_cflags -Wall
613 check_add_cflags -Wpointer-arith
614
615 # ICC has a number of floating point optimizations that we disable
616 # in favor of deterministic output WRT to other compilers
617 add_cflags -fp-model precise
618 fi
619
620 # Enable extra, harmless warnings. These might provide additional insight
621 # to what the compiler is doing and why, but in general, but they shouldn't
622 # be treated as fatal, even if we're treating warnings as errors.
623 GCC_EXTRA_WARNINGS="
624 -Wdisabled-optimization
625 -Winline
626 "
627 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
628 RVCT_EXTRA_WARNINGS="
629 --remarks
630 "
631 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
632 if enabled extra_warnings; then
633 for w in ${EXTRA_WARNINGS}; do
634 check_add_cflags ${w}
635 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
636 done
637 fi
638
639 # ccache only really works on gcc toolchains
640 enabled gcc || soft_disable ccache
641 if enabled mips; then
642 enable dequant_tokens
John Koleszar7f1a9082010-09-13 09:00:24 -0400643 enable dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400644 fi
645
646 # Enable the postbuild target if building for visual studio.
647 case "$tgt_cc" in
648 vs*) enable msvs
649 enable solution
650 vs_version=${tgt_cc##vs}
Martin Storsjobd91beb2013-05-17 00:57:57 +0300651 case $vs_version in
652 [789])
653 VCPROJ_SFX=vcproj
654 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
655 ;;
656 10|11)
657 VCPROJ_SFX=vcxproj
658 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
659 ;;
660 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400661 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800662 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400663 ;;
664 esac
665
666 # Other toolchain specific defaults
667 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700668
Fritz Koenig692b1082010-11-10 14:51:49 -0800669 if enabled postproc_visualizer; then
670 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
671 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700672
Johannb46d58a2013-01-18 11:31:22 -0800673 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700674 case "$toolchain" in
675 *-vs*)
676 soft_enable unit_tests
677 ;;
678 *-android-*)
679 # GTestLog must be modified to use Android logging utilities.
680 ;;
Johanna1d929e2012-12-13 11:35:59 -0800681 *-darwin-*)
682 # iOS/ARM builds do not work with gtest. This does not match
683 # x86 targets.
684 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700685 *-win*)
686 # Some mingw toolchains don't have pthread available by default.
687 # Treat these more like visual studio where threading in gtest
688 # would be disabled for the same reason.
689 check_cxx "$@" <<EOF && soft_enable unit_tests
690int z;
691EOF
692 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700693 *)
James Zernf2dc3822013-06-20 12:49:15 -0700694 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700695int z;
696EOF
Johannd6e80de2012-06-12 08:58:11 -0700697 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700698 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400699}
700
701
702##
703## END APPLICATION SPECIFIC CONFIGURATION
704##
705CONFIGURE_ARGS="$@"
706process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400707print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
708cat <<EOF >> ${BUILD_PFX}vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400709static const char* const cfg = "$CONFIGURE_ARGS";
710const char *vpx_codec_build_config(void) {return cfg;}
711EOF