blob: 528916a09ea0ef5b889d50a45c0e6ae0af0276b9 [file] [log] [blame]
Guillaume Martres3526f1c2013-08-13 18:46:58 -07001#!/bin/sh
John Koleszar0ea50ce2010-05-18 11:58:33 -04002##
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:
Johannec658122012-10-10 09:16:37 -070023 ${toggle_libs} libraries
24 ${toggle_examples} examples
25 ${toggle_docs} documentation
26 ${toggle_unit_tests} unit tests
Joshua Litta782d632013-11-15 12:29:26 -080027 ${toggle_decode_perf_tests} build decoder perf tests with unit tests
Joshua Litt83b843f2014-07-21 10:57:16 -070028 ${toggle_encode_perf_tests} build encoder perf tests with unit tests
John Koleszar0ea50ce2010-05-18 11:58:33 -040029 --libc=PATH path to alternate libc
Jim Bankoski943e4322014-07-17 06:31:50 -070030 --size-limit=WxH max size to allow in the decoder
Jan Kratochvil7be093e2010-10-05 19:15:08 +020031 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
Johann5d0c33b2013-11-13 14:05:27 -080032 --sdk-path=PATH path to root of sdk (android builds only)
John Koleszar0ea50ce2010-05-18 11:58:33 -040033 ${toggle_fast_unaligned} don't use unaligned accesses, even when
34 supported by hardware [auto]
35 ${toggle_codec_srcs} in/exclude codec library source code
36 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040037 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
38 ${toggle_vp8} VP8 codec support
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070039 ${toggle_vp9} VP9 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070040 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040041 ${toggle_mem_tracker} track memory usage
John Koleszar0ea50ce2010-05-18 11:58:33 -040042 ${toggle_postproc} postprocessing
Jim Bankoski79401542013-09-04 10:02:08 -070043 ${toggle_vp9_postproc} vp9 specific postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040044 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040045 ${toggle_spatial_resampling} spatial sampling (scaling) support
46 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020047 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020048 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
John Koleszar0ea50ce2010-05-18 11:58:33 -040049 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040050 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070051 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040052 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070053 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040054 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010055 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070056 ${toggle_webm_io} enable input from and output to WebM container
Deb Mukherjee47031c02014-05-16 18:52:01 -070057 ${toggle_libyuv} enable libyuv
John Koleszar0ea50ce2010-05-18 11:58:33 -040058
59Codecs:
60 Codecs can be selectively enabled or disabled individually, or by family:
61 --disable-<codec>
62 is equivalent to:
63 --disable-<codec>-encoder
64 --disable-<codec>-decoder
65
66 Codecs available in this distribution:
67EOF
68#restore editor state '
69
70 local family;
71 local last_family;
72 local c;
73 local str;
74 for c in ${CODECS}; do
75 family=${c%_*}
76 if [ "${family}" != "${last_family}" ]; then
77 [ -z "${str}" ] || echo "${str}"
78 str="$(printf ' %10s:' ${family})"
79 fi
80 str="${str} $(printf '%10s' ${c#*_})"
81 last_family=${family}
82 done
83 echo "${str}"
84 show_help_post
85}
86
87##
88## BEGIN APPLICATION SPECIFIC CONFIGURATION
89##
90
91# all_platforms is a list of all supported target platforms. Maintain
92# alphabetically by architecture, generic-gnu last.
Fritz Koenigd8305732012-01-06 11:50:05 -080093all_platforms="${all_platforms} armv5te-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -040094all_platforms="${all_platforms} armv5te-linux-rvct"
95all_platforms="${all_platforms} armv5te-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +020096all_platforms="${all_platforms} armv5te-none-rvct"
John Koleszar0ea50ce2010-05-18 11:58:33 -040097all_platforms="${all_platforms} armv6-darwin-gcc"
98all_platforms="${all_platforms} armv6-linux-rvct"
99all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200100all_platforms="${all_platforms} armv6-none-rvct"
Tom Finegane87d6812014-06-25 18:32:16 -0700101all_platforms="${all_platforms} arm64-darwin-gcc"
Fritz Koenigd8305732012-01-06 11:50:05 -0800102all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -0400103all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
104all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
105all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200106all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300107all_platforms="${all_platforms} armv7-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800108all_platforms="${all_platforms} armv7-win32-vs12"
Tom Finegancd2088b2014-06-10 18:52:58 -0700109all_platforms="${all_platforms} armv7s-darwin-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400110all_platforms="${all_platforms} mips32-linux-gcc"
111all_platforms="${all_platforms} ppc32-darwin8-gcc"
112all_platforms="${all_platforms} ppc32-darwin9-gcc"
Johann0511cbf2010-09-21 14:56:42 -0400113all_platforms="${all_platforms} ppc32-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400114all_platforms="${all_platforms} ppc64-darwin8-gcc"
115all_platforms="${all_platforms} ppc64-darwin9-gcc"
116all_platforms="${all_platforms} ppc64-linux-gcc"
Aaron Watry53f61ce2010-09-30 15:36:00 -0400117all_platforms="${all_platforms} sparc-solaris-gcc"
Andoni Morales Alastruey652589d2013-01-14 12:25:52 +0100118all_platforms="${all_platforms} x86-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400119all_platforms="${all_platforms} x86-darwin8-gcc"
120all_platforms="${all_platforms} x86-darwin8-icc"
121all_platforms="${all_platforms} x86-darwin9-gcc"
122all_platforms="${all_platforms} x86-darwin9-icc"
Johann4341e5a2011-10-14 12:06:24 -0700123all_platforms="${all_platforms} x86-darwin10-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700124all_platforms="${all_platforms} x86-darwin11-gcc"
125all_platforms="${all_platforms} x86-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200126all_platforms="${all_platforms} x86-darwin13-gcc"
Tom Finegan4e6c5552014-06-04 18:57:25 -0700127all_platforms="${all_platforms} x86-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400128all_platforms="${all_platforms} x86-linux-gcc"
129all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900130all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400131all_platforms="${all_platforms} x86-solaris-gcc"
132all_platforms="${all_platforms} x86-win32-gcc"
133all_platforms="${all_platforms} x86-win32-vs7"
134all_platforms="${all_platforms} x86-win32-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400135all_platforms="${all_platforms} x86-win32-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300136all_platforms="${all_platforms} x86-win32-vs10"
137all_platforms="${all_platforms} x86-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800138all_platforms="${all_platforms} x86-win32-vs12"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400139all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500140all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700141all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700142all_platforms="${all_platforms} x86_64-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200143all_platforms="${all_platforms} x86_64-darwin13-gcc"
Tom Finegan9b259762014-06-06 16:54:16 -0700144all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400145all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400146all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400147all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500148all_platforms="${all_platforms} x86_64-win64-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400149all_platforms="${all_platforms} x86_64-win64-vs8"
Tom Finegan72d4ba92010-07-22 13:34:25 -0400150all_platforms="${all_platforms} x86_64-win64-vs9"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300151all_platforms="${all_platforms} x86_64-win64-vs10"
152all_platforms="${all_platforms} x86_64-win64-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800153all_platforms="${all_platforms} x86_64-win64-vs12"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400154all_platforms="${all_platforms} universal-darwin8-gcc"
155all_platforms="${all_platforms} universal-darwin9-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700156all_platforms="${all_platforms} universal-darwin10-gcc"
157all_platforms="${all_platforms} universal-darwin11-gcc"
158all_platforms="${all_platforms} universal-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200159all_platforms="${all_platforms} universal-darwin13-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400160all_platforms="${all_platforms} generic-gnu"
161
162# all_targets is a list of all targets that can be configured
163# note that these should be in dependency order for now.
164all_targets="libs examples docs"
165
166# all targets available are enabled, by default.
167for t in ${all_targets}; do
James Zern95735c32014-04-23 14:51:45 -0700168 [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400169done
170
James Zern4b418002014-03-18 18:19:16 -0700171if ! perl --version >/dev/null; then
172 die "Perl is required to build"
173fi
James Zern14be7ba2014-02-28 12:24:46 -0800174
James Zern9402e252014-03-05 14:13:01 -0800175
James Zern95735c32014-04-23 14:51:45 -0700176if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
James Zern9402e252014-03-05 14:13:01 -0800177 # test to see if source_path already configured
James Zern95735c32014-04-23 14:51:45 -0700178 if [ -f "${source_path}/vpx_config.h" ]; then
James Zern9402e252014-03-05 14:13:01 -0800179 die "source directory already configured; run 'make distclean' there first"
180 fi
181fi
182
John Koleszar0ea50ce2010-05-18 11:58:33 -0400183# check installed doxygen version
184doxy_version=$(doxygen --version 2>/dev/null)
185doxy_major=${doxy_version%%.*}
186if [ ${doxy_major:-0} -ge 1 ]; then
187 doxy_version=${doxy_version#*.}
188 doxy_minor=${doxy_version%%.*}
189 doxy_patch=${doxy_version##*.}
190
James Zern42ab4012013-08-21 18:11:45 -0700191 [ $doxy_major -gt 1 ] && enable_feature doxygen
192 [ $doxy_minor -gt 5 ] && enable_feature doxygen
193 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
John Koleszar0ea50ce2010-05-18 11:58:33 -0400194fi
195
John Koleszaree8bcb12010-05-24 10:16:44 -0400196# install everything except the sources, by default. sources will have
197# to be enabled when doing dist builds, since that's no longer a common
198# case.
James Zernf8630c72014-05-10 11:15:11 -0700199enabled doxygen && enable_feature install_docs
James Zern42ab4012013-08-21 18:11:45 -0700200enable_feature install_bins
201enable_feature install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400202
James Zern42ab4012013-08-21 18:11:45 -0700203enable_feature static
204enable_feature optimizations
205enable_feature fast_unaligned #allow unaligned accesses, if supported by hw
James Zern42ab4012013-08-21 18:11:45 -0700206enable_feature spatial_resampling
207enable_feature multithread
208enable_feature os_support
209enable_feature temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400210
James Zern95735c32014-04-23 14:51:45 -0700211[ -d "${source_path}/../include" ] && enable_feature alt_tree_layout
John Koleszar7b8dfcb2012-11-06 16:59:01 -0800212for d in vp8 vp9; do
James Zern95735c32014-04-23 14:51:45 -0700213 [ -d "${source_path}/${d}" ] && disable_feature alt_tree_layout;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400214done
215
216if ! enabled alt_tree_layout; then
217# development environment
James Zern95735c32014-04-23 14:51:45 -0700218[ -d "${source_path}/vp8" ] && CODECS="${CODECS} vp8_encoder vp8_decoder"
219[ -d "${source_path}/vp9" ] && CODECS="${CODECS} vp9_encoder vp9_decoder"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400220else
221# customer environment
James Zern95735c32014-04-23 14:51:45 -0700222[ -f "${source_path}/../include/vpx/vp8cx.h" ] && CODECS="${CODECS} vp8_encoder"
223[ -f "${source_path}/../include/vpx/vp8dx.h" ] && CODECS="${CODECS} vp8_decoder"
224[ -f "${source_path}/../include/vpx/vp9cx.h" ] && CODECS="${CODECS} vp9_encoder"
225[ -f "${source_path}/../include/vpx/vp9dx.h" ] && CODECS="${CODECS} vp9_decoder"
226[ -f "${source_path}/../include/vpx/vp8cx.h" ] || disable_feature vp8_encoder
227[ -f "${source_path}/../include/vpx/vp8dx.h" ] || disable_feature vp8_decoder
228[ -f "${source_path}/../include/vpx/vp9cx.h" ] || disable_feature vp9_encoder
229[ -f "${source_path}/../include/vpx/vp9dx.h" ] || disable_feature vp9_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400230
James Zern95735c32014-04-23 14:51:45 -0700231[ -f "${source_path}/../lib/*/*mt.lib" ] && soft_enable static_msvcrt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400232fi
233
234CODECS="$(echo ${CODECS} | tr ' ' '\n')"
235CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)"
236
237ARCH_LIST="
238 arm
239 mips
240 x86
241 x86_64
242 ppc32
243 ppc64
244"
245ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800246 edsp
247 media
248 neon
Johannce239312014-05-07 11:01:31 -0700249 neon_asm
John Koleszar0ea50ce2010-05-18 11:58:33 -0400250
251 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700252 dspr2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400253
254 mmx
255 sse
256 sse2
257 sse3
258 ssse3
Yunqing Wang71ecb5d2010-10-27 08:45:24 -0400259 sse4_1
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600260 avx
261 avx2
John Koleszar0ea50ce2010-05-18 11:58:33 -0400262
263 altivec
264"
265HAVE_LIST="
266 ${ARCH_EXT_LIST}
267 vpx_ports
268 stdint_h
269 alt_tree_layout
270 pthread_h
271 sys_mman_h
Attila Nagy297b2762011-03-25 12:53:03 +0200272 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400273"
John Koleszar0952acb2010-06-01 11:14:25 -0400274EXPERIMENT_LIST="
John Koleszar679e4ab2013-05-15 17:55:08 -0700275 alpha
James Zernf12ebfc2014-05-14 19:45:20 -0700276 multiple_arf
277 spatial_svc
Tim Koppab8bfb02014-06-05 14:00:08 -0700278 denoising
Pengchong Jinaaabbd62014-06-30 09:52:27 -0700279 fp_mb_stats
John Koleszar0952acb2010-06-01 11:14:25 -0400280"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400281CONFIG_LIST="
282 external_build
283 install_docs
284 install_bins
285 install_libs
286 install_srcs
Jim Bankoskia93b1152013-08-05 17:28:52 -0700287 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400288 debug
289 gprof
290 gcov
291 rvct
292 gcc
293 msvs
294 pic
295 big_endian
296
297 codec_srcs
298 debug_libs
299 fast_unaligned
300 mem_manager
301 mem_tracker
302 mem_checks
John Koleszar0ea50ce2010-05-18 11:58:33 -0400303
304 dequant_tokens
305 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400306 runtime_cpu_detect
307 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700308 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400309 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700310 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400311 ${CODECS}
312 ${CODEC_FAMILIES}
313 encoders
314 decoders
315 static_msvcrt
316 spatial_resampling
317 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200318 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200319 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400320 shared
James Zern495b2412011-07-25 15:40:36 -0700321 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400322 small
Fritz Koenig647df002010-11-04 16:03:36 -0700323 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200324 os_support
James Berrya0769f72012-05-02 17:25:58 -0400325 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700326 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700327 libyuv
Joshua Litta782d632013-11-15 12:29:26 -0800328 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700329 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400330 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100331 temporal_denoising
John Koleszar0952acb2010-06-01 11:14:25 -0400332 experimental
Jim Bankoski943e4322014-07-17 06:31:50 -0700333 size_limit
John Koleszar0952acb2010-06-01 11:14:25 -0400334 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400335"
336CMDLINE_SELECT="
John Koleszard9847632012-12-10 12:07:59 -0800337 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400338 extra_warnings
339 werror
340 install_docs
341 install_bins
342 install_libs
343 install_srcs
344 debug
345 gprof
346 gcov
347 pic
Jim Bankoskic9126e02013-08-06 07:31:54 -0700348 use_x86inc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400349 optimizations
350 ccache
351 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300352 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400353
354 libs
355 examples
Johannec658122012-10-10 09:16:37 -0700356 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400357 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200358 as
Jim Bankoski943e4322014-07-17 06:31:50 -0700359 size_limit
John Koleszar0ea50ce2010-05-18 11:58:33 -0400360 fast_unaligned
361 codec_srcs
362 debug_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400363
364 dequant_tokens
365 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400366 postproc
Jim Bankoski79401542013-09-04 10:02:08 -0700367 vp9_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400368 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700369 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400370 ${CODECS}
371 ${CODEC_FAMILIES}
372 static_msvcrt
373 mem_tracker
374 spatial_resampling
375 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200376 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200377 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400378 shared
James Zern495b2412011-07-25 15:40:36 -0700379 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400380 small
Fritz Koenig647df002010-11-04 16:03:36 -0700381 postproc_visualizer
James Berrya0769f72012-05-02 17:25:58 -0400382 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700383 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700384 libyuv
Joshua Litta782d632013-11-15 12:29:26 -0800385 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700386 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400387 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100388 temporal_denoising
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700389 experimental
John Koleszar0ea50ce2010-05-18 11:58:33 -0400390"
391
392process_cmdline() {
393 for opt do
394 optval="${opt#*=}"
395 case "$opt" in
James Zern42ab4012013-08-21 18:11:45 -0700396 --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400397 --enable-?*|--disable-?*)
398 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
399 if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then
400 if enabled experimental; then
James Zernccb6bdc2013-08-21 19:00:08 -0700401 ${action}_feature $option
John Koleszar0952acb2010-06-01 11:14:25 -0400402 else
403 log_echo "Ignoring $opt -- not in experimental mode."
404 fi
405 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700406 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400407 fi
408 ;;
James Berrya0769f72012-05-02 17:25:58 -0400409 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700410 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400411 esac
412 done
413}
414
415post_process_cmdline() {
416 local c
417
418 # If the codec family is disabled, disable all components of that family.
419 # If the codec family is enabled, enable all components of that family.
420 log_echo "Configuring selected codecs"
421 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700422 disabled ${c%%_*} && disable_feature ${c}
423 enabled ${c%%_*} && enable_feature ${c}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400424 done
425
426 # Enable all detected codecs, if they haven't been disabled
427 for c in ${CODECS}; do soft_enable $c; done
428
429 # Enable the codec family if any component of that family is enabled
430 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700431 enabled $c && enable_feature ${c%_*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400432 done
433
434 # Set the {en,de}coders variable if any algorithm in that class is enabled
435 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700436 enabled ${c} && enable_feature ${c##*_}s
John Koleszar0ea50ce2010-05-18 11:58:33 -0400437 done
John Koleszar0ea50ce2010-05-18 11:58:33 -0400438}
439
440
441process_targets() {
442 enabled child || write_common_config_banner
443 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
444
445 # TODO: add host tools target (obj_int_extract, etc)
446
447 # For fat binaries, call configure recursively to configure for each
448 # binary architecture to be included.
449 if enabled universal; then
450 # Call configure (ourselves) for each subarchitecture
451 for arch in $fat_bin_archs; do
452 BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $?
453 done
454 fi
455
456 # The write_common_config (config.mk) logic is deferred until after the
Erik Niemeyere6863ef2013-10-29 09:48:12 -0600457 # recursive calls to configure complete, because we want our universal
John Koleszar0ea50ce2010-05-18 11:58:33 -0400458 # targets to be executed last.
459 write_common_config_targets
460 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
461
462 # Calculate the default distribution name, based on the enabled features
463 local cf
464 local DIST_DIR=vpx
465 for cf in $CODEC_FAMILIES; do
466 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
467 DIST_DIR="${DIST_DIR}-${cf}"
468 elif enabled ${cf}_encoder; then
469 DIST_DIR="${DIST_DIR}-${cf}cx"
470 elif enabled ${cf}_decoder; then
471 DIST_DIR="${DIST_DIR}-${cf}dx"
472 fi
473 done
474 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
475 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
Jim Bankoski79401542013-09-04 10:02:08 -0700476 ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400477 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400478 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
479 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
480 case "${tgt_os}" in
481 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
482 DIST_DIR="${DIST_DIR}-${tgt_cc}"
483 ;;
484 esac
485 if [ -f "${source_path}/build/make/version.sh" ]; then
James Zern95735c32014-04-23 14:51:45 -0700486 local ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
John Koleszar0ea50ce2010-05-18 11:58:33 -0400487 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700488 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400489 ver=${ver%%-*}
490 VERSION_PATCH=${ver##*.}
491 ver=${ver%.*}
492 VERSION_MINOR=${ver##*.}
493 ver=${ver#v}
494 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400495 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400496 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700497
498PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400499ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400500DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400501else
John Koleszar670af3a2010-05-26 15:57:42 -0400502DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400503endif
John Koleszar670af3a2010-05-26 15:57:42 -0400504LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400505
Ralph Giles53e99872011-03-28 11:36:53 -0700506VERSION_STRING=${VERSION_STRING}
507
John Koleszar7aa97a32010-06-03 10:29:04 -0400508VERSION_MAJOR=${VERSION_MAJOR}
509VERSION_MINOR=${VERSION_MINOR}
510VERSION_PATCH=${VERSION_PATCH}
511
John Koleszar23d68a52010-06-22 09:53:23 -0400512CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400513EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400514 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
515
516 #
517 # Write makefiles for all enabled targets
518 #
519 for tgt in libs examples docs solution; do
520 local tgt_fn="$tgt-$toolchain.mk"
521
522 if enabled $tgt; then
523 echo "Creating makefiles for ${toolchain} ${tgt}"
524 write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h
525 #write_${tgt}_config
526 fi
527 done
528
529}
530
531process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400532 if enabled shared; then
533 # Can only build shared libs on a subset of platforms. Doing this check
534 # here rather than at option parse time because the target auto-detect
535 # magic happens after the command line has been parsed.
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400536 if ! enabled linux; then
537 if enabled gnu; then
538 echo "--enable-shared is only supported on ELF; assuming this is OK"
539 else
540 die "--enable-shared only supported on ELF for now"
541 fi
542 fi
John Koleszar7aa97a32010-06-03 10:29:04 -0400543 fi
John Koleszard9847632012-12-10 12:07:59 -0800544 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400545 echo "Bypassing toolchain for environment detection."
James Zern42ab4012013-08-21 18:11:45 -0700546 enable_feature external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400547 check_header() {
548 log fake_check_header "$@"
549 header=$1
550 shift
551 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
James Zern42ab4012013-08-21 18:11:45 -0700552 disable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800553 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400554 case $header in
555 stdio.h)
556 true;
557 ;;
558 *)
559 local result=false
560 for d in "$@"; do
561 [ -f "${d##-I}/$header" ] && result=true && break
562 done
563 ${result:-true}
James Zern42ab4012013-08-21 18:11:45 -0700564 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800565
566 # Specialize windows and POSIX environments.
567 case $toolchain in
568 *-win*-*)
569 case $header-$toolchain in
570 stdint*-gcc) true;;
571 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700572 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800573 ;;
574 *)
575 case $header in
576 stdint.h) true;;
577 pthread.h) true;;
578 sys/mman.h) true;;
579 unistd.h) true;;
580 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700581 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800582 esac
583 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400584 }
585 check_ld() {
586 true
587 }
588 fi
589 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
590 check_ld <<EOF || die "Toolchain is unable to link executables"
591int main(void) {return 0;}
592EOF
593 # check system headers
594 check_header stdint.h
595 check_header pthread.h
596 check_header sys/mman.h
John Koleszard9847632012-12-10 12:07:59 -0800597 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400598
James Zern42ab4012013-08-21 18:11:45 -0700599 check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400600}
601
602process_toolchain() {
603 process_common_toolchain
604
605 # Handle universal binaries for this architecture
606 case $toolchain in
607 universal-darwin*)
608 local darwin_ver=${tgt_os##darwin}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400609
Johann101c2bd2012-04-27 11:40:04 -0700610 # Snow Leopard (10.6/darwin10) dropped support for PPC
611 # Include PPC support for all prior versions
612 if [ $darwin_ver -lt 10 ]; then
613 fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc"
614 fi
615
616 # Tiger (10.4/darwin8) brought support for x86
617 if [ $darwin_ver -ge 8 ]; then
618 fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}"
619 fi
620
621 # Leopard (10.5/darwin9) brought 64 bit support
622 if [ $darwin_ver -ge 9 ]; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400623 fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}"
624 fi
625 ;;
626 esac
627
628
629 # Enable some useful compiler flags
630 if enabled gcc; then
631 enabled werror && check_add_cflags -Werror
632 check_add_cflags -Wall
633 check_add_cflags -Wdeclaration-after-statement
634 check_add_cflags -Wdisabled-optimization
635 check_add_cflags -Wpointer-arith
636 check_add_cflags -Wtype-limits
637 check_add_cflags -Wcast-qual
Daniel Kang2f963912012-08-13 14:18:09 -0700638 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300639 check_add_cflags -Wimplicit-function-declaration
640 check_add_cflags -Wuninitialized
641 check_add_cflags -Wunused-variable
James Zerndfa2fb52013-05-03 14:00:33 -0700642 case ${CC} in
Johann8b47e1c2013-10-28 15:44:41 -0700643 *clang*)
644 # libvpx and/or clang have issues with aliasing:
645 # https://code.google.com/p/webm/issues/detail?id=603
646 # work around them until they are fixed
647 check_add_cflags -fno-strict-aliasing
648 ;;
James Zerndfa2fb52013-05-03 14:00:33 -0700649 *) check_add_cflags -Wunused-but-set-variable ;;
650 esac
John Koleszarb601eb82011-02-04 11:51:21 -0500651 enabled extra_warnings || check_add_cflags -Wno-unused-function
John Koleszar0ea50ce2010-05-18 11:58:33 -0400652 fi
653
654 if enabled icc; then
655 enabled werror && check_add_cflags -Werror
656 check_add_cflags -Wall
657 check_add_cflags -Wpointer-arith
658
659 # ICC has a number of floating point optimizations that we disable
660 # in favor of deterministic output WRT to other compilers
661 add_cflags -fp-model precise
662 fi
663
664 # Enable extra, harmless warnings. These might provide additional insight
665 # to what the compiler is doing and why, but in general, but they shouldn't
666 # be treated as fatal, even if we're treating warnings as errors.
667 GCC_EXTRA_WARNINGS="
668 -Wdisabled-optimization
669 -Winline
670 "
671 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
672 RVCT_EXTRA_WARNINGS="
673 --remarks
674 "
675 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
676 if enabled extra_warnings; then
677 for w in ${EXTRA_WARNINGS}; do
678 check_add_cflags ${w}
679 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
680 done
681 fi
682
683 # ccache only really works on gcc toolchains
684 enabled gcc || soft_disable ccache
685 if enabled mips; then
James Zern42ab4012013-08-21 18:11:45 -0700686 enable_feature dequant_tokens
687 enable_feature dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400688 fi
689
Yaowu Xu132ef422013-09-06 15:05:05 -0700690 if enabled internal_stats; then
691 enable_feature vp9_postproc
692 fi
693
John Koleszar0ea50ce2010-05-18 11:58:33 -0400694 # Enable the postbuild target if building for visual studio.
695 case "$tgt_cc" in
James Zern42ab4012013-08-21 18:11:45 -0700696 vs*) enable_feature msvs
697 enable_feature solution
John Koleszar0ea50ce2010-05-18 11:58:33 -0400698 vs_version=${tgt_cc##vs}
Martin Storsjobd91beb2013-05-17 00:57:57 +0300699 case $vs_version in
700 [789])
701 VCPROJ_SFX=vcproj
702 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh
703 ;;
Yaowu Xua638bdf2013-11-13 11:36:32 -0800704 10|11|12)
Martin Storsjobd91beb2013-05-17 00:57:57 +0300705 VCPROJ_SFX=vcxproj
706 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
James Zern37c60d82014-03-08 12:52:33 -0800707 enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300708 ;;
709 esac
John Koleszar0ea50ce2010-05-18 11:58:33 -0400710 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800711 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400712 ;;
713 esac
714
715 # Other toolchain specific defaults
716 case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700717
Fritz Koenig692b1082010-11-10 14:51:49 -0800718 if enabled postproc_visualizer; then
719 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
720 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700721
Johannb46d58a2013-01-18 11:31:22 -0800722 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700723 case "$toolchain" in
724 *-vs*)
725 soft_enable unit_tests
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700726 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700727 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700728 ;;
729 *-android-*)
Vignesh Venkatasubramanian4721f9e2014-04-29 00:03:01 -0700730 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700731 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700732 # GTestLog must be modified to use Android logging utilities.
733 ;;
Johanna1d929e2012-12-13 11:35:59 -0800734 *-darwin-*)
735 # iOS/ARM builds do not work with gtest. This does not match
736 # x86 targets.
737 ;;
Tom Finegan4e6c5552014-06-04 18:57:25 -0700738 *-iphonesimulator-*)
739 soft_enable webm_io
740 soft_enable libyuv
741 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700742 *-win*)
743 # Some mingw toolchains don't have pthread available by default.
744 # Treat these more like visual studio where threading in gtest
745 # would be disabled for the same reason.
746 check_cxx "$@" <<EOF && soft_enable unit_tests
747int z;
748EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700749 check_cxx "$@" <<EOF && soft_enable webm_io
750int z;
751EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700752 check_cxx "$@" <<EOF && soft_enable libyuv
753int z;
754EOF
James Zerne4d2c252013-06-26 18:35:11 -0700755 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700756 *)
James Zernf2dc3822013-06-20 12:49:15 -0700757 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700758int z;
759EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700760 check_cxx "$@" <<EOF && soft_enable webm_io
761int z;
762EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700763 check_cxx "$@" <<EOF && soft_enable libyuv
764int z;
765EOF
Johannd6e80de2012-06-12 08:58:11 -0700766 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700767 esac
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700768 # libwebm needs to be linked with C++ standard library
769 enabled webm_io && LD=${CXX}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400770}
771
772
773##
774## END APPLICATION SPECIFIC CONFIGURATION
775##
776CONFIGURE_ARGS="$@"
777process "$@"
Tom Finegan3d9c3f42011-10-19 22:47:02 -0400778print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */"
779cat <<EOF >> ${BUILD_PFX}vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400780static const char* const cfg = "$CONFIGURE_ARGS";
781const char *vpx_codec_build_config(void) {return cfg;}
782EOF