blob: 3e1e0e5e15f09ef8ba414ec31883e7ea587e1932 [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
25 --libc=PATH path to alternate libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +020026 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
John Koleszar0ea50ce2010-05-18 11:58:33 -040027 ${toggle_fast_unaligned} don't use unaligned accesses, even when
28 supported by hardware [auto]
29 ${toggle_codec_srcs} in/exclude codec library source code
30 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040031 ${toggle_md5} support for output of checksum data
32 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
33 ${toggle_vp8} VP8 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070034 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040035 ${toggle_mem_tracker} track memory usage
John Koleszar0ea50ce2010-05-18 11:58:33 -040036 ${toggle_postproc} postprocessing
37 ${toggle_multithread} multithreaded encoding and decoding.
38 ${toggle_spatial_resampling} spatial sampling (scaling) support
39 ${toggle_realtime_only} enable this option while building for real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020040 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
John Koleszar0ea50ce2010-05-18 11:58:33 -040041 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040042 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070043 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040044 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070045 ${toggle_postproc_visualizer} macro block / block level visualizers
John Koleszar0ea50ce2010-05-18 11:58:33 -040046
47Codecs:
48 Codecs can be selectively enabled or disabled individually, or by family:
49 --disable-<codec>
50 is equivalent to:
51 --disable-<codec>-encoder
52 --disable-<codec>-decoder
53
54 Codecs available in this distribution:
55EOF
56#restore editor state '
57
58 local family;
59 local last_family;
60 local c;
61 local str;
62 for c in ${CODECS}; do
63 family=${c%_*}
64 if [ "${family}" != "${last_family}" ]; then
65 [ -z "${str}" ] || echo "${str}"
66 str="$(printf ' %10s:' ${family})"
67 fi
68 str="${str} $(printf '%10s' ${c#*_})"
69 last_family=${family}
70 done
71 echo "${str}"
72 show_help_post
73}
74
75##
76## BEGIN APPLICATION SPECIFIC CONFIGURATION
77##
78
79# all_platforms is a list of all supported target platforms. Maintain
80# alphabetically by architecture, generic-gnu last.
81all_platforms="${all_platforms} armv5te-linux-rvct"
82all_platforms="${all_platforms} armv5te-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020083all_platforms="${all_platforms} armv5te-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040084all_platforms="${all_platforms} armv5te-symbian-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040085all_platforms="${all_platforms} armv6-darwin-gcc"
86all_platforms="${all_platforms} armv6-linux-rvct"
87all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020088all_platforms="${all_platforms} armv6-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040089all_platforms="${all_platforms} armv6-symbian-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040090all_platforms="${all_platforms} iwmmxt-linux-rvct"
91all_platforms="${all_platforms} iwmmxt-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040092all_platforms="${all_platforms} iwmmxt2-linux-rvct"
93all_platforms="${all_platforms} iwmmxt2-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040094all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
95all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
96all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020097all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -040098all_platforms="${all_platforms} mips32-linux-gcc"
99all_platforms="${all_platforms} ppc32-darwin8-gcc"
100all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400101all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400102all_platforms="${all_platforms} ppc64-darwin8-gcc"
103all_platforms="${all_platforms} ppc64-darwin9-gcc"
104all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400105all_platforms="${all_platforms} sparc-solaris-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400106all_platforms="${all_platforms} x86-darwin8-gcc"
107all_platforms="${all_platforms} x86-darwin8-icc"
108all_platforms="${all_platforms} x86-darwin9-gcc"
109all_platforms="${all_platforms} x86-darwin9-icc"
110all_platforms="${all_platforms} x86-linux-gcc"
111all_platforms="${all_platforms} x86-linux-icc"
112all_platforms="${all_platforms} x86-solaris-gcc"
113all_platforms="${all_platforms} x86-win32-gcc"
114all_platforms="${all_platforms} x86-win32-vs7"
115all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400116all_platforms="${all_platforms} x86-win32-vs9"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400117all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500118all_platforms="${all_platforms} x86_64-darwin10-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400119all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400120all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400121all_platforms="${all_platforms} x86_64-solaris-gcc"
122all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400123all_platforms="${all_platforms} x86_64-win64-vs9"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400124all_platforms="${all_platforms} universal-darwin8-gcc"
125all_platforms="${all_platforms} universal-darwin9-gcc"
126all_platforms="${all_platforms} generic-gnu"
127
128# all_targets is a list of all targets that can be configured
129# note that these should be in dependency order for now.
130all_targets="libs examples docs"
131
132# all targets available are enabled, by default.
133for t in ${all_targets}; do
134 [ -f ${source_path}/${t}.mk ] && enable ${t}
135done
136
137# check installed doxygen version
138doxy_version=$(doxygen --version 2>/dev/null)
139doxy_major=${doxy_version%%.*}
140if [ ${doxy_major:-0} -ge 1 ]; then
141 doxy_version=${doxy_version#*.}
142 doxy_minor=${doxy_version%%.*}
143 doxy_patch=${doxy_version##*.}
144
145 [ $doxy_major -gt 1 ] && enable doxygen
146 [ $doxy_minor -gt 5 ] && enable doxygen
147 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
148fi
149
John Koleszaree8bcb12010-05-24 10:16:44 -0400150# install everything except the sources, by default. sources will have
151# to be enabled when doing dist builds, since that's no longer a common
152# case.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400153enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
154enable install_bins
155enable install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400156
James Zern495b2412011-07-25 15:40:36 -0700157enable static
John Koleszar0ea50ce2010-05-18 11:58:33 -0400158enable optimizations
159enable fast_unaligned #allow unaligned accesses, if supported by hw
160enable md5
161enable spatial_resampling
162enable multithread
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200163enable os_support
John Koleszar0ea50ce2010-05-18 11:58:33 -0400164
165[ -d ${source_path}/../include ] && enable alt_tree_layout
166for d in vp8; do
167 [ -d ${source_path}/${d} ] && disable alt_tree_layout;
168done
169
170if ! enabled alt_tree_layout; then
171# development environment
172[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
173else
174# customer environment
John Koleszarb7492342010-05-24 11:39:59 -0400175[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
176[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400177
178[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
179fi
180
181CODECS="$(echo ${CODECS} | tr ' ' '\n')"
182CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
183
184ARCH_LIST="
185 arm
186 mips
187 x86
188 x86_64
189 ppc32
190 ppc64
191"
192ARCH_EXT_LIST="
193 armv5te
194 armv6
195 armv7
196 iwmmxt
197 iwmmxt2
198
199 mips32
200
201 mmx
202 sse
203 sse2
204 sse3
205 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400206 sse4_1
John Koleszar0ea50ce2010-05-18 11:58:33 -0400207
208 altivec
209"
210HAVE_LIST="
211 ${ARCH_EXT_LIST}
212 vpx_ports
213 stdint_h
214 alt_tree_layout
215 pthread_h
216 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200217 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400218"
219CONFIG_LIST="
220 external_build
221 install_docs
222 install_bins
223 install_libs
224 install_srcs
225 debug
226 gprof
227 gcov
228 rvct
229 gcc
230 msvs
231 pic
232 big_endian
233
234 codec_srcs
235 debug_libs
236 fast_unaligned
237 mem_manager
238 mem_tracker
239 mem_checks
240 md5
241
242 dequant_tokens
243 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400244 runtime_cpu_detect
245 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400246 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700247 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400248 ${CODECS}
249 ${CODEC_FAMILIES}
250 encoders
251 decoders
252 static_msvcrt
253 spatial_resampling
254 realtime_only
Stefan Holmerd04f8522011-05-02 15:30:51 +0200255 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400256 shared
James Zern495b2412011-07-25 15:40:36 -0700257 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400258 small
Fritz Koenig647df002010-11-04 16:03:36 -0700259 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200260 os_support
John Koleszar0ea50ce2010-05-18 11:58:33 -0400261"
262CMDLINE_SELECT="
263 extra_warnings
264 werror
265 install_docs
266 install_bins
267 install_libs
268 install_srcs
269 debug
270 gprof
271 gcov
272 pic
273 optimizations
274 ccache
275 runtime_cpu_detect
276
277 libs
278 examples
279 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200280 as
John Koleszar0ea50ce2010-05-18 11:58:33 -0400281 fast_unaligned
282 codec_srcs
283 debug_libs
284 md5
285
286 dequant_tokens
287 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400288 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400289 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700290 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400291 ${CODECS}
292 ${CODEC_FAMILIES}
293 static_msvcrt
294 mem_tracker
295 spatial_resampling
296 realtime_only
Stefan Holmerd04f8522011-05-02 15:30:51 +0200297 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400298 shared
James Zern495b2412011-07-25 15:40:36 -0700299 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400300 small
Fritz Koenig647df002010-11-04 16:03:36 -0700301 postproc_visualizer
John Koleszar0ea50ce2010-05-18 11:58:33 -0400302"
303
304process_cmdline() {
305 for opt do
306 optval="${opt#*=}"
307 case "$opt" in
308 --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
Attila Nagy41955322011-01-20 14:46:57 +0200309 *) process_common_cmdline "$opt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400310 ;;
311 esac
312 done
313}
314
315post_process_cmdline() {
316 local c
317
318 # If the codec family is disabled, disable all components of that family.
319 # If the codec family is enabled, enable all components of that family.
320 log_echo "Configuring selected codecs"
321 for c in ${CODECS}; do
322 disabled ${c%%_*} && disable ${c}
323 enabled ${c%%_*} && enable ${c}
324 done
325
326 # Enable all detected codecs, if they haven't been disabled
327 for c in ${CODECS}; do soft_enable $c; done
328
329 # Enable the codec family if any component of that family is enabled
330 for c in ${CODECS}; do
331 enabled $c && enable ${c%_*}
332 done
333
334 # Set the {en,de}coders variable if any algorithm in that class is enabled
335 for c in ${CODECS}; do
336 enabled ${c} && enable ${c##*_}s
337 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400338}
339
340
341process_targets() {
342 enabled child || write_common_config_banner
343 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
344
345 # TODO: add host tools target (obj_int_extract, etc)
346
347 # For fat binaries, call configure recursively to configure for each
348 # binary architecture to be included.
349 if enabled universal; then
350 # Call configure (ourselves) for each subarchitecture
351 for arch in $fat_bin_archs; do
352 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
353 done
354 fi
355
356 # The write_common_config (config.mk) logic is deferred until after the
357 # recursive calls to configure complete, becuase we want our universal
358 # targets to be executed last.
359 write_common_config_targets
360 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
361
362 # Calculate the default distribution name, based on the enabled features
363 local cf
364 local DIST_DIR=vpx
365 for cf in $CODEC_FAMILIES; do
366 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
367 DIST_DIR="${DIST_DIR}-${cf}"
368 elif enabled ${cf}_encoder; then
369 DIST_DIR="${DIST_DIR}-${cf}cx"
370 elif enabled ${cf}_decoder; then
371 DIST_DIR="${DIST_DIR}-${cf}dx"
372 fi
373 done
374 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
375 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
376 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
377 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400378 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
379 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
380 case "${tgt_os}" in
381 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
382 DIST_DIR="${DIST_DIR}-${tgt_cc}"
383 ;;
384 esac
385 if [ -f "${source_path}/build/make/version.sh" ]; then
386 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
387 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700388 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400389 ver=${ver%%-*}
390 VERSION_PATCH=${ver##*.}
391 ver=${ver%.*}
392 VERSION_MINOR=${ver##*.}
393 ver=${ver#v}
394 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400395 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400396 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700397
398PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400399ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400400DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400401else
John Koleszar670af3a2010-05-26 15:57:42 -0400402DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400403endif
John Koleszar670af3a2010-05-26 15:57:42 -0400404LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400405
Ralph Giles53e99872011-03-28 11:36:53 -0700406VERSION_STRING=${VERSION_STRING}
407
John Koleszar7aa97a32010-06-03 10:29:04 -0400408VERSION_MAJOR=${VERSION_MAJOR}
409VERSION_MINOR=${VERSION_MINOR}
410VERSION_PATCH=${VERSION_PATCH}
411
John Koleszar23d68a52010-06-22 09:53:23 -0400412CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400413EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400414 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
415
416 #
417 # Write makefiles for all enabled targets
418 #
419 for tgt in libs examples docs solution; do
420 local tgt_fn="$tgt-$toolchain.mk"
421
422 if enabled $tgt; then
423 echo "Creating makefiles for ${toolchain} ${tgt}"
424 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
425 #write_${tgt}_config
426 fi
427 done
428
429}
430
431process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400432 if enabled shared; then
433 # Can only build shared libs on a subset of platforms. Doing this check
434 # here rather than at option parse time because the target auto-detect
435 # magic happens after the command line has been parsed.
John Koleszar7f1a9082010-09-13 09:00:24 -0400436 enabled linux || die "--enable-shared only supported on ELF for now"
John Koleszar7aa97a32010-06-03 10:29:04 -0400437 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400438 if [ -z "$CC" ]; then
439 echo "Bypassing toolchain for environment detection."
440 enable external_build
441 check_header() {
442 log fake_check_header "$@"
443 header=$1
444 shift
445 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
446 disable $var
447 case $header in
448 stdio.h)
449 true;
450 ;;
451 *)
452 local result=false
453 for d in "$@"; do
454 [ -f "${d##-I}/$header" ] && result=true && break
455 done
456 ${result:-true}
457 esac && enable $var
458 }
459 check_ld() {
460 true
461 }
462 fi
463 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
464 check_ld <<EOF || die "Toolchain is unable to link executables"
465int main(void) {return 0;}
466EOF
467 # check system headers
468 check_header stdint.h
469 check_header pthread.h
470 check_header sys/mman.h
471
John Koleszarb7492342010-05-24 11:39:59 -0400472 check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400473}
474
475process_toolchain() {
476 process_common_toolchain
477
478 # Handle universal binaries for this architecture
479 case $toolchain in
480 universal-darwin*)
481 local darwin_ver=${tgt_os##darwin}
482 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
483
484 # Intel
485 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
486 if [ $darwin_ver -gt 8 ]; then
487 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
488 fi
489 ;;
490 esac
491
492
493 # Enable some useful compiler flags
494 if enabled gcc; then
495 enabled werror && check_add_cflags -Werror
496 check_add_cflags -Wall
497 check_add_cflags -Wdeclaration-after-statement
498 check_add_cflags -Wdisabled-optimization
499 check_add_cflags -Wpointer-arith
500 check_add_cflags -Wtype-limits
501 check_add_cflags -Wcast-qual
John Koleszarb601eb82011-02-04 11:51:21 -0500502 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400503 fi
504
505 if enabled icc; then
506 enabled werror && check_add_cflags -Werror
507 check_add_cflags -Wall
508 check_add_cflags -Wpointer-arith
509
510 # ICC has a number of floating point optimizations that we disable
511 # in favor of deterministic output WRT to other compilers
512 add_cflags -fp-model precise
513 fi
514
515 # Enable extra, harmless warnings. These might provide additional insight
516 # to what the compiler is doing and why, but in general, but they shouldn't
517 # be treated as fatal, even if we're treating warnings as errors.
518 GCC_EXTRA_WARNINGS="
519 -Wdisabled-optimization
520 -Winline
521 "
522 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
523 RVCT_EXTRA_WARNINGS="
524 --remarks
525 "
526 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
527 if enabled extra_warnings; then
528 for w in ${EXTRA_WARNINGS}; do
529 check_add_cflags ${w}
530 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
531 done
532 fi
533
534 # ccache only really works on gcc toolchains
535 enabled gcc || soft_disable ccache
536 if enabled mips; then
537 enable dequant_tokens
John Koleszar7f1a9082010-09-13 09:00:24 -0400538 enable dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400539 fi
540
541 # Enable the postbuild target if building for visual studio.
542 case "$tgt_cc" in
543 vs*) enable msvs
544 enable solution
545 vs_version=${tgt_cc##vs}
546 all_targets="${all_targets} solution"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400547 ;;
548 esac
549
550 # Other toolchain specific defaults
551 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700552
Fritz Koenig692b1082010-11-10 14:51:49 -0800553 if enabled postproc_visualizer; then
554 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
555 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400556}
557
558
559##
560## END APPLICATION SPECIFIC CONFIGURATION
561##
562CONFIGURE_ARGS="$@"
563process "$@"
564cat <<EOF > ${BUILD_PFX}vpx_config.c
565static const char* const cfg = "$CONFIGURE_ARGS";
566const char *vpx_codec_build_config(void) {return cfg;}
567EOF