blob: 3258ee302f29578816e12f305a2768262abe595c [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
Johann661802b2014-12-01 11:06:49 -080029 --cpu=CPU tune for the specified CPU (ARM: cortex-a8, X86: sse3)
John Koleszar0ea50ce2010-05-18 11:58:33 -040030 --libc=PATH path to alternate libc
Jim Bankoski943e4322014-07-17 06:31:50 -070031 --size-limit=WxH max size to allow in the decoder
Jan Kratochvil7be093e2010-10-05 19:15:08 +020032 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
Johann5d0c33b2013-11-13 14:05:27 -080033 --sdk-path=PATH path to root of sdk (android builds only)
John Koleszar0ea50ce2010-05-18 11:58:33 -040034 ${toggle_codec_srcs} in/exclude codec library source code
35 ${toggle_debug_libs} in/exclude debug version of libraries
John Koleszar0ea50ce2010-05-18 11:58:33 -040036 ${toggle_static_msvcrt} use static MSVCRT (VS builds only)
Yaowu Xuf883b422016-08-30 14:01:10 -070037 ${toggle_aom_highbitdepth} use high bit depth (10/12) profiles
Yaowu Xu03a021a2015-12-02 17:00:26 -080038 ${toggle_better_hw_compatibility}
39 enable encoder to produce streams with better
40 hardware decoder compatibility
Yaowu Xuf883b422016-08-30 14:01:10 -070041 ${toggle_av1} AV1 codec support
Yaowu Xu57ad1892011-04-29 09:37:59 -070042 ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders)
John Koleszar0ea50ce2010-05-18 11:58:33 -040043 ${toggle_postproc} postprocessing
Yaowu Xuf883b422016-08-30 14:01:10 -070044 ${toggle_av1_postproc} av1 specific postprocessing
Yunqing Wangaa7335e2011-10-25 15:14:16 -040045 ${toggle_multithread} multithreaded encoding and decoding
John Koleszar0ea50ce2010-05-18 11:58:33 -040046 ${toggle_spatial_resampling} spatial sampling (scaling) support
47 ${toggle_realtime_only} enable this option while building for real-time encoding
Attila Nagy52cf4dc2012-02-09 12:37:03 +020048 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
Stefan Holmerd04f8522011-05-02 15:30:51 +020049 ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses
Yaowu Xu0a2b25d2014-07-29 13:40:55 -070050 ${toggle_coefficient_range_checking}
51 enable decoder to check if intermediate
52 transform coefficients are in valid range
John Koleszar0ea50ce2010-05-18 11:58:33 -040053 ${toggle_runtime_cpu_detect} runtime cpu detection
John Koleszar7aa97a32010-06-03 10:29:04 -040054 ${toggle_shared} shared library support
James Zern495b2412011-07-25 15:40:36 -070055 ${toggle_static} static library support
John Koleszarf9b2ca52010-09-21 10:06:41 -040056 ${toggle_small} favor smaller size over speed
Fritz Koenig647df002010-11-04 16:03:36 -070057 ${toggle_postproc_visualizer} macro block / block level visualizers
Yunqing Wangaa7335e2011-10-25 15:14:16 -040058 ${toggle_multi_res_encoding} enable multiple-resolution encoding
Stefan Holmer9c411432012-03-06 10:48:18 +010059 ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser
Yaowu Xuf883b422016-08-30 14:01:10 -070060 ${toggle_av1_temporal_denoising}
61 enable av1 temporal denoising
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -070062 ${toggle_webm_io} enable input from and output to WebM container
Deb Mukherjee47031c02014-05-16 18:52:01 -070063 ${toggle_libyuv} enable libyuv
Michael Bebenita6048d052016-08-25 14:40:54 -070064 ${toggle_accounting} enable bit accounting
John Koleszar0ea50ce2010-05-18 11:58:33 -040065
66Codecs:
67 Codecs can be selectively enabled or disabled individually, or by family:
68 --disable-<codec>
69 is equivalent to:
70 --disable-<codec>-encoder
71 --disable-<codec>-decoder
72
73 Codecs available in this distribution:
74EOF
75#restore editor state '
76
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +090077 family="";
78 last_family="";
79 c="";
80 str="";
John Koleszar0ea50ce2010-05-18 11:58:33 -040081 for c in ${CODECS}; do
82 family=${c%_*}
83 if [ "${family}" != "${last_family}" ]; then
84 [ -z "${str}" ] || echo "${str}"
85 str="$(printf ' %10s:' ${family})"
86 fi
87 str="${str} $(printf '%10s' ${c#*_})"
88 last_family=${family}
89 done
90 echo "${str}"
91 show_help_post
92}
93
94##
95## BEGIN APPLICATION SPECIFIC CONFIGURATION
96##
97
98# all_platforms is a list of all supported target platforms. Maintain
99# alphabetically by architecture, generic-gnu last.
Johann2967bf32016-06-22 16:08:10 -0700100all_platforms="${all_platforms} arm64-darwin-gcc"
101all_platforms="${all_platforms} arm64-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400102all_platforms="${all_platforms} armv6-linux-rvct"
103all_platforms="${all_platforms} armv6-linux-gcc"
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200104all_platforms="${all_platforms} armv6-none-rvct"
Fritz Koenigd8305732012-01-06 11:50:05 -0800105all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8
John Koleszar0ea50ce2010-05-18 11:58:33 -0400106all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8
107all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8
108all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200109all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8
Martin Storsjoad484fc2013-05-18 23:32:49 +0300110all_platforms="${all_platforms} armv7-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800111all_platforms="${all_platforms} armv7-win32-vs12"
Ghislain MARY3067c342015-07-28 16:37:09 +0200112all_platforms="${all_platforms} armv7-win32-vs14"
Tom Finegancd2088b2014-06-10 18:52:58 -0700113all_platforms="${all_platforms} armv7s-darwin-gcc"
Johann2967bf32016-06-22 16:08:10 -0700114all_platforms="${all_platforms} armv8-linux-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400115all_platforms="${all_platforms} mips32-linux-gcc"
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200116all_platforms="${all_platforms} mips64-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"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500127all_platforms="${all_platforms} x86-darwin14-gcc"
Alex Converse080ad912015-11-02 14:05:37 -0800128all_platforms="${all_platforms} x86-darwin15-gcc"
Tom Finegan4e6c5552014-06-04 18:57:25 -0700129all_platforms="${all_platforms} x86-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400130all_platforms="${all_platforms} x86-linux-gcc"
131all_platforms="${all_platforms} x86-linux-icc"
KO Myung-Hun2dad8d62012-02-03 13:31:11 +0900132all_platforms="${all_platforms} x86-os2-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400133all_platforms="${all_platforms} x86-solaris-gcc"
134all_platforms="${all_platforms} x86-win32-gcc"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300135all_platforms="${all_platforms} x86-win32-vs10"
136all_platforms="${all_platforms} x86-win32-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800137all_platforms="${all_platforms} x86-win32-vs12"
Ghislain MARY3067c342015-07-28 16:37:09 +0200138all_platforms="${all_platforms} x86-win32-vs14"
James Zern5da87e82015-07-24 14:24:20 -0700139all_platforms="${all_platforms} x86_64-android-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400140all_platforms="${all_platforms} x86_64-darwin9-gcc"
tomfineganfaaa57b2010-11-16 14:52:05 -0500141all_platforms="${all_platforms} x86_64-darwin10-gcc"
Christian Duvivier82edabc2012-08-06 15:05:24 -0700142all_platforms="${all_platforms} x86_64-darwin11-gcc"
Johann101c2bd2012-04-27 11:40:04 -0700143all_platforms="${all_platforms} x86_64-darwin12-gcc"
Morton Jonuschatfe4a5202013-07-19 21:09:23 +0200144all_platforms="${all_platforms} x86_64-darwin13-gcc"
Lawrence Velázquez4fe4c282015-01-22 16:46:02 -0500145all_platforms="${all_platforms} x86_64-darwin14-gcc"
Alex Converse080ad912015-11-02 14:05:37 -0800146all_platforms="${all_platforms} x86_64-darwin15-gcc"
Tom Finegan9b259762014-06-06 16:54:16 -0700147all_platforms="${all_platforms} x86_64-iphonesimulator-gcc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400148all_platforms="${all_platforms} x86_64-linux-gcc"
Yunqing Wang7630e362010-06-17 13:34:19 -0400149all_platforms="${all_platforms} x86_64-linux-icc"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400150all_platforms="${all_platforms} x86_64-solaris-gcc"
Rafaël Carré3cad6942011-11-11 22:45:44 -0500151all_platforms="${all_platforms} x86_64-win64-gcc"
Martin Storsjobd91beb2013-05-17 00:57:57 +0300152all_platforms="${all_platforms} x86_64-win64-vs10"
153all_platforms="${all_platforms} x86_64-win64-vs11"
Yaowu Xua638bdf2013-11-13 11:36:32 -0800154all_platforms="${all_platforms} x86_64-win64-vs12"
Ghislain MARY3067c342015-07-28 16:37:09 +0200155all_platforms="${all_platforms} x86_64-win64-vs14"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400156all_platforms="${all_platforms} generic-gnu"
157
158# all_targets is a list of all targets that can be configured
159# note that these should be in dependency order for now.
160all_targets="libs examples docs"
161
162# all targets available are enabled, by default.
163for t in ${all_targets}; do
James Zern95735c32014-04-23 14:51:45 -0700164 [ -f "${source_path}/${t}.mk" ] && enable_feature ${t}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400165done
166
James Zern4b418002014-03-18 18:19:16 -0700167if ! perl --version >/dev/null; then
168 die "Perl is required to build"
169fi
James Zern14be7ba2014-02-28 12:24:46 -0800170
James Zern9402e252014-03-05 14:13:01 -0800171
James Zern95735c32014-04-23 14:51:45 -0700172if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then
James Zern9402e252014-03-05 14:13:01 -0800173 # test to see if source_path already configured
Yaowu Xuf883b422016-08-30 14:01:10 -0700174 if [ -f "${source_path}/aom_config.h" ]; then
James Zern9402e252014-03-05 14:13:01 -0800175 die "source directory already configured; run 'make distclean' there first"
176 fi
177fi
178
John Koleszar0ea50ce2010-05-18 11:58:33 -0400179# check installed doxygen version
180doxy_version=$(doxygen --version 2>/dev/null)
181doxy_major=${doxy_version%%.*}
182if [ ${doxy_major:-0} -ge 1 ]; then
183 doxy_version=${doxy_version#*.}
184 doxy_minor=${doxy_version%%.*}
185 doxy_patch=${doxy_version##*.}
186
James Zern42ab4012013-08-21 18:11:45 -0700187 [ $doxy_major -gt 1 ] && enable_feature doxygen
188 [ $doxy_minor -gt 5 ] && enable_feature doxygen
189 [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen
John Koleszar0ea50ce2010-05-18 11:58:33 -0400190fi
191
Johann7875e1d2015-05-22 06:52:59 -0700192# disable codecs when their source directory does not exist
Yaowu Xuf883b422016-08-30 14:01:10 -0700193[ -d "${source_path}/av1" ] || disable_codec av1
Johann7875e1d2015-05-22 06:52:59 -0700194
John Koleszaree8bcb12010-05-24 10:16:44 -0400195# install everything except the sources, by default. sources will have
196# to be enabled when doing dist builds, since that's no longer a common
197# case.
James Zernf8630c72014-05-10 11:15:11 -0700198enabled doxygen && enable_feature install_docs
James Zern42ab4012013-08-21 18:11:45 -0700199enable_feature install_bins
200enable_feature install_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400201
James Zern42ab4012013-08-21 18:11:45 -0700202enable_feature static
203enable_feature optimizations
James Zernaaccf652015-02-05 19:31:38 -0800204enable_feature dependency_tracking
James Zern42ab4012013-08-21 18:11:45 -0700205enable_feature spatial_resampling
206enable_feature multithread
207enable_feature os_support
208enable_feature temporal_denoising
John Koleszar0ea50ce2010-05-18 11:58:33 -0400209
Johann7875e1d2015-05-22 06:52:59 -0700210CODECS="
Yaowu Xuf883b422016-08-30 14:01:10 -0700211 av1_encoder
212 av1_decoder
Johann7875e1d2015-05-22 06:52:59 -0700213"
214CODEC_FAMILIES="
Yaowu Xuf883b422016-08-30 14:01:10 -0700215 av1
Johann7875e1d2015-05-22 06:52:59 -0700216"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400217
218ARCH_LIST="
219 arm
220 mips
221 x86
222 x86_64
John Koleszar0ea50ce2010-05-18 11:58:33 -0400223"
James Zern6e6dbbc2015-11-17 16:14:05 -0800224ARCH_EXT_LIST_X86="
225 mmx
226 sse
227 sse2
228 sse3
229 ssse3
230 sse4_1
231 avx
232 avx2
233"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400234ARCH_EXT_LIST="
Fritz Koenig89210282012-01-19 15:18:31 -0800235 edsp
236 media
237 neon
Johannce239312014-05-07 11:01:31 -0700238 neon_asm
John Koleszar0ea50ce2010-05-18 11:58:33 -0400239
240 mips32
Dragan Mrdjan07ff7fa2012-04-11 09:53:15 -0700241 dspr2
Parag Salasakar84ec68d2015-03-16 12:36:59 +0530242 msa
Gordana Cmiljanovic1c31e3e2014-08-07 19:09:47 +0200243 mips64
244
James Zern6e6dbbc2015-11-17 16:14:05 -0800245 ${ARCH_EXT_LIST_X86}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400246"
247HAVE_LIST="
248 ${ARCH_EXT_LIST}
Yaowu Xuf883b422016-08-30 14:01:10 -0700249 aom_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400250 pthread_h
Attila Nagy297b2762011-03-25 12:53:03 +0200251 unistd_h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400252"
John Koleszar0952acb2010-06-01 11:14:25 -0400253EXPERIMENT_LIST="
Pengchong Jinaaabbd62014-06-30 09:52:27 -0700254 fp_mb_stats
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700255 emulate_hardware
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700256 clpf
Yaowu Xu253c0012016-08-15 10:27:19 -0700257 dering
Jingning Hancffcfdb2015-10-06 14:23:12 -0700258 var_tx
Debargha Mukherjeee5848de2016-07-01 12:57:14 -0700259 rect_tx
Jingning Hanfe8ecc82015-11-19 11:40:56 -0800260 ref_mv
Jingning Han39775e12016-05-02 08:55:40 -0700261 dual_filter
hui sub3cc3a02015-08-24 14:37:54 -0700262 ext_tx
Debargha Mukherjeefe381482016-10-18 10:24:31 -0700263 tx64x64
Jingning Hand98a45a2016-06-20 18:24:38 -0700264 sub8x8_mc
Yaowu Xu5a27b3b2015-10-22 12:18:52 -0700265 ext_intra
hui suffcf4fb2016-10-17 16:14:27 -0700266 filter_intra
Debargha Mukherjee73e06f32015-11-02 09:58:58 -0800267 ext_inter
268 ext_interp
269 ext_refs
Sarah Parker091f0802016-03-23 15:24:44 -0700270 global_motion
Sarah Parker867f6642016-05-05 13:41:24 -0700271 new_quant
Debargha Mukherjee5bbacd92015-11-13 11:32:17 -0800272 supertx
Alex Converse9ffcb462015-12-16 11:16:32 -0800273 ans
Alex Converseec6fb642016-10-19 11:31:48 -0700274 rans
Alex Converseaca9feb2016-10-10 11:08:10 -0700275 ec_multisymbol
Debargha Mukherjee6a5a08e2016-01-15 12:55:03 -0800276 loop_restoration
277 ext_partition
Julia Robson8bc8f272016-03-18 15:22:42 +0000278 ext_partition_types
Debargha Mukherjee86088512016-03-08 07:17:29 -0800279 ext_tile
Yue Chencb60b182016-10-13 15:18:22 -0700280 motion_var
Debargha Mukherjeebcf4e0a2016-06-09 02:22:48 -0700281 warped_motion
hui su08d7f442016-03-15 11:44:01 -0700282 entropy
Zoe Liu9e974b82016-05-05 14:32:48 -0700283 bidir_pred
Angie Chiang4de81ee2016-07-26 14:14:20 -0700284 bitstream_debug
Urvang Joshi340593e2016-09-01 12:03:20 -0700285 alt_intra
Urvang Joshib100db72016-10-12 16:28:56 -0700286 palette
Nathan E. Egge1078dee2016-03-06 10:59:29 -0500287 daala_ec
Jingning Han32658e22016-08-19 10:10:14 -0700288 cb4x4
Arild Fuldseth842e9b02016-09-02 13:00:05 +0200289 frame_size
Arild Fuldseth07441162016-08-15 15:07:52 +0200290 delta_q
Angie Chiang8c2dc6f2016-10-20 09:19:01 -0700291 adapt_scan
Arild Fuldseth7acfabb2016-08-26 14:08:58 +0200292 filter_7bit
Ryan Lei15149482016-10-25 18:48:43 -0700293 parallel_deblocking
Thomas Davies80188d12016-10-26 16:08:35 -0700294 tile_groups
Thomas9ac55082016-09-23 18:04:17 +0100295 ec_adapt
Dengca8d24d2016-10-17 14:06:35 +0800296 simp_mv_pred
John Koleszar0952acb2010-06-01 11:14:25 -0400297"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400298CONFIG_LIST="
James Zernaaccf652015-02-05 19:31:38 -0800299 dependency_tracking
John Koleszar0ea50ce2010-05-18 11:58:33 -0400300 external_build
301 install_docs
302 install_bins
303 install_libs
304 install_srcs
305 debug
306 gprof
307 gcov
308 rvct
309 gcc
310 msvs
311 pic
312 big_endian
313
314 codec_srcs
315 debug_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400316
317 dequant_tokens
318 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400319 runtime_cpu_detect
320 postproc
Yaowu Xuf883b422016-08-30 14:01:10 -0700321 av1_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400322 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700323 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400324 ${CODECS}
325 ${CODEC_FAMILIES}
326 encoders
327 decoders
328 static_msvcrt
329 spatial_resampling
330 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200331 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200332 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400333 shared
James Zern495b2412011-07-25 15:40:36 -0700334 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400335 small
Fritz Koenig647df002010-11-04 16:03:36 -0700336 postproc_visualizer
Tero Rintaluoma11a222f2011-01-24 11:21:40 +0200337 os_support
James Berrya0769f72012-05-02 17:25:58 -0400338 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700339 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700340 libyuv
Michael Bebenita6048d052016-08-25 14:40:54 -0700341 accounting
Joshua Litta782d632013-11-15 12:29:26 -0800342 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700343 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400344 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100345 temporal_denoising
Yaowu Xuf883b422016-08-30 14:01:10 -0700346 av1_temporal_denoising
Yaowu Xu0a2b25d2014-07-29 13:40:55 -0700347 coefficient_range_checking
Yaowu Xuf883b422016-08-30 14:01:10 -0700348 aom_highbitdepth
Yaowu Xu03a021a2015-12-02 17:00:26 -0800349 better_hw_compatibility
John Koleszar0952acb2010-06-01 11:14:25 -0400350 experimental
Jim Bankoski943e4322014-07-17 06:31:50 -0700351 size_limit
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700352 aom_qm
John Koleszar0952acb2010-06-01 11:14:25 -0400353 ${EXPERIMENT_LIST}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400354"
355CMDLINE_SELECT="
James Zernaaccf652015-02-05 19:31:38 -0800356 dependency_tracking
John Koleszard9847632012-12-10 12:07:59 -0800357 external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400358 extra_warnings
359 werror
360 install_docs
361 install_bins
362 install_libs
363 install_srcs
364 debug
365 gprof
366 gcov
367 pic
368 optimizations
369 ccache
370 runtime_cpu_detect
Martin Storsjo132422d2013-05-13 01:16:09 +0300371 thumb
John Koleszar0ea50ce2010-05-18 11:58:33 -0400372
373 libs
374 examples
Johannec658122012-10-10 09:16:37 -0700375 docs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400376 libc
Jan Kratochvil7be093e2010-10-05 19:15:08 +0200377 as
Jim Bankoski943e4322014-07-17 06:31:50 -0700378 size_limit
John Koleszar0ea50ce2010-05-18 11:58:33 -0400379 codec_srcs
380 debug_libs
John Koleszar0ea50ce2010-05-18 11:58:33 -0400381
382 dequant_tokens
383 dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400384 postproc
Yaowu Xuf883b422016-08-30 14:01:10 -0700385 av1_postproc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400386 multithread
Yaowu Xu57ad1892011-04-29 09:37:59 -0700387 internal_stats
John Koleszar0ea50ce2010-05-18 11:58:33 -0400388 ${CODECS}
389 ${CODEC_FAMILIES}
390 static_msvcrt
John Koleszar0ea50ce2010-05-18 11:58:33 -0400391 spatial_resampling
392 realtime_only
Attila Nagy52cf4dc2012-02-09 12:37:03 +0200393 onthefly_bitpacking
Stefan Holmerd04f8522011-05-02 15:30:51 +0200394 error_concealment
John Koleszar7aa97a32010-06-03 10:29:04 -0400395 shared
James Zern495b2412011-07-25 15:40:36 -0700396 static
John Koleszarf9b2ca52010-09-21 10:06:41 -0400397 small
Fritz Koenig647df002010-11-04 16:03:36 -0700398 postproc_visualizer
James Berrya0769f72012-05-02 17:25:58 -0400399 unit_tests
Vignesh Venkatasubramanian0ffa3832014-03-14 08:10:35 -0700400 webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700401 libyuv
Michael Bebenita6048d052016-08-25 14:40:54 -0700402 accounting
Joshua Litta782d632013-11-15 12:29:26 -0800403 decode_perf_tests
Joshua Litt83b843f2014-07-21 10:57:16 -0700404 encode_perf_tests
Yunqing Wangaa7335e2011-10-25 15:14:16 -0400405 multi_res_encoding
Stefan Holmer9c411432012-03-06 10:48:18 +0100406 temporal_denoising
Yaowu Xuf883b422016-08-30 14:01:10 -0700407 av1_temporal_denoising
Yaowu Xu0a2b25d2014-07-29 13:40:55 -0700408 coefficient_range_checking
Yaowu Xu03a021a2015-12-02 17:00:26 -0800409 better_hw_compatibility
Yaowu Xuf883b422016-08-30 14:01:10 -0700410 aom_highbitdepth
Jim Bankoskia5d11f22012-05-11 08:08:12 -0700411 experimental
Yaowu Xu0818a7c2016-08-11 09:39:47 -0700412 aom_qm
Thomas Davies80188d12016-10-26 16:08:35 -0700413 tile_groups
John Koleszar0ea50ce2010-05-18 11:58:33 -0400414"
415
416process_cmdline() {
417 for opt do
418 optval="${opt#*=}"
419 case "$opt" in
Johann0146fa92016-06-10 14:59:26 -0700420 --disable-codecs)
421 for c in ${CODEC_FAMILIES}; do disable_codec $c; done
422 ;;
John Koleszar0952acb2010-06-01 11:14:25 -0400423 --enable-?*|--disable-?*)
424 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
Johann1de5ba72016-06-17 14:25:23 -0700425 if is_in ${option} ${EXPERIMENT_LIST}; then
John Koleszar0952acb2010-06-01 11:14:25 -0400426 if enabled experimental; then
James Zernccb6bdc2013-08-21 19:00:08 -0700427 ${action}_feature $option
John Koleszar0952acb2010-06-01 11:14:25 -0400428 else
429 log_echo "Ignoring $opt -- not in experimental mode."
430 fi
Johann0146fa92016-06-10 14:59:26 -0700431 elif is_in ${option} "${CODECS} ${CODEC_FAMILIES}"; then
432 ${action}_codec ${option}
John Koleszar0952acb2010-06-01 11:14:25 -0400433 else
Yaowu Xu7793b382011-06-22 15:07:04 -0700434 process_common_cmdline $opt
John Koleszar0952acb2010-06-01 11:14:25 -0400435 fi
436 ;;
James Berrya0769f72012-05-02 17:25:58 -0400437 *) process_common_cmdline "$opt"
Yaowu Xu7793b382011-06-22 15:07:04 -0700438 ;;
John Koleszar0ea50ce2010-05-18 11:58:33 -0400439 esac
440 done
441}
442
443post_process_cmdline() {
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900444 c=""
John Koleszar0ea50ce2010-05-18 11:58:33 -0400445
John Koleszar0ea50ce2010-05-18 11:58:33 -0400446 # Enable all detected codecs, if they haven't been disabled
447 for c in ${CODECS}; do soft_enable $c; done
448
449 # Enable the codec family if any component of that family is enabled
450 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700451 enabled $c && enable_feature ${c%_*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400452 done
453
454 # Set the {en,de}coders variable if any algorithm in that class is enabled
455 for c in ${CODECS}; do
James Zern42ab4012013-08-21 18:11:45 -0700456 enabled ${c} && enable_feature ${c##*_}s
John Koleszar0ea50ce2010-05-18 11:58:33 -0400457 done
Sarah Parkerdaa4ba82016-08-18 13:03:35 -0700458
Alex Converse242558a2016-10-10 10:44:59 -0700459 # Fix up experiment dependencies
Alex Converseaca9feb2016-10-10 11:08:10 -0700460 enabled ec_adapt && enable_feature ec_multisymbol
461 enabled ec_multisymbol && ! enabled ans && soft_enable daala_ec
462 enabled ec_multisymbol && ! enabled daala_ec && soft_enable ans
463 enabled daala_ec && enable_feature ec_multisymbol
Sarah Parkerdaa4ba82016-08-18 13:03:35 -0700464 if enabled global_motion && (enabled ext_inter || enabled dual_filter); then
465 log_echo "global_motion currently not compatible with ext_inter"
466 log_echo "and dual_filter. Disabling global_motion."
467 disable_feature global_motion
468 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400469}
470
471
472process_targets() {
473 enabled child || write_common_config_banner
Yaowu Xuf883b422016-08-30 14:01:10 -0700474 write_common_target_config_h ${BUILD_PFX}aom_config.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400475 write_common_config_targets
John Koleszar0ea50ce2010-05-18 11:58:33 -0400476
477 # Calculate the default distribution name, based on the enabled features
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900478 cf=""
Yaowu Xuf883b422016-08-30 14:01:10 -0700479 DIST_DIR=aom
John Koleszar0ea50ce2010-05-18 11:58:33 -0400480 for cf in $CODEC_FAMILIES; do
481 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
482 DIST_DIR="${DIST_DIR}-${cf}"
483 elif enabled ${cf}_encoder; then
484 DIST_DIR="${DIST_DIR}-${cf}cx"
485 elif enabled ${cf}_decoder; then
486 DIST_DIR="${DIST_DIR}-${cf}dx"
487 fi
488 done
489 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
490 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
Yaowu Xuf883b422016-08-30 14:01:10 -0700491 ! enabled postproc && ! enabled av1_postproc && DIST_DIR="${DIST_DIR}-nopost"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400492 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400493 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
494 DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}"
495 case "${tgt_os}" in
496 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
497 DIST_DIR="${DIST_DIR}-${tgt_cc}"
498 ;;
499 esac
500 if [ -f "${source_path}/build/make/version.sh" ]; then
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900501 ver=`"$source_path/build/make/version.sh" --bare "$source_path"`
John Koleszar0ea50ce2010-05-18 11:58:33 -0400502 DIST_DIR="${DIST_DIR}-${ver}"
Ralph Giles53e99872011-03-28 11:36:53 -0700503 VERSION_STRING=${ver}
John Koleszar7aa97a32010-06-03 10:29:04 -0400504 ver=${ver%%-*}
505 VERSION_PATCH=${ver##*.}
506 ver=${ver%.*}
507 VERSION_MINOR=${ver##*.}
508 ver=${ver#v}
509 VERSION_MAJOR=${ver%.*}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400510 fi
John Koleszaree8bcb12010-05-24 10:16:44 -0400511 enabled child || cat <<EOF >> config.mk
Ralph Giles607f8422011-03-28 12:04:51 -0700512
513PREFIX=${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400514ifeq (\$(MAKECMDGOALS),dist)
John Koleszar670af3a2010-05-26 15:57:42 -0400515DIST_DIR?=${DIST_DIR}
John Koleszaree8bcb12010-05-24 10:16:44 -0400516else
John Koleszar670af3a2010-05-26 15:57:42 -0400517DIST_DIR?=\$(DESTDIR)${prefix}
John Koleszaree8bcb12010-05-24 10:16:44 -0400518endif
John Koleszar670af3a2010-05-26 15:57:42 -0400519LIBSUBDIR=${libdir##${prefix}/}
John Koleszar7aa97a32010-06-03 10:29:04 -0400520
Ralph Giles53e99872011-03-28 11:36:53 -0700521VERSION_STRING=${VERSION_STRING}
522
John Koleszar7aa97a32010-06-03 10:29:04 -0400523VERSION_MAJOR=${VERSION_MAJOR}
524VERSION_MINOR=${VERSION_MINOR}
525VERSION_PATCH=${VERSION_PATCH}
526
John Koleszar23d68a52010-06-22 09:53:23 -0400527CONFIGURE_ARGS=${CONFIGURE_ARGS}
John Koleszaree8bcb12010-05-24 10:16:44 -0400528EOF
John Koleszar0ea50ce2010-05-18 11:58:33 -0400529 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
530
531 #
532 # Write makefiles for all enabled targets
533 #
534 for tgt in libs examples docs solution; do
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900535 tgt_fn="$tgt-$toolchain.mk"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400536
537 if enabled $tgt; then
538 echo "Creating makefiles for ${toolchain} ${tgt}"
Yaowu Xuf883b422016-08-30 14:01:10 -0700539 write_common_target_config_mk $tgt_fn ${BUILD_PFX}aom_config.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400540 #write_${tgt}_config
541 fi
542 done
543
544}
545
546process_detect() {
John Koleszar7aa97a32010-06-03 10:29:04 -0400547 if enabled shared; then
548 # Can only build shared libs on a subset of platforms. Doing this check
549 # here rather than at option parse time because the target auto-detect
550 # magic happens after the command line has been parsed.
Brion Vibber992e4b72016-05-02 12:41:59 -0400551 case "${tgt_os}" in
552 linux|os2|darwin*|iphonesimulator*)
553 # Supported platforms
554 ;;
555 *)
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400556 if enabled gnu; then
557 echo "--enable-shared is only supported on ELF; assuming this is OK"
558 else
Brion Vibber992e4b72016-05-02 12:41:59 -0400559 die "--enable-shared only supported on ELF, OS/2, and Darwin for now"
Mike Frysingerb4ab43f2012-08-14 14:24:28 -0400560 fi
Brion Vibber992e4b72016-05-02 12:41:59 -0400561 ;;
562 esac
John Koleszar7aa97a32010-06-03 10:29:04 -0400563 fi
John Koleszard9847632012-12-10 12:07:59 -0800564 if [ -z "$CC" ] || enabled external_build; then
John Koleszar0ea50ce2010-05-18 11:58:33 -0400565 echo "Bypassing toolchain for environment detection."
James Zern42ab4012013-08-21 18:11:45 -0700566 enable_feature external_build
John Koleszar0ea50ce2010-05-18 11:58:33 -0400567 check_header() {
568 log fake_check_header "$@"
569 header=$1
570 shift
571 var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
James Zern42ab4012013-08-21 18:11:45 -0700572 disable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800573 # Headers common to all environments
John Koleszar0ea50ce2010-05-18 11:58:33 -0400574 case $header in
575 stdio.h)
576 true;
577 ;;
578 *)
KO Myung-Hun07fa6ad2014-07-22 11:09:27 +0900579 result=false
John Koleszar0ea50ce2010-05-18 11:58:33 -0400580 for d in "$@"; do
581 [ -f "${d##-I}/$header" ] && result=true && break
582 done
583 ${result:-true}
James Zern42ab4012013-08-21 18:11:45 -0700584 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800585
586 # Specialize windows and POSIX environments.
587 case $toolchain in
588 *-win*-*)
Johann3c921442015-12-17 16:51:59 -0800589 # Don't check for any headers in Windows builds.
590 false
591 ;;
John Koleszard9847632012-12-10 12:07:59 -0800592 *)
593 case $header in
John Koleszard9847632012-12-10 12:07:59 -0800594 pthread.h) true;;
John Koleszard9847632012-12-10 12:07:59 -0800595 unistd.h) true;;
596 *) false;;
James Zern42ab4012013-08-21 18:11:45 -0700597 esac && enable_feature $var
John Koleszard9847632012-12-10 12:07:59 -0800598 esac
599 enabled $var
John Koleszar0ea50ce2010-05-18 11:58:33 -0400600 }
601 check_ld() {
602 true
603 }
604 fi
605 check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}"
606 check_ld <<EOF || die "Toolchain is unable to link executables"
607int main(void) {return 0;}
608EOF
609 # check system headers
John Koleszar0ea50ce2010-05-18 11:58:33 -0400610 check_header pthread.h
John Koleszard9847632012-12-10 12:07:59 -0800611 check_header unistd.h # for sysconf(3) and friends.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400612
Yaowu Xuf883b422016-08-30 14:01:10 -0700613 check_header aom/aom_integer.h -I${source_path} && enable_feature aom_ports
John Koleszar0ea50ce2010-05-18 11:58:33 -0400614}
615
616process_toolchain() {
617 process_common_toolchain
618
John Koleszar0ea50ce2010-05-18 11:58:33 -0400619 # Enable some useful compiler flags
620 if enabled gcc; then
621 enabled werror && check_add_cflags -Werror
622 check_add_cflags -Wall
623 check_add_cflags -Wdeclaration-after-statement
624 check_add_cflags -Wdisabled-optimization
James Zerna9d98482016-07-22 13:13:56 -0700625 check_add_cflags -Wfloat-conversion
John Koleszar0ea50ce2010-05-18 11:58:33 -0400626 check_add_cflags -Wpointer-arith
627 check_add_cflags -Wtype-limits
Daniel Kang2f963912012-08-13 14:18:09 -0700628 check_add_cflags -Wvla
Attila Nagy14c9fce2012-04-27 13:41:58 +0300629 check_add_cflags -Wimplicit-function-declaration
630 check_add_cflags -Wuninitialized
Urvang Joshi3212dda2016-07-14 12:45:35 -0700631 check_add_cflags -Wunused
Urvang Joshid3a75762016-07-08 16:09:36 -0700632 check_add_cflags -Wsign-compare
Urvang Joshicd8ab902016-10-28 12:32:06 -0700633 check_add_cflags -Wlogical-op
Urvang Joshid71a2312016-07-14 12:33:48 -0700634 # Enabling the following warning (in combination with -Wunused above)
635 # for C++ generates errors in third_party code including googletest and
636 # libyuv. So enable it only for C code.
637 check_cflags "-Wextra" && add_cflags_only "-Wextra"
Urvang Joshi4145bf02016-10-17 14:53:33 -0700638 # Enabling the following warning for C++ generates some useless warnings
639 # about some function parameters shadowing class member function names.
640 # So, only enable this warning for C code.
641 check_cflags "-Wshadow" && add_cflags_only "-Wshadow"
Yaowu Xu4d90ae42016-02-05 09:35:34 -0800642 if enabled mips || [ -z "${INLINE}" ]; then
James Zern771d2762016-02-01 20:52:16 -0800643 enabled extra_warnings || check_add_cflags -Wno-unused-function
James Zern771d2762016-02-01 20:52:16 -0800644 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400645 fi
646
647 if enabled icc; then
648 enabled werror && check_add_cflags -Werror
649 check_add_cflags -Wall
650 check_add_cflags -Wpointer-arith
651
652 # ICC has a number of floating point optimizations that we disable
653 # in favor of deterministic output WRT to other compilers
654 add_cflags -fp-model precise
655 fi
656
657 # Enable extra, harmless warnings. These might provide additional insight
658 # to what the compiler is doing and why, but in general, but they shouldn't
659 # be treated as fatal, even if we're treating warnings as errors.
660 GCC_EXTRA_WARNINGS="
661 -Wdisabled-optimization
662 -Winline
663 "
664 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
665 RVCT_EXTRA_WARNINGS="
666 --remarks
667 "
668 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
669 if enabled extra_warnings; then
670 for w in ${EXTRA_WARNINGS}; do
671 check_add_cflags ${w}
672 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
673 done
674 fi
675
676 # ccache only really works on gcc toolchains
677 enabled gcc || soft_disable ccache
678 if enabled mips; then
James Zern42ab4012013-08-21 18:11:45 -0700679 enable_feature dequant_tokens
680 enable_feature dc_recon
John Koleszar0ea50ce2010-05-18 11:58:33 -0400681 fi
682
683 # Enable the postbuild target if building for visual studio.
684 case "$tgt_cc" in
James Zern42ab4012013-08-21 18:11:45 -0700685 vs*) enable_feature msvs
686 enable_feature solution
John Koleszar0ea50ce2010-05-18 11:58:33 -0400687 vs_version=${tgt_cc##vs}
James Zernf8876a22016-06-27 20:08:12 -0700688 VCPROJ_SFX=vcxproj
689 gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh
690 enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400691 all_targets="${all_targets} solution"
Ronald S. Bultjeaac73df2013-02-06 12:45:28 -0800692 INLINE="__forceinline"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400693 ;;
694 esac
695
696 # Other toolchain specific defaults
Tom Finegan3d7063d2015-05-12 15:33:40 -0700697 case $toolchain in x86*) soft_enable postproc;; esac
Fritz Koenig647df002010-11-04 16:03:36 -0700698
Fritz Koenig692b1082010-11-10 14:51:49 -0800699 if enabled postproc_visualizer; then
700 enabled postproc || die "postproc_visualizer requires postproc to be enabled"
701 fi
John Koleszar2bf62c12012-05-22 11:51:14 -0700702
Johannb46d58a2013-01-18 11:31:22 -0800703 # Enable unit tests by default if we have a working C++ compiler.
Johannd6e80de2012-06-12 08:58:11 -0700704 case "$toolchain" in
705 *-vs*)
706 soft_enable unit_tests
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700707 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700708 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700709 ;;
710 *-android-*)
Vignesh Venkatasubramanian4721f9e2014-04-29 00:03:01 -0700711 soft_enable webm_io
Deb Mukherjee47031c02014-05-16 18:52:01 -0700712 soft_enable libyuv
Johannd6e80de2012-06-12 08:58:11 -0700713 # GTestLog must be modified to use Android logging utilities.
714 ;;
Johanna1d929e2012-12-13 11:35:59 -0800715 *-darwin-*)
716 # iOS/ARM builds do not work with gtest. This does not match
717 # x86 targets.
718 ;;
Tom Finegan4e6c5552014-06-04 18:57:25 -0700719 *-iphonesimulator-*)
720 soft_enable webm_io
721 soft_enable libyuv
722 ;;
James Zerne4d2c252013-06-26 18:35:11 -0700723 *-win*)
724 # Some mingw toolchains don't have pthread available by default.
725 # Treat these more like visual studio where threading in gtest
726 # would be disabled for the same reason.
727 check_cxx "$@" <<EOF && soft_enable unit_tests
728int z;
729EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700730 check_cxx "$@" <<EOF && soft_enable webm_io
731int z;
732EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700733 check_cxx "$@" <<EOF && soft_enable libyuv
734int z;
735EOF
James Zerne4d2c252013-06-26 18:35:11 -0700736 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700737 *)
James Zernf2dc3822013-06-20 12:49:15 -0700738 enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests
John Koleszar2bf62c12012-05-22 11:51:14 -0700739int z;
740EOF
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700741 check_cxx "$@" <<EOF && soft_enable webm_io
742int z;
743EOF
Deb Mukherjee47031c02014-05-16 18:52:01 -0700744 check_cxx "$@" <<EOF && soft_enable libyuv
745int z;
746EOF
Johannd6e80de2012-06-12 08:58:11 -0700747 ;;
John Koleszar2bf62c12012-05-22 11:51:14 -0700748 esac
Vignesh Venkatasubramanian2dcbf8c2014-03-19 11:56:02 -0700749 # libwebm needs to be linked with C++ standard library
750 enabled webm_io && LD=${CXX}
James Zern43a34552015-08-26 20:28:26 -0700751
752 # append any user defined extra cflags
753 if [ -n "${extra_cflags}" ] ; then
754 check_add_cflags ${extra_cflags} || \
755 die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler"
756 fi
Yaowu Xu7c514e22015-09-28 15:55:46 -0700757 if [ -n "${extra_cxxflags}" ]; then
758 check_add_cxxflags ${extra_cxxflags} || \
759 die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler"
760 fi
John Koleszar0ea50ce2010-05-18 11:58:33 -0400761}
762
763
764##
765## END APPLICATION SPECIFIC CONFIGURATION
766##
767CONFIGURE_ARGS="$@"
768process "$@"
Yaowu Xuf883b422016-08-30 14:01:10 -0700769print_webm_license ${BUILD_PFX}aom_config.c "/*" " */"
770cat <<EOF >> ${BUILD_PFX}aom_config.c
771#include "aom/aom_codec.h"
John Koleszar0ea50ce2010-05-18 11:58:33 -0400772static const char* const cfg = "$CONFIGURE_ARGS";
Yaowu Xuf883b422016-08-30 14:01:10 -0700773const char *aom_codec_build_config(void) {return cfg;}
John Koleszar0ea50ce2010-05-18 11:58:33 -0400774EOF