Guillaume Martres | 3526f1c | 2013-08-13 18:46:58 -0700 | [diff] [blame] | 1 | #!/bin/sh |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2 | ## |
John Koleszar | 0d71965 | 2010-05-28 10:11:58 -0400 | [diff] [blame] | 3 | ## configure |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 4 | ## |
John Koleszar | 0d71965 | 2010-05-28 10:11:58 -0400 | [diff] [blame] | 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. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 13 | ## |
| 14 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 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: |
Johann | ec65812 | 2012-10-10 09:16:37 -0700 | [diff] [blame] | 23 | ${toggle_libs} libraries |
| 24 | ${toggle_examples} examples |
| 25 | ${toggle_docs} documentation |
| 26 | ${toggle_unit_tests} unit tests |
Joshua Litt | a782d63 | 2013-11-15 12:29:26 -0800 | [diff] [blame] | 27 | ${toggle_decode_perf_tests} build decoder perf tests with unit tests |
Joshua Litt | 83b843f | 2014-07-21 10:57:16 -0700 | [diff] [blame] | 28 | ${toggle_encode_perf_tests} build encoder perf tests with unit tests |
Johann | 661802b | 2014-12-01 11:06:49 -0800 | [diff] [blame] | 29 | --cpu=CPU tune for the specified CPU (ARM: cortex-a8, X86: sse3) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 30 | --libc=PATH path to alternate libc |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 31 | --size-limit=WxH max size to allow in the decoder |
Jan Kratochvil | 7be093e | 2010-10-05 19:15:08 +0200 | [diff] [blame] | 32 | --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred] |
Johann | 5d0c33b | 2013-11-13 14:05:27 -0800 | [diff] [blame] | 33 | --sdk-path=PATH path to root of sdk (android builds only) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 34 | ${toggle_codec_srcs} in/exclude codec library source code |
| 35 | ${toggle_debug_libs} in/exclude debug version of libraries |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 36 | ${toggle_static_msvcrt} use static MSVCRT (VS builds only) |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 37 | ${toggle_aom_highbitdepth} use high bit depth (10/12) profiles |
Yaowu Xu | 03a021a | 2015-12-02 17:00:26 -0800 | [diff] [blame] | 38 | ${toggle_better_hw_compatibility} |
| 39 | enable encoder to produce streams with better |
| 40 | hardware decoder compatibility |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 41 | ${toggle_av1} AV1 codec support |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 42 | ${toggle_internal_stats} output of encoder internal stats for debug, if supported (encoders) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 43 | ${toggle_postproc} postprocessing |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 44 | ${toggle_av1_postproc} av1 specific postprocessing |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 45 | ${toggle_multithread} multithreaded encoding and decoding |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 46 | ${toggle_spatial_resampling} spatial sampling (scaling) support |
| 47 | ${toggle_realtime_only} enable this option while building for real-time encoding |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 48 | ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 49 | ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses |
Yaowu Xu | 0a2b25d | 2014-07-29 13:40:55 -0700 | [diff] [blame] | 50 | ${toggle_coefficient_range_checking} |
| 51 | enable decoder to check if intermediate |
| 52 | transform coefficients are in valid range |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 53 | ${toggle_runtime_cpu_detect} runtime cpu detection |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 54 | ${toggle_shared} shared library support |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 55 | ${toggle_static} static library support |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 56 | ${toggle_small} favor smaller size over speed |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 57 | ${toggle_postproc_visualizer} macro block / block level visualizers |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 58 | ${toggle_multi_res_encoding} enable multiple-resolution encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 59 | ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 60 | ${toggle_av1_temporal_denoising} |
| 61 | enable av1 temporal denoising |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 62 | ${toggle_webm_io} enable input from and output to WebM container |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 63 | ${toggle_libyuv} enable libyuv |
Michael Bebenita | 6048d05 | 2016-08-25 14:40:54 -0700 | [diff] [blame] | 64 | ${toggle_accounting} enable bit accounting |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 65 | |
| 66 | Codecs: |
| 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: |
| 74 | EOF |
| 75 | #restore editor state ' |
| 76 | |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 77 | family=""; |
| 78 | last_family=""; |
| 79 | c=""; |
| 80 | str=""; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 81 | 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. |
Johann | 2967bf3 | 2016-06-22 16:08:10 -0700 | [diff] [blame] | 100 | all_platforms="${all_platforms} arm64-darwin-gcc" |
| 101 | all_platforms="${all_platforms} arm64-linux-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 102 | all_platforms="${all_platforms} armv6-linux-rvct" |
| 103 | all_platforms="${all_platforms} armv6-linux-gcc" |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 104 | all_platforms="${all_platforms} armv6-none-rvct" |
Fritz Koenig | d830573 | 2012-01-06 11:50:05 -0800 | [diff] [blame] | 105 | all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 106 | all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8 |
| 107 | all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8 |
| 108 | all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8 |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 109 | all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8 |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 110 | all_platforms="${all_platforms} armv7-win32-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 111 | all_platforms="${all_platforms} armv7-win32-vs14" |
Tom Finegan | cd2088b | 2014-06-10 18:52:58 -0700 | [diff] [blame] | 112 | all_platforms="${all_platforms} armv7s-darwin-gcc" |
Johann | 2967bf3 | 2016-06-22 16:08:10 -0700 | [diff] [blame] | 113 | all_platforms="${all_platforms} armv8-linux-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 114 | all_platforms="${all_platforms} mips32-linux-gcc" |
Gordana Cmiljanovic | 1c31e3e | 2014-08-07 19:09:47 +0200 | [diff] [blame] | 115 | all_platforms="${all_platforms} mips64-linux-gcc" |
Aaron Watry | 53f61ce | 2010-09-30 15:36:00 -0400 | [diff] [blame] | 116 | all_platforms="${all_platforms} sparc-solaris-gcc" |
Andoni Morales Alastruey | 652589d | 2013-01-14 12:25:52 +0100 | [diff] [blame] | 117 | all_platforms="${all_platforms} x86-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 118 | all_platforms="${all_platforms} x86-darwin8-gcc" |
| 119 | all_platforms="${all_platforms} x86-darwin8-icc" |
| 120 | all_platforms="${all_platforms} x86-darwin9-gcc" |
| 121 | all_platforms="${all_platforms} x86-darwin9-icc" |
Johann | 4341e5a | 2011-10-14 12:06:24 -0700 | [diff] [blame] | 122 | all_platforms="${all_platforms} x86-darwin10-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 123 | all_platforms="${all_platforms} x86-darwin11-gcc" |
| 124 | all_platforms="${all_platforms} x86-darwin12-gcc" |
Morton Jonuschat | fe4a520 | 2013-07-19 21:09:23 +0200 | [diff] [blame] | 125 | all_platforms="${all_platforms} x86-darwin13-gcc" |
Lawrence Velázquez | 4fe4c28 | 2015-01-22 16:46:02 -0500 | [diff] [blame] | 126 | all_platforms="${all_platforms} x86-darwin14-gcc" |
Alex Converse | 080ad91 | 2015-11-02 14:05:37 -0800 | [diff] [blame] | 127 | all_platforms="${all_platforms} x86-darwin15-gcc" |
Tom Finegan | 4e6c555 | 2014-06-04 18:57:25 -0700 | [diff] [blame] | 128 | all_platforms="${all_platforms} x86-iphonesimulator-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 129 | all_platforms="${all_platforms} x86-linux-gcc" |
| 130 | all_platforms="${all_platforms} x86-linux-icc" |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 131 | all_platforms="${all_platforms} x86-os2-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 132 | all_platforms="${all_platforms} x86-solaris-gcc" |
| 133 | all_platforms="${all_platforms} x86-win32-gcc" |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 134 | all_platforms="${all_platforms} x86-win32-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 135 | all_platforms="${all_platforms} x86-win32-vs14" |
James Zern | 5da87e8 | 2015-07-24 14:24:20 -0700 | [diff] [blame] | 136 | all_platforms="${all_platforms} x86_64-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 137 | all_platforms="${all_platforms} x86_64-darwin9-gcc" |
tomfinegan | faaa57b | 2010-11-16 14:52:05 -0500 | [diff] [blame] | 138 | all_platforms="${all_platforms} x86_64-darwin10-gcc" |
Christian Duvivier | 82edabc | 2012-08-06 15:05:24 -0700 | [diff] [blame] | 139 | all_platforms="${all_platforms} x86_64-darwin11-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 140 | all_platforms="${all_platforms} x86_64-darwin12-gcc" |
Morton Jonuschat | fe4a520 | 2013-07-19 21:09:23 +0200 | [diff] [blame] | 141 | all_platforms="${all_platforms} x86_64-darwin13-gcc" |
Lawrence Velázquez | 4fe4c28 | 2015-01-22 16:46:02 -0500 | [diff] [blame] | 142 | all_platforms="${all_platforms} x86_64-darwin14-gcc" |
Alex Converse | 080ad91 | 2015-11-02 14:05:37 -0800 | [diff] [blame] | 143 | all_platforms="${all_platforms} x86_64-darwin15-gcc" |
Tom Finegan | 9b25976 | 2014-06-06 16:54:16 -0700 | [diff] [blame] | 144 | all_platforms="${all_platforms} x86_64-iphonesimulator-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 145 | all_platforms="${all_platforms} x86_64-linux-gcc" |
Yunqing Wang | 7630e36 | 2010-06-17 13:34:19 -0400 | [diff] [blame] | 146 | all_platforms="${all_platforms} x86_64-linux-icc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 147 | all_platforms="${all_platforms} x86_64-solaris-gcc" |
Rafaël Carré | 3cad694 | 2011-11-11 22:45:44 -0500 | [diff] [blame] | 148 | all_platforms="${all_platforms} x86_64-win64-gcc" |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 149 | all_platforms="${all_platforms} x86_64-win64-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 150 | all_platforms="${all_platforms} x86_64-win64-vs14" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 151 | all_platforms="${all_platforms} generic-gnu" |
| 152 | |
| 153 | # all_targets is a list of all targets that can be configured |
| 154 | # note that these should be in dependency order for now. |
| 155 | all_targets="libs examples docs" |
| 156 | |
| 157 | # all targets available are enabled, by default. |
| 158 | for t in ${all_targets}; do |
James Zern | 95735c3 | 2014-04-23 14:51:45 -0700 | [diff] [blame] | 159 | [ -f "${source_path}/${t}.mk" ] && enable_feature ${t} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 160 | done |
| 161 | |
James Zern | 4b41800 | 2014-03-18 18:19:16 -0700 | [diff] [blame] | 162 | if ! perl --version >/dev/null; then |
| 163 | die "Perl is required to build" |
| 164 | fi |
James Zern | 14be7ba | 2014-02-28 12:24:46 -0800 | [diff] [blame] | 165 | |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 166 | |
James Zern | 95735c3 | 2014-04-23 14:51:45 -0700 | [diff] [blame] | 167 | if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 168 | # test to see if source_path already configured |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 169 | if [ -f "${source_path}/aom_config.h" ]; then |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 170 | die "source directory already configured; run 'make distclean' there first" |
| 171 | fi |
| 172 | fi |
| 173 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 174 | # check installed doxygen version |
| 175 | doxy_version=$(doxygen --version 2>/dev/null) |
| 176 | doxy_major=${doxy_version%%.*} |
| 177 | if [ ${doxy_major:-0} -ge 1 ]; then |
| 178 | doxy_version=${doxy_version#*.} |
| 179 | doxy_minor=${doxy_version%%.*} |
| 180 | doxy_patch=${doxy_version##*.} |
| 181 | |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 182 | [ $doxy_major -gt 1 ] && enable_feature doxygen |
| 183 | [ $doxy_minor -gt 5 ] && enable_feature doxygen |
| 184 | [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 185 | fi |
| 186 | |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 187 | # disable codecs when their source directory does not exist |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 188 | [ -d "${source_path}/av1" ] || disable_codec av1 |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 189 | |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 190 | # install everything except the sources, by default. sources will have |
| 191 | # to be enabled when doing dist builds, since that's no longer a common |
| 192 | # case. |
James Zern | f8630c7 | 2014-05-10 11:15:11 -0700 | [diff] [blame] | 193 | enabled doxygen && enable_feature install_docs |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 194 | enable_feature install_bins |
| 195 | enable_feature install_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 196 | |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 197 | enable_feature static |
| 198 | enable_feature optimizations |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 199 | enable_feature dependency_tracking |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 200 | enable_feature spatial_resampling |
| 201 | enable_feature multithread |
| 202 | enable_feature os_support |
| 203 | enable_feature temporal_denoising |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 204 | |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 205 | CODECS=" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 206 | av1_encoder |
| 207 | av1_decoder |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 208 | " |
| 209 | CODEC_FAMILIES=" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 210 | av1 |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 211 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 212 | |
| 213 | ARCH_LIST=" |
| 214 | arm |
| 215 | mips |
| 216 | x86 |
| 217 | x86_64 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 218 | " |
James Zern | 6e6dbbc | 2015-11-17 16:14:05 -0800 | [diff] [blame] | 219 | ARCH_EXT_LIST_X86=" |
| 220 | mmx |
| 221 | sse |
| 222 | sse2 |
| 223 | sse3 |
| 224 | ssse3 |
| 225 | sse4_1 |
| 226 | avx |
| 227 | avx2 |
| 228 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 229 | ARCH_EXT_LIST=" |
Fritz Koenig | 8921028 | 2012-01-19 15:18:31 -0800 | [diff] [blame] | 230 | edsp |
| 231 | media |
| 232 | neon |
Johann | ce23931 | 2014-05-07 11:01:31 -0700 | [diff] [blame] | 233 | neon_asm |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 234 | |
| 235 | mips32 |
Dragan Mrdjan | 07ff7fa | 2012-04-11 09:53:15 -0700 | [diff] [blame] | 236 | dspr2 |
Parag Salasakar | 84ec68d | 2015-03-16 12:36:59 +0530 | [diff] [blame] | 237 | msa |
Gordana Cmiljanovic | 1c31e3e | 2014-08-07 19:09:47 +0200 | [diff] [blame] | 238 | mips64 |
| 239 | |
James Zern | 6e6dbbc | 2015-11-17 16:14:05 -0800 | [diff] [blame] | 240 | ${ARCH_EXT_LIST_X86} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 241 | " |
| 242 | HAVE_LIST=" |
| 243 | ${ARCH_EXT_LIST} |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 244 | aom_ports |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 245 | pthread_h |
Attila Nagy | 297b276 | 2011-03-25 12:53:03 +0200 | [diff] [blame] | 246 | unistd_h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 247 | " |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 248 | EXPERIMENT_LIST=" |
Pengchong Jin | aaabbd6 | 2014-06-30 09:52:27 -0700 | [diff] [blame] | 249 | fp_mb_stats |
Deb Mukherjee | d50716f | 2014-10-02 15:43:27 -0700 | [diff] [blame] | 250 | emulate_hardware |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 251 | clpf |
Yaowu Xu | 253c001 | 2016-08-15 10:27:19 -0700 | [diff] [blame] | 252 | dering |
Jingning Han | cffcfdb | 2015-10-06 14:23:12 -0700 | [diff] [blame] | 253 | var_tx |
Debargha Mukherjee | e5848de | 2016-07-01 12:57:14 -0700 | [diff] [blame] | 254 | rect_tx |
Jingning Han | fe8ecc8 | 2015-11-19 11:40:56 -0800 | [diff] [blame] | 255 | ref_mv |
Jingning Han | 39775e1 | 2016-05-02 08:55:40 -0700 | [diff] [blame] | 256 | dual_filter |
hui su | b3cc3a0 | 2015-08-24 14:37:54 -0700 | [diff] [blame] | 257 | ext_tx |
Debargha Mukherjee | fe38148 | 2016-10-18 10:24:31 -0700 | [diff] [blame] | 258 | tx64x64 |
Jingning Han | d98a45a | 2016-06-20 18:24:38 -0700 | [diff] [blame] | 259 | sub8x8_mc |
Yaowu Xu | 5a27b3b | 2015-10-22 12:18:52 -0700 | [diff] [blame] | 260 | ext_intra |
hui su | eda3d76 | 2016-12-06 16:58:23 -0800 | [diff] [blame] | 261 | intra_interp |
hui su | ffcf4fb | 2016-10-17 16:14:27 -0700 | [diff] [blame] | 262 | filter_intra |
Debargha Mukherjee | 73e06f3 | 2015-11-02 09:58:58 -0800 | [diff] [blame] | 263 | ext_inter |
Sarah Parker | 2f6ce75 | 2016-12-08 15:26:46 -0800 | [diff] [blame] | 264 | compound_segment |
Debargha Mukherjee | 73e06f3 | 2015-11-02 09:58:58 -0800 | [diff] [blame] | 265 | ext_refs |
Sarah Parker | 091f080 | 2016-03-23 15:24:44 -0700 | [diff] [blame] | 266 | global_motion |
Sarah Parker | 867f664 | 2016-05-05 13:41:24 -0700 | [diff] [blame] | 267 | new_quant |
Debargha Mukherjee | 5bbacd9 | 2015-11-13 11:32:17 -0800 | [diff] [blame] | 268 | supertx |
Alex Converse | 9ffcb46 | 2015-12-16 11:16:32 -0800 | [diff] [blame] | 269 | ans |
Alex Converse | aca9feb | 2016-10-10 11:08:10 -0700 | [diff] [blame] | 270 | ec_multisymbol |
Debargha Mukherjee | 6a5a08e | 2016-01-15 12:55:03 -0800 | [diff] [blame] | 271 | loop_restoration |
| 272 | ext_partition |
Julia Robson | 8bc8f27 | 2016-03-18 15:22:42 +0000 | [diff] [blame] | 273 | ext_partition_types |
Alex Converse | 55c6bde | 2017-01-12 15:55:31 -0800 | [diff] [blame] | 274 | unpoison_partition_ctx |
Debargha Mukherjee | 8608851 | 2016-03-08 07:17:29 -0800 | [diff] [blame] | 275 | ext_tile |
Yue Chen | cb60b18 | 2016-10-13 15:18:22 -0700 | [diff] [blame] | 276 | motion_var |
Yue Chen | b2d2645 | 2017-01-11 16:29:19 -0800 | [diff] [blame] | 277 | ncobmc |
Debargha Mukherjee | bcf4e0a | 2016-06-09 02:22:48 -0700 | [diff] [blame] | 278 | warped_motion |
hui su | 08d7f44 | 2016-03-15 11:44:01 -0700 | [diff] [blame] | 279 | entropy |
Angie Chiang | 4de81ee | 2016-07-26 14:14:20 -0700 | [diff] [blame] | 280 | bitstream_debug |
Urvang Joshi | 340593e | 2016-09-01 12:03:20 -0700 | [diff] [blame] | 281 | alt_intra |
Urvang Joshi | b100db7 | 2016-10-12 16:28:56 -0700 | [diff] [blame] | 282 | palette |
Nathan E. Egge | 1078dee | 2016-03-06 10:59:29 -0500 | [diff] [blame] | 283 | daala_ec |
Yushin Cho | 77bba8d | 2016-11-04 16:36:56 -0700 | [diff] [blame] | 284 | pvq |
Jingning Han | 32658e2 | 2016-08-19 10:10:14 -0700 | [diff] [blame] | 285 | cb4x4 |
Arild Fuldseth | 842e9b0 | 2016-09-02 13:00:05 +0200 | [diff] [blame] | 286 | frame_size |
Arild Fuldseth | 0744116 | 2016-08-15 15:07:52 +0200 | [diff] [blame] | 287 | delta_q |
Angie Chiang | 8c2dc6f | 2016-10-20 09:19:01 -0700 | [diff] [blame] | 288 | adapt_scan |
Arild Fuldseth | 7acfabb | 2016-08-26 14:08:58 +0200 | [diff] [blame] | 289 | filter_7bit |
Ryan Lei | 1514948 | 2016-10-25 18:48:43 -0700 | [diff] [blame] | 290 | parallel_deblocking |
Ryan Lei | 7386eda | 2016-12-08 21:08:31 -0800 | [diff] [blame] | 291 | deblocking_across_tiles |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 292 | tile_groups |
Thomas | 9ac5508 | 2016-09-23 18:04:17 +0100 | [diff] [blame] | 293 | ec_adapt |
Fangwen Fu | 8d164de | 2016-12-14 13:40:54 -0800 | [diff] [blame] | 294 | tempmv_signaling |
Angie Chiang | 2b10128 | 2016-11-01 15:50:43 -0700 | [diff] [blame] | 295 | rd_debug |
Arild Fuldseth (arilfuld) | 5114b7b | 2016-11-09 13:32:54 +0100 | [diff] [blame] | 296 | reference_buffer |
iole moccagatta | f25a4cf | 2016-11-11 23:57:57 -0800 | [diff] [blame] | 297 | coef_interleave |
Debargha Mukherjee | b878d81 | 2016-12-12 11:55:38 -0800 | [diff] [blame] | 298 | entropy_stats |
| 299 | masked_tx |
Yushin Cho | 7a428ba | 2017-01-12 16:28:49 -0800 | [diff] [blame] | 300 | daala_dist |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 301 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 302 | CONFIG_LIST=" |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 303 | dependency_tracking |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 304 | external_build |
| 305 | install_docs |
| 306 | install_bins |
| 307 | install_libs |
| 308 | install_srcs |
| 309 | debug |
| 310 | gprof |
| 311 | gcov |
| 312 | rvct |
| 313 | gcc |
| 314 | msvs |
| 315 | pic |
| 316 | big_endian |
| 317 | |
| 318 | codec_srcs |
| 319 | debug_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 320 | |
| 321 | dequant_tokens |
| 322 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 323 | runtime_cpu_detect |
| 324 | postproc |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 325 | av1_postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 326 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 327 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 328 | ${CODECS} |
| 329 | ${CODEC_FAMILIES} |
| 330 | encoders |
| 331 | decoders |
| 332 | static_msvcrt |
| 333 | spatial_resampling |
| 334 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 335 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 336 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 337 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 338 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 339 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 340 | postproc_visualizer |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 341 | os_support |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 342 | unit_tests |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 343 | webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 344 | libyuv |
Michael Bebenita | 6048d05 | 2016-08-25 14:40:54 -0700 | [diff] [blame] | 345 | accounting |
Joshua Litt | a782d63 | 2013-11-15 12:29:26 -0800 | [diff] [blame] | 346 | decode_perf_tests |
Joshua Litt | 83b843f | 2014-07-21 10:57:16 -0700 | [diff] [blame] | 347 | encode_perf_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 348 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 349 | temporal_denoising |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 350 | av1_temporal_denoising |
Yaowu Xu | 0a2b25d | 2014-07-29 13:40:55 -0700 | [diff] [blame] | 351 | coefficient_range_checking |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 352 | aom_highbitdepth |
Yaowu Xu | 03a021a | 2015-12-02 17:00:26 -0800 | [diff] [blame] | 353 | better_hw_compatibility |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 354 | experimental |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 355 | size_limit |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 356 | aom_qm |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 357 | ${EXPERIMENT_LIST} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 358 | " |
| 359 | CMDLINE_SELECT=" |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 360 | dependency_tracking |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 361 | external_build |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 362 | extra_warnings |
| 363 | werror |
| 364 | install_docs |
| 365 | install_bins |
| 366 | install_libs |
| 367 | install_srcs |
| 368 | debug |
| 369 | gprof |
| 370 | gcov |
| 371 | pic |
| 372 | optimizations |
| 373 | ccache |
| 374 | runtime_cpu_detect |
Martin Storsjo | 132422d | 2013-05-13 01:16:09 +0300 | [diff] [blame] | 375 | thumb |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 376 | |
| 377 | libs |
| 378 | examples |
Johann | ec65812 | 2012-10-10 09:16:37 -0700 | [diff] [blame] | 379 | docs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 380 | libc |
Jan Kratochvil | 7be093e | 2010-10-05 19:15:08 +0200 | [diff] [blame] | 381 | as |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 382 | size_limit |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 383 | codec_srcs |
| 384 | debug_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 385 | |
| 386 | dequant_tokens |
| 387 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 388 | postproc |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 389 | av1_postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 390 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 391 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 392 | ${CODECS} |
| 393 | ${CODEC_FAMILIES} |
| 394 | static_msvcrt |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 395 | spatial_resampling |
| 396 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 397 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 398 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 399 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 400 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 401 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 402 | postproc_visualizer |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 403 | unit_tests |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 404 | webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 405 | libyuv |
Michael Bebenita | 6048d05 | 2016-08-25 14:40:54 -0700 | [diff] [blame] | 406 | accounting |
Joshua Litt | a782d63 | 2013-11-15 12:29:26 -0800 | [diff] [blame] | 407 | decode_perf_tests |
Joshua Litt | 83b843f | 2014-07-21 10:57:16 -0700 | [diff] [blame] | 408 | encode_perf_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 409 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 410 | temporal_denoising |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 411 | av1_temporal_denoising |
Yaowu Xu | 0a2b25d | 2014-07-29 13:40:55 -0700 | [diff] [blame] | 412 | coefficient_range_checking |
Yaowu Xu | 03a021a | 2015-12-02 17:00:26 -0800 | [diff] [blame] | 413 | better_hw_compatibility |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 414 | aom_highbitdepth |
Jim Bankoski | a5d11f2 | 2012-05-11 08:08:12 -0700 | [diff] [blame] | 415 | experimental |
Yaowu Xu | 0818a7c | 2016-08-11 09:39:47 -0700 | [diff] [blame] | 416 | aom_qm |
Thomas Davies | 80188d1 | 2016-10-26 16:08:35 -0700 | [diff] [blame] | 417 | tile_groups |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 418 | " |
| 419 | |
| 420 | process_cmdline() { |
| 421 | for opt do |
| 422 | optval="${opt#*=}" |
| 423 | case "$opt" in |
Johann | 0146fa9 | 2016-06-10 14:59:26 -0700 | [diff] [blame] | 424 | --disable-codecs) |
| 425 | for c in ${CODEC_FAMILIES}; do disable_codec $c; done |
| 426 | ;; |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 427 | --enable-?*|--disable-?*) |
| 428 | eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'` |
Johann | 1de5ba7 | 2016-06-17 14:25:23 -0700 | [diff] [blame] | 429 | if is_in ${option} ${EXPERIMENT_LIST}; then |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 430 | if enabled experimental; then |
James Zern | ccb6bdc | 2013-08-21 19:00:08 -0700 | [diff] [blame] | 431 | ${action}_feature $option |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 432 | else |
| 433 | log_echo "Ignoring $opt -- not in experimental mode." |
| 434 | fi |
Johann | 0146fa9 | 2016-06-10 14:59:26 -0700 | [diff] [blame] | 435 | elif is_in ${option} "${CODECS} ${CODEC_FAMILIES}"; then |
| 436 | ${action}_codec ${option} |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 437 | else |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 438 | process_common_cmdline $opt |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 439 | fi |
| 440 | ;; |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 441 | *) process_common_cmdline "$opt" |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 442 | ;; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 443 | esac |
| 444 | done |
| 445 | } |
| 446 | |
| 447 | post_process_cmdline() { |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 448 | c="" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 449 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 450 | # Enable all detected codecs, if they haven't been disabled |
| 451 | for c in ${CODECS}; do soft_enable $c; done |
| 452 | |
| 453 | # Enable the codec family if any component of that family is enabled |
| 454 | for c in ${CODECS}; do |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 455 | enabled $c && enable_feature ${c%_*} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 456 | done |
| 457 | |
| 458 | # Set the {en,de}coders variable if any algorithm in that class is enabled |
| 459 | for c in ${CODECS}; do |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 460 | enabled ${c} && enable_feature ${c##*_}s |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 461 | done |
Sarah Parker | daa4ba8 | 2016-08-18 13:03:35 -0700 | [diff] [blame] | 462 | |
Jingning Han | 125e729 | 2016-11-20 22:38:11 -0800 | [diff] [blame] | 463 | # Enable ref_mv by default |
| 464 | soft_enable ref_mv |
| 465 | |
Thomas Davies | f31227d | 2016-11-23 10:35:38 +0000 | [diff] [blame] | 466 | # Enable filter_7bit by default |
| 467 | soft_enable filter_7bit |
| 468 | |
Thomas Davies | 95ae0d6 | 2016-11-23 10:37:38 +0000 | [diff] [blame] | 469 | # Enable reference_buffer by default |
| 470 | soft_enable reference_buffer |
| 471 | |
Thomas Davies | 0090c8f | 2016-11-22 15:32:11 +0000 | [diff] [blame] | 472 | #Enable delta_q by default |
| 473 | soft_enable delta_q |
| 474 | |
Nathan E. Egge | f0481a5 | 2016-10-12 17:16:04 -0400 | [diff] [blame] | 475 | # Enable daala_ec by default |
| 476 | ! enabled ans && soft_enable daala_ec |
| 477 | |
Alex Converse | 242558a | 2016-10-10 10:44:59 -0700 | [diff] [blame] | 478 | # Fix up experiment dependencies |
Alex Converse | aca9feb | 2016-10-10 11:08:10 -0700 | [diff] [blame] | 479 | enabled ec_adapt && enable_feature ec_multisymbol |
| 480 | enabled ec_multisymbol && ! enabled ans && soft_enable daala_ec |
| 481 | enabled ec_multisymbol && ! enabled daala_ec && soft_enable ans |
| 482 | enabled daala_ec && enable_feature ec_multisymbol |
Yaowu Xu | a2cb61b | 2016-12-12 19:20:53 -0800 | [diff] [blame] | 483 | if enabled ext_tile; then |
| 484 | log_echo "ext_tile not compatible with reference_buffer, so" |
| 485 | log_echo "disabling reference_buffer" |
| 486 | disable_feature reference_buffer |
| 487 | fi |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | |
| 491 | process_targets() { |
| 492 | enabled child || write_common_config_banner |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 493 | write_common_target_config_h ${BUILD_PFX}aom_config.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 494 | write_common_config_targets |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 495 | |
| 496 | # Calculate the default distribution name, based on the enabled features |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 497 | cf="" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 498 | DIST_DIR=aom |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 499 | for cf in $CODEC_FAMILIES; do |
| 500 | if enabled ${cf}_encoder && enabled ${cf}_decoder; then |
| 501 | DIST_DIR="${DIST_DIR}-${cf}" |
| 502 | elif enabled ${cf}_encoder; then |
| 503 | DIST_DIR="${DIST_DIR}-${cf}cx" |
| 504 | elif enabled ${cf}_decoder; then |
| 505 | DIST_DIR="${DIST_DIR}-${cf}dx" |
| 506 | fi |
| 507 | done |
| 508 | enabled debug_libs && DIST_DIR="${DIST_DIR}-debug" |
| 509 | enabled codec_srcs && DIST_DIR="${DIST_DIR}-src" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 510 | ! enabled postproc && ! enabled av1_postproc && DIST_DIR="${DIST_DIR}-nopost" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 511 | ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 512 | ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs" |
| 513 | DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}" |
| 514 | case "${tgt_os}" in |
| 515 | win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md" |
| 516 | DIST_DIR="${DIST_DIR}-${tgt_cc}" |
| 517 | ;; |
| 518 | esac |
| 519 | if [ -f "${source_path}/build/make/version.sh" ]; then |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 520 | ver=`"$source_path/build/make/version.sh" --bare "$source_path"` |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 521 | DIST_DIR="${DIST_DIR}-${ver}" |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 522 | VERSION_STRING=${ver} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 523 | ver=${ver%%-*} |
| 524 | VERSION_PATCH=${ver##*.} |
| 525 | ver=${ver%.*} |
| 526 | VERSION_MINOR=${ver##*.} |
| 527 | ver=${ver#v} |
| 528 | VERSION_MAJOR=${ver%.*} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 529 | fi |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 530 | enabled child || cat <<EOF >> config.mk |
Ralph Giles | 607f842 | 2011-03-28 12:04:51 -0700 | [diff] [blame] | 531 | |
| 532 | PREFIX=${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 533 | ifeq (\$(MAKECMDGOALS),dist) |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 534 | DIST_DIR?=${DIST_DIR} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 535 | else |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 536 | DIST_DIR?=\$(DESTDIR)${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 537 | endif |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 538 | LIBSUBDIR=${libdir##${prefix}/} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 539 | |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 540 | VERSION_STRING=${VERSION_STRING} |
| 541 | |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 542 | VERSION_MAJOR=${VERSION_MAJOR} |
| 543 | VERSION_MINOR=${VERSION_MINOR} |
| 544 | VERSION_PATCH=${VERSION_PATCH} |
| 545 | |
John Koleszar | 23d68a5 | 2010-06-22 09:53:23 -0400 | [diff] [blame] | 546 | CONFIGURE_ARGS=${CONFIGURE_ARGS} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 547 | EOF |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 548 | enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk |
| 549 | |
| 550 | # |
| 551 | # Write makefiles for all enabled targets |
| 552 | # |
| 553 | for tgt in libs examples docs solution; do |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 554 | tgt_fn="$tgt-$toolchain.mk" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 555 | |
| 556 | if enabled $tgt; then |
| 557 | echo "Creating makefiles for ${toolchain} ${tgt}" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 558 | write_common_target_config_mk $tgt_fn ${BUILD_PFX}aom_config.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 559 | #write_${tgt}_config |
| 560 | fi |
| 561 | done |
| 562 | |
| 563 | } |
| 564 | |
| 565 | process_detect() { |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 566 | if enabled shared; then |
| 567 | # Can only build shared libs on a subset of platforms. Doing this check |
| 568 | # here rather than at option parse time because the target auto-detect |
| 569 | # magic happens after the command line has been parsed. |
Brion Vibber | 992e4b7 | 2016-05-02 12:41:59 -0400 | [diff] [blame] | 570 | case "${tgt_os}" in |
| 571 | linux|os2|darwin*|iphonesimulator*) |
| 572 | # Supported platforms |
| 573 | ;; |
| 574 | *) |
Mike Frysinger | b4ab43f | 2012-08-14 14:24:28 -0400 | [diff] [blame] | 575 | if enabled gnu; then |
| 576 | echo "--enable-shared is only supported on ELF; assuming this is OK" |
| 577 | else |
Brion Vibber | 992e4b7 | 2016-05-02 12:41:59 -0400 | [diff] [blame] | 578 | die "--enable-shared only supported on ELF, OS/2, and Darwin for now" |
Mike Frysinger | b4ab43f | 2012-08-14 14:24:28 -0400 | [diff] [blame] | 579 | fi |
Brion Vibber | 992e4b7 | 2016-05-02 12:41:59 -0400 | [diff] [blame] | 580 | ;; |
| 581 | esac |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 582 | fi |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 583 | if [ -z "$CC" ] || enabled external_build; then |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 584 | echo "Bypassing toolchain for environment detection." |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 585 | enable_feature external_build |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 586 | check_header() { |
| 587 | log fake_check_header "$@" |
| 588 | header=$1 |
| 589 | shift |
| 590 | var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'` |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 591 | disable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 592 | # Headers common to all environments |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 593 | case $header in |
| 594 | stdio.h) |
| 595 | true; |
| 596 | ;; |
| 597 | *) |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 598 | result=false |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 599 | for d in "$@"; do |
| 600 | [ -f "${d##-I}/$header" ] && result=true && break |
| 601 | done |
| 602 | ${result:-true} |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 603 | esac && enable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 604 | |
| 605 | # Specialize windows and POSIX environments. |
| 606 | case $toolchain in |
| 607 | *-win*-*) |
Johann | 3c92144 | 2015-12-17 16:51:59 -0800 | [diff] [blame] | 608 | # Don't check for any headers in Windows builds. |
| 609 | false |
| 610 | ;; |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 611 | *) |
| 612 | case $header in |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 613 | pthread.h) true;; |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 614 | unistd.h) true;; |
| 615 | *) false;; |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 616 | esac && enable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 617 | esac |
| 618 | enabled $var |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 619 | } |
| 620 | check_ld() { |
| 621 | true |
| 622 | } |
| 623 | fi |
| 624 | check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}" |
| 625 | check_ld <<EOF || die "Toolchain is unable to link executables" |
| 626 | int main(void) {return 0;} |
| 627 | EOF |
| 628 | # check system headers |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 629 | check_header pthread.h |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 630 | check_header unistd.h # for sysconf(3) and friends. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 631 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 632 | check_header aom/aom_integer.h -I${source_path} && enable_feature aom_ports |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | process_toolchain() { |
| 636 | process_common_toolchain |
| 637 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 638 | # Enable some useful compiler flags |
| 639 | if enabled gcc; then |
| 640 | enabled werror && check_add_cflags -Werror |
| 641 | check_add_cflags -Wall |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 642 | check_add_cflags -Wdisabled-optimization |
James Zern | a9d9848 | 2016-07-22 13:13:56 -0700 | [diff] [blame] | 643 | check_add_cflags -Wfloat-conversion |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 644 | check_add_cflags -Wpointer-arith |
| 645 | check_add_cflags -Wtype-limits |
Daniel Kang | 2f96391 | 2012-08-13 14:18:09 -0700 | [diff] [blame] | 646 | check_add_cflags -Wvla |
Attila Nagy | 14c9fce | 2012-04-27 13:41:58 +0300 | [diff] [blame] | 647 | check_add_cflags -Wimplicit-function-declaration |
| 648 | check_add_cflags -Wuninitialized |
Urvang Joshi | 3212dda | 2016-07-14 12:45:35 -0700 | [diff] [blame] | 649 | check_add_cflags -Wunused |
Urvang Joshi | d3a7576 | 2016-07-08 16:09:36 -0700 | [diff] [blame] | 650 | check_add_cflags -Wsign-compare |
Urvang Joshi | cd8ab90 | 2016-10-28 12:32:06 -0700 | [diff] [blame] | 651 | check_add_cflags -Wlogical-op |
Debargha Mukherjee | e75f735 | 2017-01-24 16:11:16 -0800 | [diff] [blame] | 652 | check_add_cflags -Wstack-usage=320000 |
Urvang Joshi | d71a231 | 2016-07-14 12:33:48 -0700 | [diff] [blame] | 653 | # Enabling the following warning (in combination with -Wunused above) |
| 654 | # for C++ generates errors in third_party code including googletest and |
| 655 | # libyuv. So enable it only for C code. |
| 656 | check_cflags "-Wextra" && add_cflags_only "-Wextra" |
Urvang Joshi | 4145bf0 | 2016-10-17 14:53:33 -0700 | [diff] [blame] | 657 | # Enabling the following warning for C++ generates some useless warnings |
| 658 | # about some function parameters shadowing class member function names. |
| 659 | # So, only enable this warning for C code. |
| 660 | check_cflags "-Wshadow" && add_cflags_only "-Wshadow" |
Yaowu Xu | 4d90ae4 | 2016-02-05 09:35:34 -0800 | [diff] [blame] | 661 | if enabled mips || [ -z "${INLINE}" ]; then |
James Zern | 771d276 | 2016-02-01 20:52:16 -0800 | [diff] [blame] | 662 | enabled extra_warnings || check_add_cflags -Wno-unused-function |
James Zern | 771d276 | 2016-02-01 20:52:16 -0800 | [diff] [blame] | 663 | fi |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 664 | fi |
| 665 | |
| 666 | if enabled icc; then |
| 667 | enabled werror && check_add_cflags -Werror |
| 668 | check_add_cflags -Wall |
| 669 | check_add_cflags -Wpointer-arith |
| 670 | |
| 671 | # ICC has a number of floating point optimizations that we disable |
| 672 | # in favor of deterministic output WRT to other compilers |
| 673 | add_cflags -fp-model precise |
| 674 | fi |
| 675 | |
| 676 | # Enable extra, harmless warnings. These might provide additional insight |
| 677 | # to what the compiler is doing and why, but in general, but they shouldn't |
| 678 | # be treated as fatal, even if we're treating warnings as errors. |
| 679 | GCC_EXTRA_WARNINGS=" |
| 680 | -Wdisabled-optimization |
| 681 | -Winline |
| 682 | " |
| 683 | enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}" |
| 684 | RVCT_EXTRA_WARNINGS=" |
| 685 | --remarks |
| 686 | " |
| 687 | enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}" |
| 688 | if enabled extra_warnings; then |
| 689 | for w in ${EXTRA_WARNINGS}; do |
| 690 | check_add_cflags ${w} |
| 691 | enabled gcc && enabled werror && check_add_cflags -Wno-error=${w} |
| 692 | done |
| 693 | fi |
| 694 | |
| 695 | # ccache only really works on gcc toolchains |
| 696 | enabled gcc || soft_disable ccache |
| 697 | if enabled mips; then |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 698 | enable_feature dequant_tokens |
| 699 | enable_feature dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 700 | fi |
| 701 | |
| 702 | # Enable the postbuild target if building for visual studio. |
| 703 | case "$tgt_cc" in |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 704 | vs*) enable_feature msvs |
| 705 | enable_feature solution |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 706 | vs_version=${tgt_cc##vs} |
James Zern | f8876a2 | 2016-06-27 20:08:12 -0700 | [diff] [blame] | 707 | VCPROJ_SFX=vcxproj |
| 708 | gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh |
| 709 | enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 710 | all_targets="${all_targets} solution" |
Ronald S. Bultje | aac73df | 2013-02-06 12:45:28 -0800 | [diff] [blame] | 711 | INLINE="__forceinline" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 712 | ;; |
| 713 | esac |
| 714 | |
| 715 | # Other toolchain specific defaults |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 716 | case $toolchain in x86*) soft_enable postproc;; esac |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 717 | |
Fritz Koenig | 692b108 | 2010-11-10 14:51:49 -0800 | [diff] [blame] | 718 | if enabled postproc_visualizer; then |
| 719 | enabled postproc || die "postproc_visualizer requires postproc to be enabled" |
| 720 | fi |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 721 | |
Johann | b46d58a | 2013-01-18 11:31:22 -0800 | [diff] [blame] | 722 | # Enable unit tests by default if we have a working C++ compiler. |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 723 | case "$toolchain" in |
| 724 | *-vs*) |
| 725 | soft_enable unit_tests |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 726 | soft_enable webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 727 | soft_enable libyuv |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 728 | ;; |
| 729 | *-android-*) |
Vignesh Venkatasubramanian | 4721f9e | 2014-04-29 00:03:01 -0700 | [diff] [blame] | 730 | soft_enable webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 731 | soft_enable libyuv |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 732 | # GTestLog must be modified to use Android logging utilities. |
| 733 | ;; |
Johann | a1d929e | 2012-12-13 11:35:59 -0800 | [diff] [blame] | 734 | *-darwin-*) |
| 735 | # iOS/ARM builds do not work with gtest. This does not match |
| 736 | # x86 targets. |
| 737 | ;; |
Tom Finegan | 4e6c555 | 2014-06-04 18:57:25 -0700 | [diff] [blame] | 738 | *-iphonesimulator-*) |
| 739 | soft_enable webm_io |
| 740 | soft_enable libyuv |
| 741 | ;; |
James Zern | e4d2c25 | 2013-06-26 18:35:11 -0700 | [diff] [blame] | 742 | *-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 |
| 747 | int z; |
| 748 | EOF |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 749 | check_cxx "$@" <<EOF && soft_enable webm_io |
| 750 | int z; |
| 751 | EOF |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 752 | check_cxx "$@" <<EOF && soft_enable libyuv |
| 753 | int z; |
| 754 | EOF |
James Zern | e4d2c25 | 2013-06-26 18:35:11 -0700 | [diff] [blame] | 755 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 756 | *) |
James Zern | f2dc382 | 2013-06-20 12:49:15 -0700 | [diff] [blame] | 757 | enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 758 | int z; |
| 759 | EOF |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 760 | check_cxx "$@" <<EOF && soft_enable webm_io |
| 761 | int z; |
| 762 | EOF |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 763 | check_cxx "$@" <<EOF && soft_enable libyuv |
| 764 | int z; |
| 765 | EOF |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 766 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 767 | esac |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 768 | # libwebm needs to be linked with C++ standard library |
| 769 | enabled webm_io && LD=${CXX} |
James Zern | 43a3455 | 2015-08-26 20:28:26 -0700 | [diff] [blame] | 770 | |
| 771 | # append any user defined extra cflags |
| 772 | if [ -n "${extra_cflags}" ] ; then |
| 773 | check_add_cflags ${extra_cflags} || \ |
| 774 | die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler" |
| 775 | fi |
Yaowu Xu | 7c514e2 | 2015-09-28 15:55:46 -0700 | [diff] [blame] | 776 | if [ -n "${extra_cxxflags}" ]; then |
| 777 | check_add_cxxflags ${extra_cxxflags} || \ |
| 778 | die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler" |
| 779 | fi |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | |
| 783 | ## |
| 784 | ## END APPLICATION SPECIFIC CONFIGURATION |
| 785 | ## |
| 786 | CONFIGURE_ARGS="$@" |
| 787 | process "$@" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 788 | print_webm_license ${BUILD_PFX}aom_config.c "/*" " */" |
| 789 | cat <<EOF >> ${BUILD_PFX}aom_config.c |
| 790 | #include "aom/aom_codec.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 791 | static const char* const cfg = "$CONFIGURE_ARGS"; |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 792 | const char *aom_codec_build_config(void) {return cfg;} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 793 | EOF |