blob: 5a502ae33bc116c41075925f7004292ead7c969a [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
34 ${toggle_psnr} output of PSNR data, if supported (encoders)
35 ${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
40 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040041 ${toggle_shared} shared library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040042 ${toggle_small} favor smaller size over speed
Johann96027992010-08-12 09:05:37 -040043 ${toggle_arm_asm_detok} assembly version of the detokenizer (ARM platforms only)
Fritz Koenig647df002010-11-04 16:03:36 -070044 ${toggle_postproc_visualizer} macro block / block level visualizers
John Koleszar0ea50ce2010-05-18 11:58:33 -040045
46Codecs:
47 Codecs can be selectively enabled or disabled individually, or by family:
48 --disable-<codec>
49 is equivalent to:
50 --disable-<codec>-encoder
51 --disable-<codec>-decoder
52
53 Codecs available in this distribution:
54EOF
55#restore editor state '
56
57 local family;
58 local last_family;
59 local c;
60 local str;
61 for c in ${CODECS}; do
62 family=${c%_*}
63 if [ "${family}" != "${last_family}" ]; then
64 [ -z "${str}" ] || echo "${str}"
65 str="$(printf ' %10s:' ${family})"
66 fi
67 str="${str} $(printf '%10s' ${c#*_})"
68 last_family=${family}
69 done
70 echo "${str}"
71 show_help_post
72}
73
74##
75## BEGIN APPLICATION SPECIFIC CONFIGURATION
76##
77
78# all_platforms is a list of all supported target platforms. Maintain
79# alphabetically by architecture, generic-gnu last.
80all_platforms="${all_platforms} armv5te-linux-rvct"
81all_platforms="${all_platforms} armv5te-linux-gcc"
82all_platforms="${all_platforms} armv5te-symbian-gcc"
83all_platforms="${all_platforms} armv5te-wince-vs8"
84all_platforms="${all_platforms} armv6-darwin-gcc"
85all_platforms="${all_platforms} armv6-linux-rvct"
86all_platforms="${all_platforms} armv6-linux-gcc"
87all_platforms="${all_platforms} armv6-symbian-gcc"
88all_platforms="${all_platforms} armv6-wince-vs8"
89all_platforms="${all_platforms} iwmmxt-linux-rvct"
90all_platforms="${all_platforms} iwmmxt-linux-gcc"
91all_platforms="${all_platforms} iwmmxt-wince-vs8"
92all_platforms="${all_platforms} iwmmxt2-linux-rvct"
93all_platforms="${all_platforms} iwmmxt2-linux-gcc"
94all_platforms="${all_platforms} iwmmxt2-wince-vs8"
95all_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
98all_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
157enable optimizations
158enable fast_unaligned #allow unaligned accesses, if supported by hw
159enable md5
160enable spatial_resampling
161enable multithread
162
163[ -d ${source_path}/../include ] && enable alt_tree_layout
164for d in vp8; do
165 [ -d ${source_path}/${d} ] && disable alt_tree_layout;
166done
167
168if ! enabled alt_tree_layout; then
169# development environment
170[ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
171else
172# customer environment
John Koleszarb7492342010-05-24 11:39:59 -0400173[ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
174[ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400175
176[ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
177fi
178
179CODECS="$(echo ${CODECS} | tr ' ' '\n')"
180CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
181
182ARCH_LIST="
183 arm
184 mips
185 x86
186 x86_64
187 ppc32
188 ppc64
189"
190ARCH_EXT_LIST="
191 armv5te
192 armv6
193 armv7
194 iwmmxt
195 iwmmxt2
196
197 mips32
198
199 mmx
200 sse
201 sse2
202 sse3
203 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400204 sse4_1
John Koleszar0ea50ce2010-05-18 11:58:33 -0400205
206 altivec
207"
208HAVE_LIST="
209 ${ARCH_EXT_LIST}
210 vpx_ports
211 stdint_h
212 alt_tree_layout
213 pthread_h
214 sys_mman_h
215"
216CONFIG_LIST="
217 external_build
218 install_docs
219 install_bins
220 install_libs
221 install_srcs
222 debug
223 gprof
224 gcov
225 rvct
226 gcc
227 msvs
228 pic
229 big_endian
230
231 codec_srcs
232 debug_libs
233 fast_unaligned
234 mem_manager
235 mem_tracker
236 mem_checks
237 md5
238
239 dequant_tokens
240 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400241 runtime_cpu_detect
242 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400243 multithread
244 psnr
245 ${CODECS}
246 ${CODEC_FAMILIES}
247 encoders
248 decoders
249 static_msvcrt
250 spatial_resampling
251 realtime_only
John Koleszar7aa97a32010-06-03 10:29:04 -0400252 shared
John Koleszarf9b2ca52010-09-21 10:06:41 -0400253 small
Johann96027992010-08-12 09:05:37 -0400254 arm_asm_detok
Fritz Koenig647df002010-11-04 16:03:36 -0700255 postproc_visualizer
John Koleszar0ea50ce2010-05-18 11:58:33 -0400256"
257CMDLINE_SELECT="
258 extra_warnings
259 werror
260 install_docs
261 install_bins
262 install_libs
263 install_srcs
264 debug
265 gprof
266 gcov
267 pic
268 optimizations
269 ccache
270 runtime_cpu_detect
271
272 libs
273 examples
274 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200275 as
John Koleszar0ea50ce2010-05-18 11:58:33 -0400276 fast_unaligned
277 codec_srcs
278 debug_libs
279 md5
280
281 dequant_tokens
282 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400283 postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400284 multithread
285 psnr
286 ${CODECS}
287 ${CODEC_FAMILIES}
288 static_msvcrt
289 mem_tracker
290 spatial_resampling
291 realtime_only
John Koleszar7aa97a32010-06-03 10:29:04 -0400292 shared
John Koleszarf9b2ca52010-09-21 10:06:41 -0400293 small
Johann96027992010-08-12 09:05:37 -0400294 arm_asm_detok
Fritz Koenig647df002010-11-04 16:03:36 -0700295 postproc_visualizer
John Koleszar0ea50ce2010-05-18 11:58:33 -0400296"
297
298process_cmdline() {
299 for opt do
300 optval="${opt#*=}"
301 case "$opt" in
302 --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
303 *) process_common_cmdline $opt
304 ;;
305 esac
306 done
307}
308
309post_process_cmdline() {
310 local c
311
312 # If the codec family is disabled, disable all components of that family.
313 # If the codec family is enabled, enable all components of that family.
314 log_echo "Configuring selected codecs"
315 for c in ${CODECS}; do
316 disabled ${c%%_*} && disable ${c}
317 enabled ${c%%_*} && enable ${c}
318 done
319
320 # Enable all detected codecs, if they haven't been disabled
321 for c in ${CODECS}; do soft_enable $c; done
322
323 # Enable the codec family if any component of that family is enabled
324 for c in ${CODECS}; do
325 enabled $c && enable ${c%_*}
326 done
327
328 # Set the {en,de}coders variable if any algorithm in that class is enabled
329 for c in ${CODECS}; do
330 enabled ${c} && enable ${c##*_}s
331 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400332}
333
334
335process_targets() {
336 enabled child || write_common_config_banner
337 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
338
339 # TODO: add host tools target (obj_int_extract, etc)
340
341 # For fat binaries, call configure recursively to configure for each
342 # binary architecture to be included.
343 if enabled universal; then
344 # Call configure (ourselves) for each subarchitecture
345 for arch in $fat_bin_archs; do
346 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
347 done
348 fi
349
350 # The write_common_config (config.mk) logic is deferred until after the
351 # recursive calls to configure complete, becuase we want our universal
352 # targets to be executed last.
353 write_common_config_targets
354 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
355
356 # Calculate the default distribution name, based on the enabled features
357 local cf
358 local DIST_DIR=vpx
359 for cf in $CODEC_FAMILIES; do
360 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
361 DIST_DIR="${DIST_DIR}-${cf}"
362 elif enabled ${cf}_encoder; then
363 DIST_DIR="${DIST_DIR}-${cf}cx"
364 elif enabled ${cf}_decoder; then
365 DIST_DIR="${DIST_DIR}-${cf}dx"
366 fi
367 done
368 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
369 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
370 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
371 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400372 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
373 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
374 case "${tgt_os}" in
375 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
376 DIST_DIR="${DIST_DIR}-${tgt_cc}"
377 ;;
378 esac
379 if [ -f "${source_path}/build/make/version.sh" ]; then
380 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
381 DIST_DIR="${DIST_DIR}-${ver}"
John Koleszar7aa97a32010-06-03 10:29:04 -0400382 ver=${ver%%-*}
383 VERSION_PATCH=${ver##*.}
384 ver=${ver%.*}
385 VERSION_MINOR=${ver##*.}
386 ver=${ver#v}
387 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400388 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400389 enabled child || cat <<EOF >> config.mk
390ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400391DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400392else
John Koleszar670af3a2010-05-26 15:57:42 -0400393DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400394endif
John Koleszar670af3a2010-05-26 15:57:42 -0400395LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400396
397VERSION_MAJOR=${VERSION_MAJOR}
398VERSION_MINOR=${VERSION_MINOR}
399VERSION_PATCH=${VERSION_PATCH}
400
John Koleszar23d68a52010-06-22 09:53:23 -0400401CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400402EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400403 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
404
405 #
406 # Write makefiles for all enabled targets
407 #
408 for tgt in libs examples docs solution; do
409 local tgt_fn="$tgt-$toolchain.mk"
410
411 if enabled $tgt; then
412 echo "Creating makefiles for ${toolchain} ${tgt}"
413 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
414 #write_${tgt}_config
415 fi
416 done
417
418}
419
420process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400421 if enabled shared; then
422 # Can only build shared libs on a subset of platforms. Doing this check
423 # here rather than at option parse time because the target auto-detect
424 # magic happens after the command line has been parsed.
John Koleszar7f1a9082010-09-13 09:00:24 -0400425 enabled linux || die "--enable-shared only supported on ELF for now"
John Koleszar7aa97a32010-06-03 10:29:04 -0400426 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400427 if [ -z "$CC" ]; then
428 echo "Bypassing toolchain for environment detection."
429 enable external_build
430 check_header() {
431 log fake_check_header "$@"
432 header=$1
433 shift
434 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
435 disable $var
436 case $header in
437 stdio.h)
438 true;
439 ;;
440 *)
441 local result=false
442 for d in "$@"; do
443 [ -f "${d##-I}/$header" ] && result=true && break
444 done
445 ${result:-true}
446 esac && enable $var
447 }
448 check_ld() {
449 true
450 }
451 fi
452 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
453 check_ld <<EOF || die "Toolchain is unable to link executables"
454int main(void) {return 0;}
455EOF
456 # check system headers
457 check_header stdint.h
458 check_header pthread.h
459 check_header sys/mman.h
460
John Koleszarb7492342010-05-24 11:39:59 -0400461 check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400462}
463
464process_toolchain() {
465 process_common_toolchain
466
467 # Handle universal binaries for this architecture
468 case $toolchain in
469 universal-darwin*)
470 local darwin_ver=${tgt_os##darwin}
471 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
472
473 # Intel
474 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
475 if [ $darwin_ver -gt 8 ]; then
476 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
477 fi
478 ;;
479 esac
480
481
482 # Enable some useful compiler flags
483 if enabled gcc; then
484 enabled werror && check_add_cflags -Werror
485 check_add_cflags -Wall
486 check_add_cflags -Wdeclaration-after-statement
487 check_add_cflags -Wdisabled-optimization
488 check_add_cflags -Wpointer-arith
489 check_add_cflags -Wtype-limits
490 check_add_cflags -Wcast-qual
491 enabled extra_warnings || check_add_cflags -Wno-unused
492 fi
493
494 if enabled icc; then
495 enabled werror && check_add_cflags -Werror
496 check_add_cflags -Wall
497 check_add_cflags -Wpointer-arith
498
499 # ICC has a number of floating point optimizations that we disable
500 # in favor of deterministic output WRT to other compilers
501 add_cflags -fp-model precise
502 fi
503
504 # Enable extra, harmless warnings. These might provide additional insight
505 # to what the compiler is doing and why, but in general, but they shouldn't
506 # be treated as fatal, even if we're treating warnings as errors.
507 GCC_EXTRA_WARNINGS="
508 -Wdisabled-optimization
509 -Winline
510 "
511 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
512 RVCT_EXTRA_WARNINGS="
513 --remarks
514 "
515 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
516 if enabled extra_warnings; then
517 for w in ${EXTRA_WARNINGS}; do
518 check_add_cflags ${w}
519 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
520 done
521 fi
522
523 # ccache only really works on gcc toolchains
524 enabled gcc || soft_disable ccache
525 if enabled mips; then
526 enable dequant_tokens
John Koleszar7f1a9082010-09-13 09:00:24 -0400527 enable dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400528 fi
529
530 # Enable the postbuild target if building for visual studio.
531 case "$tgt_cc" in
532 vs*) enable msvs
533 enable solution
534 vs_version=${tgt_cc##vs}
535 all_targets="${all_targets} solution"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400536 ;;
537 esac
538
539 # Other toolchain specific defaults
540 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700541
Fritz Koenig692b1082010-11-10 14:51:49 -0800542 if enabled postproc_visualizer; then
543 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
544 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400545}
546
547
548##
549## END APPLICATION SPECIFIC CONFIGURATION
550##
551CONFIGURE_ARGS="$@"
552process "$@"
553cat <<EOF > ${BUILD_PFX}vpx_config.c
554static const char* const cfg = "$CONFIGURE_ARGS";
555const char *vpx_codec_build_config(void) {return cfg;}
556EOF