multi-res: restore v1.0.0 API
[profile/ivi/libvpx.git] / configure
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.
11 ##
12 ##  This build system is based in part on the FFmpeg configure script.
13 ##
14
15 #source_path="`dirname \"$0\"`"
16 source_path=${0%/*}
17 . "${source_path}/build/make/configure.sh"
18
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
51
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
58
59   Codecs available in this distribution:
60 EOF
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.
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"
132
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"
136
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
141
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##*.}
149
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
153 fi
154
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
161
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
170
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
175
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"
183 [ -f ${source_path}/../include/vpx/vp8cx.h ] || disable vp8_encoder
184 [ -f ${source_path}/../include/vpx/vp8dx.h ] || disable vp8_decoder
185
186 [ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
187 fi
188
189 CODECS="$(echo ${CODECS} | tr ' ' '\n')"
190 CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
191
192 ARCH_LIST="
193     arm
194     mips
195     x86
196     x86_64
197     ppc32
198     ppc64
199 "
200 ARCH_EXT_LIST="
201     edsp
202     media
203     neon
204
205     mips32
206
207     mmx
208     sse
209     sse2
210     sse3
211     ssse3
212     sse4_1
213
214     altivec
215 "
216 HAVE_LIST="
217     ${ARCH_EXT_LIST}
218     vpx_ports
219     stdint_h
220     alt_tree_layout
221     pthread_h
222     sys_mman_h
223     unistd_h
224 "
225 CONFIG_LIST="
226     external_build
227     install_docs
228     install_bins
229     install_libs
230     install_srcs
231     debug
232     gprof
233     gcov
234     rvct
235     gcc
236     msvs
237     pic
238     big_endian
239
240     codec_srcs
241     debug_libs
242     fast_unaligned
243     mem_manager
244     mem_tracker
245     mem_checks
246     md5
247
248     dequant_tokens
249     dc_recon
250     runtime_cpu_detect
251     postproc
252     multithread
253     internal_stats
254     ${CODECS}
255     ${CODEC_FAMILIES}
256     encoders
257     decoders
258     static_msvcrt
259     spatial_resampling
260     realtime_only
261     onthefly_bitpacking
262     error_concealment
263     shared
264     static
265     small
266     postproc_visualizer
267     os_support
268     unit_tests
269     multi_res_encoding
270     temporal_denoising
271 "
272 CMDLINE_SELECT="
273     extra_warnings
274     werror
275     install_docs
276     install_bins
277     install_libs
278     install_srcs
279     debug
280     gprof
281     gcov
282     pic
283     optimizations
284     ccache
285     runtime_cpu_detect
286
287     libs
288     examples
289     libc
290     as
291     fast_unaligned
292     codec_srcs
293     debug_libs
294     md5
295
296     dequant_tokens
297     dc_recon
298     postproc
299     multithread
300     internal_stats
301     ${CODECS}
302     ${CODEC_FAMILIES}
303     static_msvcrt
304     mem_tracker
305     spatial_resampling
306     realtime_only
307     onthefly_bitpacking
308     error_concealment
309     shared
310     static
311     small
312     postproc_visualizer
313     unit_tests
314     multi_res_encoding
315     temporal_denoising
316 "
317
318 process_cmdline() {
319     for opt do
320         optval="${opt#*=}"
321         case "$opt" in
322         --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
323         *) process_common_cmdline "$opt"
324         ;;
325         esac
326     done
327 }
328
329 post_process_cmdline() {
330     local c
331
332     # If the codec family is disabled, disable all components of that family.
333     # If the codec family is enabled, enable all components of that family.
334     log_echo "Configuring selected codecs"
335     for c in ${CODECS}; do
336         disabled ${c%%_*} && disable ${c}
337         enabled ${c%%_*} && enable ${c}
338     done
339
340     # Enable all detected codecs, if they haven't been disabled
341     for c in ${CODECS}; do soft_enable $c; done
342
343     # Enable the codec family if any component of that family is enabled
344     for c in ${CODECS}; do
345         enabled $c && enable ${c%_*}
346     done
347
348     # Set the {en,de}coders variable if any algorithm in that class is enabled
349     for c in ${CODECS}; do
350         enabled ${c} && enable ${c##*_}s
351     done
352 }
353
354
355 process_targets() {
356     enabled child || write_common_config_banner
357     enabled universal || write_common_target_config_h  ${BUILD_PFX}vpx_config.h
358
359     # TODO: add host tools target (obj_int_extract, etc)
360
361     # For fat binaries, call configure recursively to configure for each
362     # binary architecture to be included.
363     if enabled universal; then
364         # Call configure (ourselves) for each subarchitecture
365         for arch in $fat_bin_archs; do
366             BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
367         done
368     fi
369
370     # The write_common_config (config.mk) logic is deferred until after the
371     # recursive calls to configure complete, becuase we want our universal
372     # targets to be executed last.
373     write_common_config_targets
374     enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
375
376     # Calculate the default distribution name, based on the enabled features
377     local cf
378     local DIST_DIR=vpx
379     for cf in $CODEC_FAMILIES; do
380         if enabled ${cf}_encoder && enabled ${cf}_decoder; then
381             DIST_DIR="${DIST_DIR}-${cf}"
382         elif enabled ${cf}_encoder; then
383             DIST_DIR="${DIST_DIR}-${cf}cx"
384         elif enabled ${cf}_decoder; then
385             DIST_DIR="${DIST_DIR}-${cf}dx"
386         fi
387     done
388     enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
389     enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
390     ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
391     ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
392     ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
393     DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
394     case "${tgt_os}" in
395     win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
396           DIST_DIR="${DIST_DIR}-${tgt_cc}"
397           ;;
398     esac
399     if [ -f "${source_path}/build/make/version.sh" ]; then
400         local ver=`"$source_path/build/make/version.sh" --bare $source_path`
401         DIST_DIR="${DIST_DIR}-${ver}"
402         VERSION_STRING=${ver}
403         ver=${ver%%-*}
404         VERSION_PATCH=${ver##*.}
405         ver=${ver%.*}
406         VERSION_MINOR=${ver##*.}
407         ver=${ver#v}
408         VERSION_MAJOR=${ver%.*}
409     fi
410     enabled child || cat <<EOF >> config.mk
411
412 PREFIX=${prefix}
413 ifeq (\$(MAKECMDGOALS),dist)
414 DIST_DIR?=${DIST_DIR}
415 else
416 DIST_DIR?=\$(DESTDIR)${prefix}
417 endif
418 LIBSUBDIR=${libdir##${prefix}/}
419
420 VERSION_STRING=${VERSION_STRING}
421
422 VERSION_MAJOR=${VERSION_MAJOR}
423 VERSION_MINOR=${VERSION_MINOR}
424 VERSION_PATCH=${VERSION_PATCH}
425
426 CONFIGURE_ARGS=${CONFIGURE_ARGS}
427 EOF
428     enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
429
430     #
431     # Write makefiles for all enabled targets
432     #
433     for tgt in libs examples docs solution; do
434         local tgt_fn="$tgt-$toolchain.mk"
435
436         if enabled $tgt; then
437             echo "Creating makefiles for ${toolchain} ${tgt}"
438             write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
439             #write_${tgt}_config
440         fi
441     done
442
443 }
444
445 process_detect() {
446     if enabled shared; then
447         # Can only build shared libs on a subset of platforms. Doing this check
448         # here rather than at option parse time because the target auto-detect
449         # magic happens after the command line has been parsed.
450         enabled linux || die "--enable-shared only supported on ELF for now"
451     fi
452     if [ -z "$CC" ]; then
453         echo "Bypassing toolchain for environment detection."
454         enable external_build
455         check_header() {
456             log fake_check_header "$@"
457             header=$1
458             shift
459             var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
460             disable $var
461             case $header in
462                 stdio.h)
463                     true;
464                 ;;
465                 *)
466                     local result=false
467                     for d in "$@"; do
468                         [ -f "${d##-I}/$header" ] && result=true && break
469                     done
470                     ${result:-true}
471             esac && enable $var
472         }
473         check_ld() {
474             true
475         }
476     fi
477     check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
478     check_ld <<EOF || die "Toolchain is unable to link executables"
479 int main(void) {return 0;}
480 EOF
481     # check system headers
482     check_header stdint.h
483     check_header pthread.h
484     check_header sys/mman.h
485
486     check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
487 }
488
489 process_toolchain() {
490     process_common_toolchain
491
492     # Handle universal binaries for this architecture
493     case $toolchain in
494         universal-darwin*)
495             local darwin_ver=${tgt_os##darwin}
496             fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
497
498             # Intel
499             fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
500             if [ $darwin_ver -gt 8 ]; then
501                 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
502             fi
503             ;;
504     esac
505
506
507     # Enable some useful compiler flags
508     if enabled gcc; then
509         enabled werror && check_add_cflags -Werror
510         check_add_cflags -Wall
511         check_add_cflags -Wdeclaration-after-statement
512         check_add_cflags -Wdisabled-optimization
513         check_add_cflags -Wpointer-arith
514         check_add_cflags -Wtype-limits
515         check_add_cflags -Wcast-qual
516         enabled extra_warnings || check_add_cflags -Wno-unused-function
517     fi
518
519     if enabled icc; then
520         enabled werror && check_add_cflags -Werror
521         check_add_cflags -Wall
522         check_add_cflags -Wpointer-arith
523
524         # ICC has a number of floating point optimizations that we disable
525         # in favor of deterministic output WRT to other compilers
526         add_cflags -fp-model precise
527     fi
528
529     # Enable extra, harmless warnings. These might provide additional insight
530     # to what the compiler is doing and why, but in general, but they shouldn't
531     # be treated as fatal, even if we're treating warnings as errors.
532     GCC_EXTRA_WARNINGS="
533         -Wdisabled-optimization
534         -Winline
535     "
536     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
537     RVCT_EXTRA_WARNINGS="
538         --remarks
539     "
540     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
541     if enabled extra_warnings; then
542         for w in ${EXTRA_WARNINGS}; do
543             check_add_cflags ${w}
544             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
545         done
546     fi
547
548     # ccache only really works on gcc toolchains
549     enabled gcc || soft_disable ccache
550     if enabled mips; then
551         enable dequant_tokens
552         enable dc_recon
553     fi
554
555     # Enable the postbuild target if building for visual studio.
556     case "$tgt_cc" in
557         vs*) enable msvs
558              enable solution
559              vs_version=${tgt_cc##vs}
560              all_targets="${all_targets} solution"
561         ;;
562     esac
563
564     # Other toolchain specific defaults
565     case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
566
567     if enabled postproc_visualizer; then
568         enabled postproc || die "postproc_visualizer requires postproc to be enabled"
569     fi
570 }
571
572
573 ##
574 ## END APPLICATION SPECIFIC CONFIGURATION
575 ##
576 CONFIGURE_ARGS="$@"
577 process "$@"
578 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
579 cat <<EOF >> ${BUILD_PFX}vpx_config.c
580 static const char* const cfg = "$CONFIGURE_ARGS";
581 const char *vpx_codec_build_config(void) {return cfg;}
582 EOF