Merge other top-level C code
[platform/upstream/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   ${toggle_fast_unaligned}        don't use unaligned accesses, even when
29                                   supported by hardware [auto]
30   ${toggle_codec_srcs}            in/exclude codec library source code
31   ${toggle_debug_libs}            in/exclude debug version of libraries
32   ${toggle_md5}                   support for output of checksum data
33   ${toggle_static_msvcrt}         use static MSVCRT (VS builds only)
34   ${toggle_vp9}                   VP9 codec support
35   ${toggle_internal_stats}        output of encoder internal stats for debug, if supported (encoders)
36   ${toggle_mem_tracker}           track memory usage
37   ${toggle_postproc}              postprocessing
38   ${toggle_spatial_resampling}    spatial sampling (scaling) support
39   ${toggle_runtime_cpu_detect}    runtime cpu detection
40   ${toggle_shared}                shared library support
41   ${toggle_static}                static library support
42   ${toggle_small}                 favor smaller size over speed
43   ${toggle_postproc_visualizer}   macro block / block level visualizers
44
45 Codecs:
46   Codecs can be selectively enabled or disabled individually, or by family:
47       --disable-<codec>
48   is equivalent to:
49       --disable-<codec>-encoder
50       --disable-<codec>-decoder
51
52   Codecs available in this distribution:
53 EOF
54 #restore editor state '
55
56     local family;
57     local last_family;
58     local c;
59     local str;
60     for c in ${CODECS}; do
61         family=${c%_*}
62         if [ "${family}" != "${last_family}" ]; then
63             [ -z "${str}" ] || echo "${str}"
64             str="$(printf '    %10s:' ${family})"
65         fi
66         str="${str} $(printf '%10s' ${c#*_})"
67         last_family=${family}
68     done
69     echo "${str}"
70     show_help_post
71 }
72
73 ##
74 ## BEGIN APPLICATION SPECIFIC CONFIGURATION
75 ##
76
77 # all_platforms is a list of all supported target platforms. Maintain
78 # alphabetically by architecture, generic-gnu last.
79 all_platforms="${all_platforms} armv5te-linux-rvct"
80 all_platforms="${all_platforms} armv5te-linux-gcc"
81 all_platforms="${all_platforms} armv5te-none-rvct"
82 all_platforms="${all_platforms} armv5te-symbian-gcc"
83 all_platforms="${all_platforms} armv6-darwin-gcc"
84 all_platforms="${all_platforms} armv6-linux-rvct"
85 all_platforms="${all_platforms} armv6-linux-gcc"
86 all_platforms="${all_platforms} armv6-none-rvct"
87 all_platforms="${all_platforms} armv6-symbian-gcc"
88 all_platforms="${all_platforms} iwmmxt-linux-rvct"
89 all_platforms="${all_platforms} iwmmxt-linux-gcc"
90 all_platforms="${all_platforms} iwmmxt2-linux-rvct"
91 all_platforms="${all_platforms} iwmmxt2-linux-gcc"
92 all_platforms="${all_platforms} armv7-darwin-gcc"    #neon Cortex-A8
93 all_platforms="${all_platforms} armv7-linux-rvct"    #neon Cortex-A8
94 all_platforms="${all_platforms} armv7-linux-gcc"     #neon Cortex-A8
95 all_platforms="${all_platforms} armv7-none-rvct"     #neon Cortex-A8
96 all_platforms="${all_platforms} mips32-linux-gcc"
97 all_platforms="${all_platforms} ppc32-darwin8-gcc"
98 all_platforms="${all_platforms} ppc32-darwin9-gcc"
99 all_platforms="${all_platforms} ppc32-linux-gcc"
100 all_platforms="${all_platforms} ppc64-darwin8-gcc"
101 all_platforms="${all_platforms} ppc64-darwin9-gcc"
102 all_platforms="${all_platforms} ppc64-linux-gcc"
103 all_platforms="${all_platforms} sparc-solaris-gcc"
104 all_platforms="${all_platforms} x86-darwin8-gcc"
105 all_platforms="${all_platforms} x86-darwin8-icc"
106 all_platforms="${all_platforms} x86-darwin9-gcc"
107 all_platforms="${all_platforms} x86-darwin9-icc"
108 all_platforms="${all_platforms} x86-linux-gcc"
109 all_platforms="${all_platforms} x86-linux-icc"
110 all_platforms="${all_platforms} x86-solaris-gcc"
111 all_platforms="${all_platforms} x86-win32-gcc"
112 all_platforms="${all_platforms} x86-win32-vs7"
113 all_platforms="${all_platforms} x86-win32-vs8"
114 all_platforms="${all_platforms} x86-win32-vs9"
115 all_platforms="${all_platforms} x86_64-darwin9-gcc"
116 all_platforms="${all_platforms} x86_64-darwin10-gcc"
117 all_platforms="${all_platforms} x86_64-darwin11-gcc"
118 all_platforms="${all_platforms} x86_64-linux-gcc"
119 all_platforms="${all_platforms} x86_64-linux-icc"
120 all_platforms="${all_platforms} x86_64-solaris-gcc"
121 all_platforms="${all_platforms} x86_64-win64-vs8"
122 all_platforms="${all_platforms} x86_64-win64-vs9"
123 all_platforms="${all_platforms} universal-darwin8-gcc"
124 all_platforms="${all_platforms} universal-darwin9-gcc"
125 all_platforms="${all_platforms} generic-gnu"
126
127 # all_targets is a list of all targets that can be configured
128 # note that these should be in dependency order for now.
129 all_targets="libs examples docs"
130
131 # all targets available are enabled, by default.
132 for t in ${all_targets}; do
133     [ -f ${source_path}/${t}.mk ] && enable ${t}
134 done
135
136 # check installed doxygen version
137 doxy_version=$(doxygen --version 2>/dev/null)
138 doxy_major=${doxy_version%%.*}
139 if [ ${doxy_major:-0} -ge 1 ]; then
140     doxy_version=${doxy_version#*.}
141     doxy_minor=${doxy_version%%.*}
142     doxy_patch=${doxy_version##*.}
143
144     [ $doxy_major -gt 1 ] && enable doxygen
145     [ $doxy_minor -gt 5 ] && enable doxygen
146     [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen
147 fi
148
149 # install everything except the sources, by default. sources will have
150 # to be enabled when doing dist builds, since that's no longer a common
151 # case.
152 enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
153 enable install_bins
154 enable install_libs
155
156 enable static
157 enable optimizations
158 enable fast_unaligned #allow unaligned accesses, if supported by hw
159 enable md5
160 enable spatial_resampling
161 enable os_support
162
163 [ -d ${source_path}/../include ] && enable alt_tree_layout
164 for d in vp9; do
165     [ -d ${source_path}/${d} ] && disable alt_tree_layout;
166 done
167
168 if ! enabled alt_tree_layout; then
169 # development environment
170 [ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
171 else
172 # customer environment
173 [ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp9_encoder"
174 [ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp9_decoder"
175
176 [ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt
177 fi
178
179 CODECS="$(echo ${CODECS} | tr ' ' '\n')"
180 CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
181
182 ARCH_LIST="
183     arm
184     mips
185     x86
186     x86_64
187     ppc32
188     ppc64
189 "
190 ARCH_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
204     sse4_1
205
206     altivec
207 "
208 HAVE_LIST="
209     ${ARCH_EXT_LIST}
210     vpx_ports
211     stdint_h
212     alt_tree_layout
213     pthread_h
214     sys_mman_h
215     unistd_h
216 "
217 EXPERIMENT_LIST="
218     csm
219     comp_intra_pred
220     superblocks
221     pred_filter
222     lossless
223     newbestrefmv
224     subpelrefmv
225     new_mvref
226     implicit_segmentation
227 "
228 CONFIG_LIST="
229     external_build
230     install_docs
231     install_bins
232     install_libs
233     install_srcs
234     debug
235     gprof
236     gcov
237     rvct
238     gcc
239     msvs
240     pic
241     big_endian
242
243     codec_srcs
244     debug_libs
245     fast_unaligned
246     mem_manager
247     mem_tracker
248     mem_checks
249     md5
250
251     dequant_tokens
252     dc_recon
253     runtime_cpu_detect
254     postproc
255     internal_stats
256     ${CODECS}
257     ${CODEC_FAMILIES}
258     encoders
259     decoders
260     static_msvcrt
261     spatial_resampling
262     shared
263     static
264     small
265     postproc_visualizer
266     os_support
267     unit_tests
268     experimental
269     ${EXPERIMENT_LIST}
270 "
271 CMDLINE_SELECT="
272     extra_warnings
273     werror
274     install_docs
275     install_bins
276     install_libs
277     install_srcs
278     debug
279     gprof
280     gcov
281     pic
282     optimizations
283     ccache
284     runtime_cpu_detect
285
286     libs
287     examples
288     libc
289     as
290     fast_unaligned
291     codec_srcs
292     debug_libs
293     md5
294
295     dequant_tokens
296     dc_recon
297     postproc
298     internal_stats
299     ${CODECS}
300     ${CODEC_FAMILIES}
301     static_msvcrt
302     mem_tracker
303     spatial_resampling
304     shared
305     static
306     small
307     postproc_visualizer
308     unit_tests
309     experimental
310 "
311
312 process_cmdline() {
313     for opt do
314         optval="${opt#*=}"
315         case "$opt" in
316         --disable-codecs) for c in ${CODECS}; do disable $c; done ;;
317         --enable-?*|--disable-?*)
318         eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
319         if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
320             if enabled experimental; then
321                 $action $option
322             else
323                 log_echo "Ignoring $opt -- not in experimental mode."
324             fi
325         else
326             process_common_cmdline $opt
327         fi
328         ;;
329         *) process_common_cmdline "$opt"
330         ;;
331         esac
332     done
333 }
334
335 post_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
358 }
359
360
361 process_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 install_docs && DIST_DIR="${DIST_DIR}-nodocs"
398     DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
399     case "${tgt_os}" in
400     win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
401           DIST_DIR="${DIST_DIR}-${tgt_cc}"
402           ;;
403     esac
404     if [ -f "${source_path}/build/make/version.sh" ]; then
405         local ver=`"$source_path/build/make/version.sh" --bare $source_path`
406         DIST_DIR="${DIST_DIR}-${ver}"
407         VERSION_STRING=${ver}
408         ver=${ver%%-*}
409         VERSION_PATCH=${ver##*.}
410         ver=${ver%.*}
411         VERSION_MINOR=${ver##*.}
412         ver=${ver#v}
413         VERSION_MAJOR=${ver%.*}
414     fi
415     enabled child || cat <<EOF >> config.mk
416
417 PREFIX=${prefix}
418 ifeq (\$(MAKECMDGOALS),dist)
419 DIST_DIR?=${DIST_DIR}
420 else
421 DIST_DIR?=\$(DESTDIR)${prefix}
422 endif
423 LIBSUBDIR=${libdir##${prefix}/}
424
425 VERSION_STRING=${VERSION_STRING}
426
427 VERSION_MAJOR=${VERSION_MAJOR}
428 VERSION_MINOR=${VERSION_MINOR}
429 VERSION_PATCH=${VERSION_PATCH}
430
431 CONFIGURE_ARGS=${CONFIGURE_ARGS}
432 EOF
433     enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
434
435     #
436     # Write makefiles for all enabled targets
437     #
438     for tgt in libs examples docs solution; do
439         local tgt_fn="$tgt-$toolchain.mk"
440
441         if enabled $tgt; then
442             echo "Creating makefiles for ${toolchain} ${tgt}"
443             write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
444             #write_${tgt}_config
445         fi
446     done
447
448 }
449
450 process_detect() {
451     if [ -z "$CC" ]; then
452         echo "Bypassing toolchain for environment detection."
453         enable external_build
454         check_header() {
455             log fake_check_header "$@"
456             header=$1
457             shift
458             var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
459             disable $var
460             case $header in
461                 stdio.h)
462                     true;
463                 ;;
464                 *)
465                     local result=false
466                     for d in "$@"; do
467                         [ -f "${d##-I}/$header" ] && result=true && break
468                     done
469                     ${result:-true}
470             esac && enable $var
471         }
472         check_ld() {
473             true
474         }
475     fi
476     check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
477     check_ld <<EOF || die "Toolchain is unable to link executables"
478 int main(void) {return 0;}
479 EOF
480     # check system headers
481     check_header stdint.h
482     check_header pthread.h
483     check_header sys/mman.h
484
485     check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports
486 }
487
488 process_toolchain() {
489     process_common_toolchain
490
491     # Handle universal binaries for this architecture
492     case $toolchain in
493         universal-darwin*)
494             local darwin_ver=${tgt_os##darwin}
495             fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
496
497             # Intel
498             fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
499             if [ $darwin_ver -gt 8 ]; then
500                 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
501             fi
502             ;;
503     esac
504
505
506     # Enable some useful compiler flags
507     if enabled gcc; then
508         enabled werror && check_add_cflags -Werror
509         check_add_cflags -Wall
510         check_add_cflags -Wdeclaration-after-statement
511         check_add_cflags -Wdisabled-optimization
512         check_add_cflags -Wpointer-arith
513         check_add_cflags -Wtype-limits
514         check_add_cflags -Wcast-qual
515         check_add_cflags -Wundef
516         check_add_cflags -Wvla
517         enabled extra_warnings || check_add_cflags -Wno-unused-function
518     fi
519
520     if enabled icc; then
521         enabled werror && check_add_cflags -Werror
522         check_add_cflags -Wall
523         check_add_cflags -Wpointer-arith
524
525         # ICC has a number of floating point optimizations that we disable
526         # in favor of deterministic output WRT to other compilers
527         add_cflags -fp-model precise
528     fi
529
530     # Enable extra, harmless warnings. These might provide additional insight
531     # to what the compiler is doing and why, but in general, but they shouldn't
532     # be treated as fatal, even if we're treating warnings as errors.
533     GCC_EXTRA_WARNINGS="
534         -Wdisabled-optimization
535         -Winline
536     "
537     enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
538     RVCT_EXTRA_WARNINGS="
539         --remarks
540     "
541     enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
542     if enabled extra_warnings; then
543         for w in ${EXTRA_WARNINGS}; do
544             check_add_cflags ${w}
545             enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
546         done
547     fi
548
549     # ccache only really works on gcc toolchains
550     enabled gcc || soft_disable ccache
551     if enabled mips; then
552         enable dequant_tokens
553         enable dc_recon
554     fi
555
556     # Enable the postbuild target if building for visual studio.
557     case "$tgt_cc" in
558         vs*) enable msvs
559              enable solution
560              vs_version=${tgt_cc##vs}
561              all_targets="${all_targets} solution"
562         ;;
563     esac
564
565     # Other toolchain specific defaults
566     case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
567
568     if enabled postproc_visualizer; then
569         enabled postproc || die "postproc_visualizer requires postproc to be enabled"
570     fi
571 }
572
573
574 ##
575 ## END APPLICATION SPECIFIC CONFIGURATION
576 ##
577 CONFIGURE_ARGS="$@"
578 process "$@"
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