blob: eed6f970b5f9be617f133f917d7d80275c157d7e [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:
23 ${toggle_libs} don't build libraries
24 ${toggle_examples} don't build examples
James Berry07c71ef2011-11-04 11:48:30 -040025 ${toggle_unit_tests} build unit tests
John Koleszar0ea50ce2010-05-18 11:58:33 -040026 --libc=PATH path to alternate libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +020027 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
Fritz Koenigd8305732012-01-06 11:50:05 -080028 --sdk-path=PATH path to root of sdk (iOS, android builds only)
John Koleszar0ea50ce2010-05-18 11:58:33 -040029 ${toggle_fast_unaligned} don't use unaligned accesses, even when
30 supported by hardware [auto]
31 ${toggle_codec_srcs} in/exclude codec library source code
32 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040033 ${toggle_md5} support for output of checksum data
34 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
35 ${toggle_vp8} VP8 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070036 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040037 ${toggle_mem_tracker} track memory usage
John Koleszar0ea50ce2010-05-18 11:58:33 -040038 ${toggle_postproc} postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040039 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040040 ${toggle_spatial_resampling} spatial sampling (scaling) support
41 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020042 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020043 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
John Koleszar0ea50ce2010-05-18 11:58:33 -040044 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040045 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070046 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040047 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070048 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040049 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010050 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
John Koleszar0ea50ce2010-05-18 11:58:33 -040051
52Codecs:
53 Codecs can be selectively enabled or disabled individually, or by family:
54 --disable-<codec>
55 is equivalent to:
56 --disable-<codec>-encoder
57 --disable-<codec>-decoder
58
59 Codecs available in this distribution:
60EOF
61#restore editor state '
62
63 local family;
64 local last_family;
65 local c;
66 local str;
67 for c in ${CODECS}; do
68 family=${c%_*}
69 if [ "${family}" != "${last_family}" ]; then
70 [ -z "${str}" ] || echo "${str}"
71 str="$(printf ' %10s:' ${family})"
72 fi
73 str="${str} $(printf '%10s' ${c#*_})"
74 last_family=${family}
75 done
76 echo "${str}"
77 show_help_post
78}
79
80##
81## BEGIN APPLICATION SPECIFIC CONFIGURATION
82##
83
84# all_platforms is a list of all supported target platforms. Maintain
85# alphabetically by architecture, generic-gnu last.
Fritz Koenigd8305732012-01-06 11:50:05 -080086all_platforms="${all_platforms} armv5te-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040087all_platforms="${all_platforms} armv5te-linux-rvct"
88all_platforms="${all_platforms} armv5te-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020089all_platforms="${all_platforms} armv5te-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040090all_platforms="${all_platforms} armv6-darwin-gcc"
91all_platforms="${all_platforms} armv6-linux-rvct"
92all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020093all_platforms="${all_platforms} armv6-none-rvct"
Fritz Koenigd8305732012-01-06 11:50:05 -080094all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -040095all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
96all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
97all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020098all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -040099all_platforms="${all_platforms} mips32-linux-gcc"
100all_platforms="${all_platforms} ppc32-darwin8-gcc"
101all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400102all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400103all_platforms="${all_platforms} ppc64-darwin8-gcc"
104all_platforms="${all_platforms} ppc64-darwin9-gcc"
105all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400106all_platforms="${all_platforms} sparc-solaris-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400107all_platforms="${all_platforms} x86-darwin8-gcc"
108all_platforms="${all_platforms} x86-darwin8-icc"
109all_platforms="${all_platforms} x86-darwin9-gcc"
110all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700111all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700112all_platforms="${all_platforms} x86-darwin11-gcc"
113all_platforms="${all_platforms} x86-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400114all_platforms="${all_platforms} x86-linux-gcc"
115all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900116all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400117all_platforms="${all_platforms} x86-solaris-gcc"
118all_platforms="${all_platforms} x86-win32-gcc"
119all_platforms="${all_platforms} x86-win32-vs7"
120all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400121all_platforms="${all_platforms} x86-win32-vs9"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400122all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500123all_platforms="${all_platforms} x86_64-darwin10-gcc"
Johann247e7342011-12-14 11:11:03 -0800124all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700125all_platforms="${all_platforms} x86_64-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400126all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400127all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400128all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500129all_platforms="${all_platforms} x86_64-win64-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400130all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400131all_platforms="${all_platforms} x86_64-win64-vs9"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400132all_platforms="${all_platforms} universal-darwin8-gcc"
133all_platforms="${all_platforms} universal-darwin9-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700134all_platforms="${all_platforms} universal-darwin10-gcc"
135all_platforms="${all_platforms} universal-darwin11-gcc"
136all_platforms="${all_platforms} universal-darwin12-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400137all_platforms="${all_platforms} generic-gnu"
138
139# all_targets is a list of all targets that can be configured
140# note that these should be in dependency order for now.
141all_targets="libs examples docs"
142
143# all targets available are enabled, by default.
144for t in ${all_targets}; do
145 [ -f ${source_path}/${t}.mk ] && enable ${t}
146done
147
148# check installed doxygen version
149doxy_version=$(doxygen --version 2>/dev/null)
150doxy_major=${doxy_version%%.*}
151if [ ${doxy_major:-0} -ge 1 ]; then
152 doxy_version=${doxy_version#*.}
153 doxy_minor=${doxy_version%%.*}
154 doxy_patch=${doxy_version##*.}
155
156 [ $doxy_major -gt 1 ] && enable doxygen
157 [ $doxy_minor -gt 5 ] && enable doxygen
158 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
159fi
160
John Koleszaree8bcb12010-05-24 10:16:44 -0400161# install everything except the sources, by default. sources will have
162# to be enabled when doing dist builds, since that's no longer a common
163# case.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400164enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
165enable install_bins
166enable install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400167
James Zern495b2412011-07-25 15:40:36 -0700168enable static
John Koleszar0ea50ce2010-05-18 11:58:33 -0400169enable optimizations
170enable fast_unaligned #allow unaligned accesses, if supported by hw
171enable md5
172enable spatial_resampling
173enable multithread
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200174enable os_support
Stefan Holmer9c411432012-03-06 10:48:18 +0100175enable temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400176
177[ -d ${source_path}/../include ] && enable alt_tree_layout
178for d in vp8; do
179 [ -d ${source_path}/${d} ] && disable alt_tree_layout;
180done
181
182if ! enabled alt_tree_layout; then
183# development environment
184[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
185else
186# customer environment
John Koleszarb7492342010-05-24 11:39:59 -0400187[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
188[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
Johannc459d372012-04-02 15:08:18 -0700189[ -f ${source_path}/../include/vpx/vp8cx.h ] || disable vp8_encoder
190[ -f ${source_path}/../include/vpx/vp8dx.h ] || disable vp8_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400191
192[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
193fi
194
195CODECS="$(echo ${CODECS} | tr ' ' '\n')"
196CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
197
198ARCH_LIST="
199 arm
200 mips
201 x86
202 x86_64
203 ppc32
204 ppc64
205"
206ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800207 edsp
208 media
209 neon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400210
211 mips32
212
213 mmx
214 sse
215 sse2
216 sse3
217 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400218 sse4_1
John Koleszar0ea50ce2010-05-18 11:58:33 -0400219
220 altivec
221"
222HAVE_LIST="
223 ${ARCH_EXT_LIST}
224 vpx_ports
225 stdint_h
226 alt_tree_layout
227 pthread_h
228 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200229 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400230"
231CONFIG_LIST="
232 external_build
233 install_docs
234 install_bins
235 install_libs
236 install_srcs
237 debug
238 gprof
239 gcov
240 rvct
241 gcc
242 msvs
243 pic
244 big_endian
245
246 codec_srcs
247 debug_libs
248 fast_unaligned
249 mem_manager
250 mem_tracker
251 mem_checks
252 md5
253
254 dequant_tokens
255 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400256 runtime_cpu_detect
257 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400258 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700259 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400260 ${CODECS}
261 ${CODEC_FAMILIES}
262 encoders
263 decoders
264 static_msvcrt
265 spatial_resampling
266 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200267 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200268 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400269 shared
James Zern495b2412011-07-25 15:40:36 -0700270 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400271 small
Fritz Koenig647df002010-11-04 16:03:36 -0700272 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200273 os_support
James Berry07c71ef2011-11-04 11:48:30 -0400274 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400275 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100276 temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400277"
278CMDLINE_SELECT="
279 extra_warnings
280 werror
281 install_docs
282 install_bins
283 install_libs
284 install_srcs
285 debug
286 gprof
287 gcov
288 pic
289 optimizations
290 ccache
291 runtime_cpu_detect
292
293 libs
294 examples
295 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200296 as
John Koleszar0ea50ce2010-05-18 11:58:33 -0400297 fast_unaligned
298 codec_srcs
299 debug_libs
300 md5
301
302 dequant_tokens
303 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400304 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400305 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700306 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400307 ${CODECS}
308 ${CODEC_FAMILIES}
309 static_msvcrt
310 mem_tracker
311 spatial_resampling
312 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200313 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200314 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400315 shared
James Zern495b2412011-07-25 15:40:36 -0700316 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400317 small
Fritz Koenig647df002010-11-04 16:03:36 -0700318 postproc_visualizer
James Berry07c71ef2011-11-04 11:48:30 -0400319 unit_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400320 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100321 temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400322"
323
324process_cmdline() {
325 for opt do
326 optval="${opt#*=}"
327 case "$opt" in
328 --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
Attila Nagy41955322011-01-20 14:46:57 +0200329 *) process_common_cmdline "$opt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400330 ;;
331 esac
332 done
333}
334
335post_process_cmdline() {
336 local c
337
338 # If the codec family is disabled, disable all components of that family.
339 # If the codec family is enabled, enable all components of that family.
340 log_echo "Configuring selected codecs"
341 for c in ${CODECS}; do
342 disabled ${c%%_*} && disable ${c}
343 enabled ${c%%_*} && enable ${c}
344 done
345
346 # Enable all detected codecs, if they haven't been disabled
347 for c in ${CODECS}; do soft_enable $c; done
348
349 # Enable the codec family if any component of that family is enabled
350 for c in ${CODECS}; do
351 enabled $c && enable ${c%_*}
352 done
353
354 # Set the {en,de}coders variable if any algorithm in that class is enabled
355 for c in ${CODECS}; do
356 enabled ${c} && enable ${c##*_}s
357 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400358}
359
360
361process_targets() {
362 enabled child || write_common_config_banner
363 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
364
365 # TODO: add host tools target (obj_int_extract, etc)
366
367 # For fat binaries, call configure recursively to configure for each
368 # binary architecture to be included.
369 if enabled universal; then
370 # Call configure (ourselves) for each subarchitecture
371 for arch in $fat_bin_archs; do
372 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
373 done
374 fi
375
376 # The write_common_config (config.mk) logic is deferred until after the
377 # recursive calls to configure complete, becuase we want our universal
378 # targets to be executed last.
379 write_common_config_targets
380 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
381
382 # Calculate the default distribution name, based on the enabled features
383 local cf
384 local DIST_DIR=vpx
385 for cf in $CODEC_FAMILIES; do
386 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
387 DIST_DIR="${DIST_DIR}-${cf}"
388 elif enabled ${cf}_encoder; then
389 DIST_DIR="${DIST_DIR}-${cf}cx"
390 elif enabled ${cf}_decoder; then
391 DIST_DIR="${DIST_DIR}-${cf}dx"
392 fi
393 done
394 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
395 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
396 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
397 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400398 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
399 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
400 case "${tgt_os}" in
401 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
402 DIST_DIR="${DIST_DIR}-${tgt_cc}"
403 ;;
404 esac
405 if [ -f "${source_path}/build/make/version.sh" ]; then
406 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
407 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700408 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400409 ver=${ver%%-*}
410 VERSION_PATCH=${ver##*.}
411 ver=${ver%.*}
412 VERSION_MINOR=${ver##*.}
413 ver=${ver#v}
414 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400415 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400416 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700417
418PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400419ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400420DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400421else
John Koleszar670af3a2010-05-26 15:57:42 -0400422DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400423endif
John Koleszar670af3a2010-05-26 15:57:42 -0400424LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400425
Ralph Giles53e99872011-03-28 11:36:53 -0700426VERSION_STRING=${VERSION_STRING}
427
John Koleszar7aa97a32010-06-03 10:29:04 -0400428VERSION_MAJOR=${VERSION_MAJOR}
429VERSION_MINOR=${VERSION_MINOR}
430VERSION_PATCH=${VERSION_PATCH}
431
John Koleszar23d68a52010-06-22 09:53:23 -0400432CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400433EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400434 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
435
436 #
437 # Write makefiles for all enabled targets
438 #
439 for tgt in libs examples docs solution; do
440 local tgt_fn="$tgt-$toolchain.mk"
441
442 if enabled $tgt; then
443 echo "Creating makefiles for ${toolchain} ${tgt}"
444 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
445 #write_${tgt}_config
446 fi
447 done
448
449}
450
451process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400452 if enabled shared; then
453 # Can only build shared libs on a subset of platforms. Doing this check
454 # here rather than at option parse time because the target auto-detect
455 # magic happens after the command line has been parsed.
John Koleszar7f1a9082010-09-13 09:00:24 -0400456 enabled linux || die "--enable-shared only supported on ELF for now"
John Koleszar7aa97a32010-06-03 10:29:04 -0400457 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400458 if [ -z "$CC" ]; then
459 echo "Bypassing toolchain for environment detection."
460 enable external_build
461 check_header() {
462 log fake_check_header "$@"
463 header=$1
464 shift
465 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
466 disable $var
467 case $header in
468 stdio.h)
469 true;
470 ;;
471 *)
472 local result=false
473 for d in "$@"; do
474 [ -f "${d##-I}/$header" ] && result=true && break
475 done
476 ${result:-true}
477 esac && enable $var
478 }
479 check_ld() {
480 true
481 }
482 fi
483 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
484 check_ld <<EOF || die "Toolchain is unable to link executables"
485int main(void) {return 0;}
486EOF
487 # check system headers
488 check_header stdint.h
489 check_header pthread.h
490 check_header sys/mman.h
491
John Koleszarb7492342010-05-24 11:39:59 -0400492 check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400493}
494
495process_toolchain() {
496 process_common_toolchain
497
498 # Handle universal binaries for this architecture
499 case $toolchain in
500 universal-darwin*)
501 local darwin_ver=${tgt_os##darwin}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400502
Johann101c2bd2012-04-27 11:40:04 -0700503 # Snow Leopard (10.6/darwin10) dropped support for PPC
504 # Include PPC support for all prior versions
505 if [ $darwin_ver -lt 10 ]; then
506 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
507 fi
508
509 # Tiger (10.4/darwin8) brought support for x86
510 if [ $darwin_ver -ge 8 ]; then
511 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
512 fi
513
514 # Leopard (10.5/darwin9) brought 64 bit support
515 if [ $darwin_ver -ge 9 ]; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400516 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
517 fi
518 ;;
519 esac
520
521
522 # Enable some useful compiler flags
523 if enabled gcc; then
524 enabled werror && check_add_cflags -Werror
525 check_add_cflags -Wall
526 check_add_cflags -Wdeclaration-after-statement
527 check_add_cflags -Wdisabled-optimization
528 check_add_cflags -Wpointer-arith
529 check_add_cflags -Wtype-limits
530 check_add_cflags -Wcast-qual
Attila Nagy14c9fce2012-04-27 13:41:58 +0300531 check_add_cflags -Wimplicit-function-declaration
532 check_add_cflags -Wuninitialized
533 check_add_cflags -Wunused-variable
John Koleszar44d35f72012-05-11 10:51:05 -0700534 check_add_cflags -Wunused-but-set-variable
John Koleszarb601eb82011-02-04 11:51:21 -0500535 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400536 fi
537
538 if enabled icc; then
539 enabled werror && check_add_cflags -Werror
540 check_add_cflags -Wall
541 check_add_cflags -Wpointer-arith
542
543 # ICC has a number of floating point optimizations that we disable
544 # in favor of deterministic output WRT to other compilers
545 add_cflags -fp-model precise
546 fi
547
548 # Enable extra, harmless warnings. These might provide additional insight
549 # to what the compiler is doing and why, but in general, but they shouldn't
550 # be treated as fatal, even if we're treating warnings as errors.
551 GCC_EXTRA_WARNINGS="
552 -Wdisabled-optimization
553 -Winline
554 "
555 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
556 RVCT_EXTRA_WARNINGS="
557 --remarks
558 "
559 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
560 if enabled extra_warnings; then
561 for w in ${EXTRA_WARNINGS}; do
562 check_add_cflags ${w}
563 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
564 done
565 fi
566
567 # ccache only really works on gcc toolchains
568 enabled gcc || soft_disable ccache
569 if enabled mips; then
570 enable dequant_tokens
John Koleszar7f1a9082010-09-13 09:00:24 -0400571 enable dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400572 fi
573
574 # Enable the postbuild target if building for visual studio.
575 case "$tgt_cc" in
576 vs*) enable msvs
577 enable solution
578 vs_version=${tgt_cc##vs}
579 all_targets="${all_targets} solution"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400580 ;;
581 esac
582
583 # Other toolchain specific defaults
584 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700585
Fritz Koenig692b1082010-11-10 14:51:49 -0800586 if enabled postproc_visualizer; then
587 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
588 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700589
590 # Enable unit tests if we have a working C++ compiler
591 case "$tgt_cc" in
592 vs*)
593 soft_enable unit_tests;;
594 *)
595 check_cxx "$@" <<EOF && soft_enable unit_tests
596int z;
597EOF
598 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400599}
600
601
602##
603## END APPLICATION SPECIFIC CONFIGURATION
604##
605CONFIGURE_ARGS="$@"
606process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400607print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
608cat <<EOF >> ${BUILD_PFX}vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400609static const char* const cfg = "$CONFIGURE_ARGS";
610const char *vpx_codec_build_config(void) {return cfg;}
611EOF