Removed duplicate vp8_build_intra_predictors_mb y/uv
[aom.git] / configure
blob2724c3008df4055029c2ee2774c41871a929cd63
1 #!/bin/bash
2 ##
3 ## configure
4 ##
5 ## 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.
12 ## This build system is based in part on the FFmpeg configure script.
15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
19 show_help(){
20 show_help_pre
21 cat << EOF
22 Advanced options:
23 ${toggle_libs} don't build libraries
24 ${toggle_examples} don't build examples
25 ${toggle_unit_tests} build unit tests
26 --libc=PATH path to alternate libc
27 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
28 --sdk-path=PATH path to root of sdk (iOS, android builds only)
29 ${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
33 ${toggle_md5} support for output of checksum data
34 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
35 ${toggle_vp8} VP8 codec support
36 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
37 ${toggle_mem_tracker} track memory usage
38 ${toggle_postproc} postprocessing
39 ${toggle_multithread} multithreaded encoding and decoding
40 ${toggle_spatial_resampling} spatial sampling (scaling) support
41 ${toggle_realtime_only} enable this option while building for real-time encoding
42 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
43 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
44 ${toggle_runtime_cpu_detect} runtime cpu detection
45 ${toggle_shared} shared library support
46 ${toggle_static} static library support
47 ${toggle_small} favor smaller size over speed
48 ${toggle_postproc_visualizer} macro block / block level visualizers
49 ${toggle_multi_res_encoding} enable multiple-resolution encoding
50 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
52 Codecs:
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
59 Codecs available in this distribution:
60 EOF
61 #restore editor state '
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})"
73 str="${str} $(printf '%10s' ${c#*_})"
74 last_family=${family}
75 done
76 echo "${str}"
77 show_help_post
81 ## BEGIN APPLICATION SPECIFIC CONFIGURATION
84 # all_platforms is a list of all supported target platforms. Maintain
85 # alphabetically by architecture, generic-gnu last.
86 all_platforms="${all_platforms} armv5te-android-gcc"
87 all_platforms="${all_platforms} armv5te-linux-rvct"
88 all_platforms="${all_platforms} armv5te-linux-gcc"
89 all_platforms="${all_platforms} armv5te-none-rvct"
90 all_platforms="${all_platforms} armv6-darwin-gcc"
91 all_platforms="${all_platforms} armv6-linux-rvct"
92 all_platforms="${all_platforms} armv6-linux-gcc"
93 all_platforms="${all_platforms} armv6-none-rvct"
94 all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
95 all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
96 all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
97 all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
98 all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
99 all_platforms="${all_platforms} mips32-linux-gcc"
100 all_platforms="${all_platforms} ppc32-darwin8-gcc"
101 all_platforms="${all_platforms} ppc32-darwin9-gcc"
102 all_platforms="${all_platforms} ppc32-linux-gcc"
103 all_platforms="${all_platforms} ppc64-darwin8-gcc"
104 all_platforms="${all_platforms} ppc64-darwin9-gcc"
105 all_platforms="${all_platforms} ppc64-linux-gcc"
106 all_platforms="${all_platforms} sparc-solaris-gcc"
107 all_platforms="${all_platforms} x86-darwin8-gcc"
108 all_platforms="${all_platforms} x86-darwin8-icc"
109 all_platforms="${all_platforms} x86-darwin9-gcc"
110 all_platforms="${all_platforms} x86-darwin9-icc"
111 all_platforms="${all_platforms} x86-darwin10-gcc"
112 all_platforms="${all_platforms} x86-linux-gcc"
113 all_platforms="${all_platforms} x86-linux-icc"
114 all_platforms="${all_platforms} x86-os2-gcc"
115 all_platforms="${all_platforms} x86-solaris-gcc"
116 all_platforms="${all_platforms} x86-win32-gcc"
117 all_platforms="${all_platforms} x86-win32-vs7"
118 all_platforms="${all_platforms} x86-win32-vs8"
119 all_platforms="${all_platforms} x86-win32-vs9"
120 all_platforms="${all_platforms} x86_64-darwin9-gcc"
121 all_platforms="${all_platforms} x86_64-darwin10-gcc"
122 all_platforms="${all_platforms} x86_64-darwin11-gcc"
123 all_platforms="${all_platforms} x86_64-linux-gcc"
124 all_platforms="${all_platforms} x86_64-linux-icc"
125 all_platforms="${all_platforms} x86_64-solaris-gcc"
126 all_platforms="${all_platforms} x86_64-win64-gcc"
127 all_platforms="${all_platforms} x86_64-win64-vs8"
128 all_platforms="${all_platforms} x86_64-win64-vs9"
129 all_platforms="${all_platforms} universal-darwin8-gcc"
130 all_platforms="${all_platforms} universal-darwin9-gcc"
131 all_platforms="${all_platforms} generic-gnu"
133 # all_targets is a list of all targets that can be configured
134 # note that these should be in dependency order for now.
135 all_targets="libs examples docs"
137 # all targets available are enabled, by default.
138 for t in ${all_targets}; do
139 [ -f ${source_path}/${t}.mk ] && enable ${t}
140 done
142 # check installed doxygen version
143 doxy_version=$(doxygen --version 2>/dev/null)
144 doxy_major=${doxy_version%%.*}
145 if [ ${doxy_major:-0} -ge 1 ]; then
146 doxy_version=${doxy_version#*.}
147 doxy_minor=${doxy_version%%.*}
148 doxy_patch=${doxy_version##*.}
150 [ $doxy_major -gt 1 ] && enable doxygen
151 [ $doxy_minor -gt 5 ] && enable doxygen
152 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
155 # install everything except the sources, by default. sources will have
156 # to be enabled when doing dist builds, since that's no longer a common
157 # case.
158 enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
159 enable install_bins
160 enable install_libs
162 enable static
163 enable optimizations
164 enable fast_unaligned #allow unaligned accesses, if supported by hw
165 enable md5
166 enable spatial_resampling
167 enable multithread
168 enable os_support
169 enable temporal_denoising
171 [ -d ${source_path}/../include ] && enable alt_tree_layout
172 for d in vp8; do
173 [ -d ${source_path}/${d} ] && disable alt_tree_layout;
174 done
176 if ! enabled alt_tree_layout; then
177 # development environment
178 [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
179 else
180 # customer environment
181 [ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder"
182 [ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder"
184 [ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
187 CODECS="$(echo ${CODECS} | tr ' ' '\n')"
188 CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
190 ARCH_LIST="
192 mips
194 x86_64
195 ppc32
196 ppc64
198 ARCH_EXT_LIST="
199 edsp
200 media
201 neon
203 mips32
207 sse2
208 sse3
209 ssse3
210 sse4_1
212 altivec
214 HAVE_LIST="
215 ${ARCH_EXT_LIST}
216 vpx_ports
217 stdint_h
218 alt_tree_layout
219 pthread_h
220 sys_mman_h
221 unistd_h
223 CONFIG_LIST="
224 external_build
225 install_docs
226 install_bins
227 install_libs
228 install_srcs
229 debug
230 gprof
231 gcov
232 rvct
234 msvs
236 big_endian
238 codec_srcs
239 debug_libs
240 fast_unaligned
241 mem_manager
242 mem_tracker
243 mem_checks
246 dequant_tokens
247 dc_recon
248 runtime_cpu_detect
249 postproc
250 multithread
251 internal_stats
252 ${CODECS}
253 ${CODEC_FAMILIES}
254 encoders
255 decoders
256 static_msvcrt
257 spatial_resampling
258 realtime_only
259 onthefly_bitpacking
260 error_concealment
261 shared
262 static
263 small
264 postproc_visualizer
265 os_support
266 unit_tests
267 multi_res_encoding
268 temporal_denoising
270 CMDLINE_SELECT="
271 extra_warnings
272 werror
273 install_docs
274 install_bins
275 install_libs
276 install_srcs
277 debug
278 gprof
279 gcov
281 optimizations
282 ccache
283 runtime_cpu_detect
285 libs
286 examples
287 libc
289 fast_unaligned
290 codec_srcs
291 debug_libs
294 dequant_tokens
295 dc_recon
296 postproc
297 multithread
298 internal_stats
299 ${CODECS}
300 ${CODEC_FAMILIES}
301 static_msvcrt
302 mem_tracker
303 spatial_resampling
304 realtime_only
305 onthefly_bitpacking
306 error_concealment
307 shared
308 static
309 small
310 postproc_visualizer
311 unit_tests
312 multi_res_encoding
313 temporal_denoising
316 process_cmdline() {
317 for opt do
318 optval="${opt#*=}"
319 case "$opt" in
320 --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
321 *) process_common_cmdline "$opt"
323 esac
324 done
327 post_process_cmdline() {
328 local c
330 # If the codec family is disabled, disable all components of that family.
331 # If the codec family is enabled, enable all components of that family.
332 log_echo "Configuring selected codecs"
333 for c in ${CODECS}; do
334 disabled ${c%%_*} && disable ${c}
335 enabled ${c%%_*} && enable ${c}
336 done
338 # Enable all detected codecs, if they haven't been disabled
339 for c in ${CODECS}; do soft_enable $c; done
341 # Enable the codec family if any component of that family is enabled
342 for c in ${CODECS}; do
343 enabled $c && enable ${c%_*}
344 done
346 # Set the {en,de}coders variable if any algorithm in that class is enabled
347 for c in ${CODECS}; do
348 enabled ${c} && enable ${c##*_}s
349 done
353 process_targets() {
354 enabled child || write_common_config_banner
355 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
357 # TODO: add host tools target (obj_int_extract, etc)
359 # For fat binaries, call configure recursively to configure for each
360 # binary architecture to be included.
361 if enabled universal; then
362 # Call configure (ourselves) for each subarchitecture
363 for arch in $fat_bin_archs; do
364 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
365 done
368 # The write_common_config (config.mk) logic is deferred until after the
369 # recursive calls to configure complete, becuase we want our universal
370 # targets to be executed last.
371 write_common_config_targets
372 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
374 # Calculate the default distribution name, based on the enabled features
375 local cf
376 local DIST_DIR=vpx
377 for cf in $CODEC_FAMILIES; do
378 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
379 DIST_DIR="${DIST_DIR}-${cf}"
380 elif enabled ${cf}_encoder; then
381 DIST_DIR="${DIST_DIR}-${cf}cx"
382 elif enabled ${cf}_decoder; then
383 DIST_DIR="${DIST_DIR}-${cf}dx"
385 done
386 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
387 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
388 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
389 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
390 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
391 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
392 case "${tgt_os}" in
393 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
394 DIST_DIR="${DIST_DIR}-${tgt_cc}"
396 esac
397 if [ -f "${source_path}/build/make/version.sh" ]; then
398 local ver=`"$source_path/build/make/version.sh" --bare $source_path`
399 DIST_DIR="${DIST_DIR}-${ver}"
400 VERSION_STRING=${ver}
401 ver=${ver%%-*}
402 VERSION_PATCH=${ver##*.}
403 ver=${ver%.*}
404 VERSION_MINOR=${ver##*.}
405 ver=${ver#v}
406 VERSION_MAJOR=${ver%.*}
408 enabled child || cat <<EOF >> config.mk
410 PREFIX=${prefix}
411 ifeq (\$(MAKECMDGOALS),dist)
412 DIST_DIR?=${DIST_DIR}
413 else
414 DIST_DIR?=\$(DESTDIR)${prefix}
415 endif
416 LIBSUBDIR=${libdir##${prefix}/}
418 VERSION_STRING=${VERSION_STRING}
420 VERSION_MAJOR=${VERSION_MAJOR}
421 VERSION_MINOR=${VERSION_MINOR}
422 VERSION_PATCH=${VERSION_PATCH}
424 CONFIGURE_ARGS=${CONFIGURE_ARGS}
426 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
429 # Write makefiles for all enabled targets
431 for tgt in libs examples docs solution; do
432 local tgt_fn="$tgt-$toolchain.mk"
434 if enabled $tgt; then
435 echo "Creating makefiles for ${toolchain} ${tgt}"
436 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
437 #write_${tgt}_config
439 done
443 process_detect() {
444 if enabled shared; then
445 # Can only build shared libs on a subset of platforms. Doing this check
446 # here rather than at option parse time because the target auto-detect
447 # magic happens after the command line has been parsed.
448 enabled linux || die "--enable-shared only supported on ELF for now"
450 if [ -z "$CC" ]; then
451 echo "Bypassing toolchain for environment detection."
452 enable external_build
453 check_header() {
454 log fake_check_header "$@"
455 header=$1
456 shift
457 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
458 disable $var
459 case $header in
460 stdio.h)
461 true;
464 local result=false
465 for d in "$@"; do
466 [ -f "${d##-I}/$header" ] && result=true && break
467 done
468 ${result:-true}
469 esac && enable $var
471 check_ld() {
472 true
475 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
476 check_ld <<EOF || die "Toolchain is unable to link executables"
477 int main(void) {return 0;}
479 # check system headers
480 check_header stdint.h
481 check_header pthread.h
482 check_header sys/mman.h
484 check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
487 process_toolchain() {
488 process_common_toolchain
490 # Handle universal binaries for this architecture
491 case $toolchain in
492 universal-darwin*)
493 local darwin_ver=${tgt_os##darwin}
494 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
496 # Intel
497 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
498 if [ $darwin_ver -gt 8 ]; then
499 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
502 esac
505 # Enable some useful compiler flags
506 if enabled gcc; then
507 enabled werror && check_add_cflags -Werror
508 check_add_cflags -Wall
509 check_add_cflags -Wdeclaration-after-statement
510 check_add_cflags -Wdisabled-optimization
511 check_add_cflags -Wpointer-arith
512 check_add_cflags -Wtype-limits
513 check_add_cflags -Wcast-qual
514 enabled extra_warnings || check_add_cflags -Wno-unused-function
517 if enabled icc; then
518 enabled werror && check_add_cflags -Werror
519 check_add_cflags -Wall
520 check_add_cflags -Wpointer-arith
522 # ICC has a number of floating point optimizations that we disable
523 # in favor of deterministic output WRT to other compilers
524 add_cflags -fp-model precise
527 # Enable extra, harmless warnings. These might provide additional insight
528 # to what the compiler is doing and why, but in general, but they shouldn't
529 # be treated as fatal, even if we're treating warnings as errors.
530 GCC_EXTRA_WARNINGS="
531 -Wdisabled-optimization
532 -Winline
534 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
535 RVCT_EXTRA_WARNINGS="
536 --remarks
538 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
539 if enabled extra_warnings; then
540 for w in ${EXTRA_WARNINGS}; do
541 check_add_cflags ${w}
542 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
543 done
546 # ccache only really works on gcc toolchains
547 enabled gcc || soft_disable ccache
548 if enabled mips; then
549 enable dequant_tokens
550 enable dc_recon
553 # Enable the postbuild target if building for visual studio.
554 case "$tgt_cc" in
555 vs*) enable msvs
556 enable solution
557 vs_version=${tgt_cc##vs}
558 all_targets="${all_targets} solution"
560 esac
562 # Other toolchain specific defaults
563 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
565 if enabled postproc_visualizer; then
566 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
572 ## END APPLICATION SPECIFIC CONFIGURATION
574 CONFIGURE_ARGS="$@"
575 process "$@"
576 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
577 cat <<EOF >> ${BUILD_PFX}vpx_config.c
578 static const char* const cfg = "$CONFIGURE_ARGS";
579 const char *vpx_codec_build_config(void) {return cfg;}