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 | 14e37cf | 2015-01-02 12:36:57 -0800 | [diff] [blame] | 37 | ${toggle_vp9_highbitdepth} use VP9 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 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 41 | ${toggle_vp8} VP8 codec support |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 42 | ${toggle_vp9} VP9 codec support |
Jingning Han | 3ee6db6 | 2015-08-05 19:00:31 -0700 | [diff] [blame] | 43 | ${toggle_vp10} VP10 codec support |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 44 | ${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] | 45 | ${toggle_postproc} postprocessing |
Jim Bankoski | 7940154 | 2013-09-04 10:02:08 -0700 | [diff] [blame] | 46 | ${toggle_vp9_postproc} vp9 specific postprocessing |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 47 | ${toggle_multithread} multithreaded encoding and decoding |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 48 | ${toggle_spatial_resampling} spatial sampling (scaling) support |
| 49 | ${toggle_realtime_only} enable this option while building for real-time encoding |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 50 | ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 51 | ${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] | 52 | ${toggle_coefficient_range_checking} |
| 53 | enable decoder to check if intermediate |
| 54 | transform coefficients are in valid range |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 55 | ${toggle_runtime_cpu_detect} runtime cpu detection |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 56 | ${toggle_shared} shared library support |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 57 | ${toggle_static} static library support |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 58 | ${toggle_small} favor smaller size over speed |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 59 | ${toggle_postproc_visualizer} macro block / block level visualizers |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 60 | ${toggle_multi_res_encoding} enable multiple-resolution encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 61 | ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser |
Marco | c7d26cc | 2014-11-12 17:34:54 -0800 | [diff] [blame] | 62 | ${toggle_vp9_temporal_denoising} |
| 63 | enable vp9 temporal denoising |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 64 | ${toggle_webm_io} enable input from and output to WebM container |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 65 | ${toggle_libyuv} enable libyuv |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 66 | |
| 67 | Codecs: |
| 68 | Codecs can be selectively enabled or disabled individually, or by family: |
| 69 | --disable-<codec> |
| 70 | is equivalent to: |
| 71 | --disable-<codec>-encoder |
| 72 | --disable-<codec>-decoder |
| 73 | |
| 74 | Codecs available in this distribution: |
| 75 | EOF |
| 76 | #restore editor state ' |
| 77 | |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 78 | family=""; |
| 79 | last_family=""; |
| 80 | c=""; |
| 81 | str=""; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 82 | for c in ${CODECS}; do |
| 83 | family=${c%_*} |
| 84 | if [ "${family}" != "${last_family}" ]; then |
| 85 | [ -z "${str}" ] || echo "${str}" |
| 86 | str="$(printf ' %10s:' ${family})" |
| 87 | fi |
| 88 | str="${str} $(printf '%10s' ${c#*_})" |
| 89 | last_family=${family} |
| 90 | done |
| 91 | echo "${str}" |
| 92 | show_help_post |
| 93 | } |
| 94 | |
| 95 | ## |
| 96 | ## BEGIN APPLICATION SPECIFIC CONFIGURATION |
| 97 | ## |
| 98 | |
| 99 | # all_platforms is a list of all supported target platforms. Maintain |
| 100 | # alphabetically by architecture, generic-gnu last. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 101 | all_platforms="${all_platforms} armv6-darwin-gcc" |
| 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" |
Tom Finegan | e87d681 | 2014-06-25 18:32:16 -0700 | [diff] [blame] | 105 | all_platforms="${all_platforms} arm64-darwin-gcc" |
Fritz Koenig | d830573 | 2012-01-06 11:50:05 -0800 | [diff] [blame] | 106 | all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 107 | all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8 |
| 108 | all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8 |
| 109 | all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8 |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 110 | all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8 |
Martin Storsjo | ad484fc | 2013-05-18 23:32:49 +0300 | [diff] [blame] | 111 | all_platforms="${all_platforms} armv7-win32-vs11" |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 112 | all_platforms="${all_platforms} armv7-win32-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 113 | all_platforms="${all_platforms} armv7-win32-vs14" |
Tom Finegan | cd2088b | 2014-06-10 18:52:58 -0700 | [diff] [blame] | 114 | all_platforms="${all_platforms} armv7s-darwin-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 115 | all_platforms="${all_platforms} mips32-linux-gcc" |
Gordana Cmiljanovic | 1c31e3e | 2014-08-07 19:09:47 +0200 | [diff] [blame] | 116 | all_platforms="${all_platforms} mips64-linux-gcc" |
Aaron Watry | 53f61ce | 2010-09-30 15:36:00 -0400 | [diff] [blame] | 117 | all_platforms="${all_platforms} sparc-solaris-gcc" |
Andoni Morales Alastruey | 652589d | 2013-01-14 12:25:52 +0100 | [diff] [blame] | 118 | all_platforms="${all_platforms} x86-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 119 | all_platforms="${all_platforms} x86-darwin8-gcc" |
| 120 | all_platforms="${all_platforms} x86-darwin8-icc" |
| 121 | all_platforms="${all_platforms} x86-darwin9-gcc" |
| 122 | all_platforms="${all_platforms} x86-darwin9-icc" |
Johann | 4341e5a | 2011-10-14 12:06:24 -0700 | [diff] [blame] | 123 | all_platforms="${all_platforms} x86-darwin10-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 124 | all_platforms="${all_platforms} x86-darwin11-gcc" |
| 125 | all_platforms="${all_platforms} x86-darwin12-gcc" |
Morton Jonuschat | fe4a520 | 2013-07-19 21:09:23 +0200 | [diff] [blame] | 126 | all_platforms="${all_platforms} x86-darwin13-gcc" |
Lawrence Velázquez | 4fe4c28 | 2015-01-22 16:46:02 -0500 | [diff] [blame] | 127 | all_platforms="${all_platforms} x86-darwin14-gcc" |
Alex Converse | 080ad91 | 2015-11-02 14:05:37 -0800 | [diff] [blame] | 128 | all_platforms="${all_platforms} x86-darwin15-gcc" |
Tom Finegan | 4e6c555 | 2014-06-04 18:57:25 -0700 | [diff] [blame] | 129 | all_platforms="${all_platforms} x86-iphonesimulator-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 130 | all_platforms="${all_platforms} x86-linux-gcc" |
| 131 | all_platforms="${all_platforms} x86-linux-icc" |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 132 | all_platforms="${all_platforms} x86-os2-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 133 | all_platforms="${all_platforms} x86-solaris-gcc" |
| 134 | all_platforms="${all_platforms} x86-win32-gcc" |
| 135 | all_platforms="${all_platforms} x86-win32-vs7" |
| 136 | all_platforms="${all_platforms} x86-win32-vs8" |
Tom Finegan | 72d4ba9 | 2010-07-22 13:34:25 -0400 | [diff] [blame] | 137 | all_platforms="${all_platforms} x86-win32-vs9" |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 138 | all_platforms="${all_platforms} x86-win32-vs10" |
| 139 | all_platforms="${all_platforms} x86-win32-vs11" |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 140 | all_platforms="${all_platforms} x86-win32-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 141 | all_platforms="${all_platforms} x86-win32-vs14" |
James Zern | 5da87e8 | 2015-07-24 14:24:20 -0700 | [diff] [blame] | 142 | all_platforms="${all_platforms} x86_64-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 143 | all_platforms="${all_platforms} x86_64-darwin9-gcc" |
tomfinegan | faaa57b | 2010-11-16 14:52:05 -0500 | [diff] [blame] | 144 | all_platforms="${all_platforms} x86_64-darwin10-gcc" |
Christian Duvivier | 82edabc | 2012-08-06 15:05:24 -0700 | [diff] [blame] | 145 | all_platforms="${all_platforms} x86_64-darwin11-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 146 | all_platforms="${all_platforms} x86_64-darwin12-gcc" |
Morton Jonuschat | fe4a520 | 2013-07-19 21:09:23 +0200 | [diff] [blame] | 147 | all_platforms="${all_platforms} x86_64-darwin13-gcc" |
Lawrence Velázquez | 4fe4c28 | 2015-01-22 16:46:02 -0500 | [diff] [blame] | 148 | all_platforms="${all_platforms} x86_64-darwin14-gcc" |
Alex Converse | 080ad91 | 2015-11-02 14:05:37 -0800 | [diff] [blame] | 149 | all_platforms="${all_platforms} x86_64-darwin15-gcc" |
Tom Finegan | 9b25976 | 2014-06-06 16:54:16 -0700 | [diff] [blame] | 150 | all_platforms="${all_platforms} x86_64-iphonesimulator-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 151 | all_platforms="${all_platforms} x86_64-linux-gcc" |
Yunqing Wang | 7630e36 | 2010-06-17 13:34:19 -0400 | [diff] [blame] | 152 | all_platforms="${all_platforms} x86_64-linux-icc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 153 | all_platforms="${all_platforms} x86_64-solaris-gcc" |
Rafaël Carré | 3cad694 | 2011-11-11 22:45:44 -0500 | [diff] [blame] | 154 | all_platforms="${all_platforms} x86_64-win64-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 155 | all_platforms="${all_platforms} x86_64-win64-vs8" |
Tom Finegan | 72d4ba9 | 2010-07-22 13:34:25 -0400 | [diff] [blame] | 156 | all_platforms="${all_platforms} x86_64-win64-vs9" |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 157 | all_platforms="${all_platforms} x86_64-win64-vs10" |
| 158 | all_platforms="${all_platforms} x86_64-win64-vs11" |
Yaowu Xu | a638bdf | 2013-11-13 11:36:32 -0800 | [diff] [blame] | 159 | all_platforms="${all_platforms} x86_64-win64-vs12" |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 160 | all_platforms="${all_platforms} x86_64-win64-vs14" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 161 | all_platforms="${all_platforms} generic-gnu" |
| 162 | |
| 163 | # all_targets is a list of all targets that can be configured |
| 164 | # note that these should be in dependency order for now. |
| 165 | all_targets="libs examples docs" |
| 166 | |
| 167 | # all targets available are enabled, by default. |
| 168 | for t in ${all_targets}; do |
James Zern | 95735c3 | 2014-04-23 14:51:45 -0700 | [diff] [blame] | 169 | [ -f "${source_path}/${t}.mk" ] && enable_feature ${t} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 170 | done |
| 171 | |
James Zern | 4b41800 | 2014-03-18 18:19:16 -0700 | [diff] [blame] | 172 | if ! perl --version >/dev/null; then |
| 173 | die "Perl is required to build" |
| 174 | fi |
James Zern | 14be7ba | 2014-02-28 12:24:46 -0800 | [diff] [blame] | 175 | |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 176 | |
James Zern | 95735c3 | 2014-04-23 14:51:45 -0700 | [diff] [blame] | 177 | if [ "`cd \"${source_path}\" && pwd`" != "`pwd`" ]; then |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 178 | # test to see if source_path already configured |
James Zern | 95735c3 | 2014-04-23 14:51:45 -0700 | [diff] [blame] | 179 | if [ -f "${source_path}/vpx_config.h" ]; then |
James Zern | 9402e25 | 2014-03-05 14:13:01 -0800 | [diff] [blame] | 180 | die "source directory already configured; run 'make distclean' there first" |
| 181 | fi |
| 182 | fi |
| 183 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 184 | # check installed doxygen version |
| 185 | doxy_version=$(doxygen --version 2>/dev/null) |
| 186 | doxy_major=${doxy_version%%.*} |
| 187 | if [ ${doxy_major:-0} -ge 1 ]; then |
| 188 | doxy_version=${doxy_version#*.} |
| 189 | doxy_minor=${doxy_version%%.*} |
| 190 | doxy_patch=${doxy_version##*.} |
| 191 | |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 192 | [ $doxy_major -gt 1 ] && enable_feature doxygen |
| 193 | [ $doxy_minor -gt 5 ] && enable_feature doxygen |
| 194 | [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable_feature doxygen |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 195 | fi |
| 196 | |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 197 | # disable codecs when their source directory does not exist |
| 198 | [ -d "${source_path}/vp8" ] || disable_feature vp8 |
| 199 | [ -d "${source_path}/vp9" ] || disable_feature vp9 |
Jingning Han | 3ee6db6 | 2015-08-05 19:00:31 -0700 | [diff] [blame] | 200 | [ -d "${source_path}/vp10" ] || disable_feature vp10 |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 201 | |
Jingning Han | 407968c | 2015-08-15 16:04:11 -0700 | [diff] [blame] | 202 | # disable vp10 codec by default |
| 203 | disable_feature vp10 |
| 204 | |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 205 | # install everything except the sources, by default. sources will have |
| 206 | # to be enabled when doing dist builds, since that's no longer a common |
| 207 | # case. |
James Zern | f8630c7 | 2014-05-10 11:15:11 -0700 | [diff] [blame] | 208 | enabled doxygen && enable_feature install_docs |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 209 | enable_feature install_bins |
| 210 | enable_feature install_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 211 | |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 212 | enable_feature static |
| 213 | enable_feature optimizations |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 214 | enable_feature dependency_tracking |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 215 | enable_feature spatial_resampling |
| 216 | enable_feature multithread |
| 217 | enable_feature os_support |
| 218 | enable_feature temporal_denoising |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 219 | |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 220 | CODECS=" |
| 221 | vp8_encoder |
| 222 | vp8_decoder |
| 223 | vp9_encoder |
| 224 | vp9_decoder |
Jingning Han | 3ee6db6 | 2015-08-05 19:00:31 -0700 | [diff] [blame] | 225 | vp10_encoder |
| 226 | vp10_decoder |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 227 | " |
| 228 | CODEC_FAMILIES=" |
| 229 | vp8 |
| 230 | vp9 |
Jingning Han | 3ee6db6 | 2015-08-05 19:00:31 -0700 | [diff] [blame] | 231 | vp10 |
Johann | 7875e1d | 2015-05-22 06:52:59 -0700 | [diff] [blame] | 232 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 233 | |
| 234 | ARCH_LIST=" |
| 235 | arm |
| 236 | mips |
| 237 | x86 |
| 238 | x86_64 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 239 | " |
James Zern | 6e6dbbc | 2015-11-17 16:14:05 -0800 | [diff] [blame] | 240 | ARCH_EXT_LIST_X86=" |
| 241 | mmx |
| 242 | sse |
| 243 | sse2 |
| 244 | sse3 |
| 245 | ssse3 |
| 246 | sse4_1 |
| 247 | avx |
| 248 | avx2 |
| 249 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 250 | ARCH_EXT_LIST=" |
Fritz Koenig | 8921028 | 2012-01-19 15:18:31 -0800 | [diff] [blame] | 251 | edsp |
| 252 | media |
| 253 | neon |
Johann | ce23931 | 2014-05-07 11:01:31 -0700 | [diff] [blame] | 254 | neon_asm |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 255 | |
| 256 | mips32 |
Dragan Mrdjan | 07ff7fa | 2012-04-11 09:53:15 -0700 | [diff] [blame] | 257 | dspr2 |
Parag Salasakar | 84ec68d | 2015-03-16 12:36:59 +0530 | [diff] [blame] | 258 | msa |
Gordana Cmiljanovic | 1c31e3e | 2014-08-07 19:09:47 +0200 | [diff] [blame] | 259 | mips64 |
| 260 | |
James Zern | 6e6dbbc | 2015-11-17 16:14:05 -0800 | [diff] [blame] | 261 | ${ARCH_EXT_LIST_X86} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 262 | " |
| 263 | HAVE_LIST=" |
| 264 | ${ARCH_EXT_LIST} |
| 265 | vpx_ports |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 266 | pthread_h |
Attila Nagy | 297b276 | 2011-03-25 12:53:03 +0200 | [diff] [blame] | 267 | unistd_h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 268 | " |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 269 | EXPERIMENT_LIST=" |
James Zern | f12ebfc | 2014-05-14 19:45:20 -0700 | [diff] [blame] | 270 | spatial_svc |
Pengchong Jin | aaabbd6 | 2014-06-30 09:52:27 -0700 | [diff] [blame] | 271 | fp_mb_stats |
Deb Mukherjee | d50716f | 2014-10-02 15:43:27 -0700 | [diff] [blame] | 272 | emulate_hardware |
Ronald S. Bultje | 1589ecb | 2015-09-08 14:03:36 -0400 | [diff] [blame] | 273 | misc_fixes |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 274 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 275 | CONFIG_LIST=" |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 276 | dependency_tracking |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 277 | external_build |
| 278 | install_docs |
| 279 | install_bins |
| 280 | install_libs |
| 281 | install_srcs |
Jim Bankoski | a93b115 | 2013-08-05 17:28:52 -0700 | [diff] [blame] | 282 | use_x86inc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 283 | debug |
| 284 | gprof |
| 285 | gcov |
| 286 | rvct |
| 287 | gcc |
| 288 | msvs |
| 289 | pic |
| 290 | big_endian |
| 291 | |
| 292 | codec_srcs |
| 293 | debug_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 294 | |
| 295 | dequant_tokens |
| 296 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 297 | runtime_cpu_detect |
| 298 | postproc |
Jim Bankoski | 7940154 | 2013-09-04 10:02:08 -0700 | [diff] [blame] | 299 | vp9_postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 300 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 301 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 302 | ${CODECS} |
| 303 | ${CODEC_FAMILIES} |
| 304 | encoders |
| 305 | decoders |
| 306 | static_msvcrt |
| 307 | spatial_resampling |
| 308 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 309 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 310 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 311 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 312 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 313 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 314 | postproc_visualizer |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 315 | os_support |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 316 | unit_tests |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 317 | webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 318 | libyuv |
Joshua Litt | a782d63 | 2013-11-15 12:29:26 -0800 | [diff] [blame] | 319 | decode_perf_tests |
Joshua Litt | 83b843f | 2014-07-21 10:57:16 -0700 | [diff] [blame] | 320 | encode_perf_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 321 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 322 | temporal_denoising |
Marco | c7d26cc | 2014-11-12 17:34:54 -0800 | [diff] [blame] | 323 | vp9_temporal_denoising |
Yaowu Xu | 0a2b25d | 2014-07-29 13:40:55 -0700 | [diff] [blame] | 324 | coefficient_range_checking |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 325 | vp9_highbitdepth |
Yaowu Xu | 03a021a | 2015-12-02 17:00:26 -0800 | [diff] [blame] | 326 | better_hw_compatibility |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 327 | experimental |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 328 | size_limit |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 329 | ${EXPERIMENT_LIST} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 330 | " |
| 331 | CMDLINE_SELECT=" |
James Zern | aaccf65 | 2015-02-05 19:31:38 -0800 | [diff] [blame] | 332 | dependency_tracking |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 333 | external_build |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 334 | extra_warnings |
| 335 | werror |
| 336 | install_docs |
| 337 | install_bins |
| 338 | install_libs |
| 339 | install_srcs |
| 340 | debug |
| 341 | gprof |
| 342 | gcov |
| 343 | pic |
Jim Bankoski | c9126e0 | 2013-08-06 07:31:54 -0700 | [diff] [blame] | 344 | use_x86inc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 345 | optimizations |
| 346 | ccache |
| 347 | runtime_cpu_detect |
Martin Storsjo | 132422d | 2013-05-13 01:16:09 +0300 | [diff] [blame] | 348 | thumb |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 349 | |
| 350 | libs |
| 351 | examples |
Johann | ec65812 | 2012-10-10 09:16:37 -0700 | [diff] [blame] | 352 | docs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 353 | libc |
Jan Kratochvil | 7be093e | 2010-10-05 19:15:08 +0200 | [diff] [blame] | 354 | as |
Jim Bankoski | 943e432 | 2014-07-17 06:31:50 -0700 | [diff] [blame] | 355 | size_limit |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 356 | codec_srcs |
| 357 | debug_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 358 | |
| 359 | dequant_tokens |
| 360 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 361 | postproc |
Jim Bankoski | 7940154 | 2013-09-04 10:02:08 -0700 | [diff] [blame] | 362 | vp9_postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 363 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 364 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 365 | ${CODECS} |
| 366 | ${CODEC_FAMILIES} |
| 367 | static_msvcrt |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 368 | spatial_resampling |
| 369 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 370 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 371 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 372 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 373 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 374 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 375 | postproc_visualizer |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 376 | unit_tests |
Vignesh Venkatasubramanian | 0ffa383 | 2014-03-14 08:10:35 -0700 | [diff] [blame] | 377 | webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 378 | libyuv |
Joshua Litt | a782d63 | 2013-11-15 12:29:26 -0800 | [diff] [blame] | 379 | decode_perf_tests |
Joshua Litt | 83b843f | 2014-07-21 10:57:16 -0700 | [diff] [blame] | 380 | encode_perf_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 381 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 382 | temporal_denoising |
Marco | c7d26cc | 2014-11-12 17:34:54 -0800 | [diff] [blame] | 383 | vp9_temporal_denoising |
Yaowu Xu | 0a2b25d | 2014-07-29 13:40:55 -0700 | [diff] [blame] | 384 | coefficient_range_checking |
Yaowu Xu | 03a021a | 2015-12-02 17:00:26 -0800 | [diff] [blame] | 385 | better_hw_compatibility |
Deb Mukherjee | 5acfafb | 2014-08-26 12:35:15 -0700 | [diff] [blame] | 386 | vp9_highbitdepth |
Jim Bankoski | a5d11f2 | 2012-05-11 08:08:12 -0700 | [diff] [blame] | 387 | experimental |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 388 | " |
| 389 | |
| 390 | process_cmdline() { |
| 391 | for opt do |
| 392 | optval="${opt#*=}" |
| 393 | case "$opt" in |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 394 | --disable-codecs) for c in ${CODECS}; do disable_feature $c; done ;; |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 395 | --enable-?*|--disable-?*) |
| 396 | eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'` |
| 397 | if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then |
| 398 | if enabled experimental; then |
James Zern | ccb6bdc | 2013-08-21 19:00:08 -0700 | [diff] [blame] | 399 | ${action}_feature $option |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 400 | else |
| 401 | log_echo "Ignoring $opt -- not in experimental mode." |
| 402 | fi |
| 403 | else |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 404 | process_common_cmdline $opt |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 405 | fi |
| 406 | ;; |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 407 | *) process_common_cmdline "$opt" |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 408 | ;; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 409 | esac |
| 410 | done |
| 411 | } |
| 412 | |
| 413 | post_process_cmdline() { |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 414 | c="" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 415 | |
| 416 | # If the codec family is disabled, disable all components of that family. |
| 417 | # If the codec family is enabled, enable all components of that family. |
| 418 | log_echo "Configuring selected codecs" |
| 419 | for c in ${CODECS}; do |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 420 | disabled ${c%%_*} && disable_feature ${c} |
| 421 | enabled ${c%%_*} && enable_feature ${c} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 422 | done |
| 423 | |
| 424 | # Enable all detected codecs, if they haven't been disabled |
| 425 | for c in ${CODECS}; do soft_enable $c; done |
| 426 | |
| 427 | # Enable the codec family if any component of that family is enabled |
| 428 | for c in ${CODECS}; do |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 429 | enabled $c && enable_feature ${c%_*} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 430 | done |
| 431 | |
| 432 | # Set the {en,de}coders variable if any algorithm in that class is enabled |
| 433 | for c in ${CODECS}; do |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 434 | enabled ${c} && enable_feature ${c##*_}s |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 435 | done |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | |
| 439 | process_targets() { |
| 440 | enabled child || write_common_config_banner |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 441 | write_common_target_config_h ${BUILD_PFX}vpx_config.h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 442 | write_common_config_targets |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 443 | |
| 444 | # Calculate the default distribution name, based on the enabled features |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 445 | cf="" |
| 446 | DIST_DIR=vpx |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 447 | for cf in $CODEC_FAMILIES; do |
| 448 | if enabled ${cf}_encoder && enabled ${cf}_decoder; then |
| 449 | DIST_DIR="${DIST_DIR}-${cf}" |
| 450 | elif enabled ${cf}_encoder; then |
| 451 | DIST_DIR="${DIST_DIR}-${cf}cx" |
| 452 | elif enabled ${cf}_decoder; then |
| 453 | DIST_DIR="${DIST_DIR}-${cf}dx" |
| 454 | fi |
| 455 | done |
| 456 | enabled debug_libs && DIST_DIR="${DIST_DIR}-debug" |
| 457 | enabled codec_srcs && DIST_DIR="${DIST_DIR}-src" |
Jim Bankoski | 7940154 | 2013-09-04 10:02:08 -0700 | [diff] [blame] | 458 | ! enabled postproc && ! enabled vp9_postproc && DIST_DIR="${DIST_DIR}-nopost" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 459 | ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 460 | ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs" |
| 461 | DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}" |
| 462 | case "${tgt_os}" in |
| 463 | win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md" |
| 464 | DIST_DIR="${DIST_DIR}-${tgt_cc}" |
| 465 | ;; |
| 466 | esac |
| 467 | if [ -f "${source_path}/build/make/version.sh" ]; then |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 468 | ver=`"$source_path/build/make/version.sh" --bare "$source_path"` |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 469 | DIST_DIR="${DIST_DIR}-${ver}" |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 470 | VERSION_STRING=${ver} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 471 | ver=${ver%%-*} |
| 472 | VERSION_PATCH=${ver##*.} |
| 473 | ver=${ver%.*} |
| 474 | VERSION_MINOR=${ver##*.} |
| 475 | ver=${ver#v} |
| 476 | VERSION_MAJOR=${ver%.*} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 477 | fi |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 478 | enabled child || cat <<EOF >> config.mk |
Ralph Giles | 607f842 | 2011-03-28 12:04:51 -0700 | [diff] [blame] | 479 | |
| 480 | PREFIX=${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 481 | ifeq (\$(MAKECMDGOALS),dist) |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 482 | DIST_DIR?=${DIST_DIR} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 483 | else |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 484 | DIST_DIR?=\$(DESTDIR)${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 485 | endif |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 486 | LIBSUBDIR=${libdir##${prefix}/} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 487 | |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 488 | VERSION_STRING=${VERSION_STRING} |
| 489 | |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 490 | VERSION_MAJOR=${VERSION_MAJOR} |
| 491 | VERSION_MINOR=${VERSION_MINOR} |
| 492 | VERSION_PATCH=${VERSION_PATCH} |
| 493 | |
John Koleszar | 23d68a5 | 2010-06-22 09:53:23 -0400 | [diff] [blame] | 494 | CONFIGURE_ARGS=${CONFIGURE_ARGS} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 495 | EOF |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 496 | enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk |
| 497 | |
| 498 | # |
| 499 | # Write makefiles for all enabled targets |
| 500 | # |
| 501 | for tgt in libs examples docs solution; do |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 502 | tgt_fn="$tgt-$toolchain.mk" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 503 | |
| 504 | if enabled $tgt; then |
| 505 | echo "Creating makefiles for ${toolchain} ${tgt}" |
| 506 | write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h |
| 507 | #write_${tgt}_config |
| 508 | fi |
| 509 | done |
| 510 | |
| 511 | } |
| 512 | |
| 513 | process_detect() { |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 514 | if enabled shared; then |
| 515 | # Can only build shared libs on a subset of platforms. Doing this check |
| 516 | # here rather than at option parse time because the target auto-detect |
| 517 | # magic happens after the command line has been parsed. |
KO Myung-Hun | 6d52fe2 | 2014-08-08 13:13:02 +0900 | [diff] [blame] | 518 | if ! enabled linux && ! enabled os2; then |
Mike Frysinger | b4ab43f | 2012-08-14 14:24:28 -0400 | [diff] [blame] | 519 | if enabled gnu; then |
| 520 | echo "--enable-shared is only supported on ELF; assuming this is OK" |
| 521 | else |
KO Myung-Hun | 6d52fe2 | 2014-08-08 13:13:02 +0900 | [diff] [blame] | 522 | die "--enable-shared only supported on ELF and OS/2 for now" |
Mike Frysinger | b4ab43f | 2012-08-14 14:24:28 -0400 | [diff] [blame] | 523 | fi |
| 524 | fi |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 525 | fi |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 526 | if [ -z "$CC" ] || enabled external_build; then |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 527 | echo "Bypassing toolchain for environment detection." |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 528 | enable_feature external_build |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 529 | check_header() { |
| 530 | log fake_check_header "$@" |
| 531 | header=$1 |
| 532 | shift |
| 533 | var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'` |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 534 | disable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 535 | # Headers common to all environments |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 536 | case $header in |
| 537 | stdio.h) |
| 538 | true; |
| 539 | ;; |
| 540 | *) |
KO Myung-Hun | 07fa6ad | 2014-07-22 11:09:27 +0900 | [diff] [blame] | 541 | result=false |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 542 | for d in "$@"; do |
| 543 | [ -f "${d##-I}/$header" ] && result=true && break |
| 544 | done |
| 545 | ${result:-true} |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 546 | esac && enable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 547 | |
| 548 | # Specialize windows and POSIX environments. |
| 549 | case $toolchain in |
| 550 | *-win*-*) |
Johann | 3c92144 | 2015-12-17 16:51:59 -0800 | [diff] [blame] | 551 | # Don't check for any headers in Windows builds. |
| 552 | false |
| 553 | ;; |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 554 | *) |
| 555 | case $header in |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 556 | pthread.h) true;; |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 557 | unistd.h) true;; |
| 558 | *) false;; |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 559 | esac && enable_feature $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 560 | esac |
| 561 | enabled $var |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 562 | } |
| 563 | check_ld() { |
| 564 | true |
| 565 | } |
| 566 | fi |
| 567 | check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}" |
| 568 | check_ld <<EOF || die "Toolchain is unable to link executables" |
| 569 | int main(void) {return 0;} |
| 570 | EOF |
| 571 | # check system headers |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 572 | check_header pthread.h |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 573 | check_header unistd.h # for sysconf(3) and friends. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 574 | |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 575 | check_header vpx/vpx_integer.h -I${source_path} && enable_feature vpx_ports |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 576 | } |
| 577 | |
| 578 | process_toolchain() { |
| 579 | process_common_toolchain |
| 580 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 581 | # Enable some useful compiler flags |
| 582 | if enabled gcc; then |
| 583 | enabled werror && check_add_cflags -Werror |
| 584 | check_add_cflags -Wall |
| 585 | check_add_cflags -Wdeclaration-after-statement |
| 586 | check_add_cflags -Wdisabled-optimization |
| 587 | check_add_cflags -Wpointer-arith |
| 588 | check_add_cflags -Wtype-limits |
| 589 | check_add_cflags -Wcast-qual |
Daniel Kang | 2f96391 | 2012-08-13 14:18:09 -0700 | [diff] [blame] | 590 | check_add_cflags -Wvla |
Attila Nagy | 14c9fce | 2012-04-27 13:41:58 +0300 | [diff] [blame] | 591 | check_add_cflags -Wimplicit-function-declaration |
| 592 | check_add_cflags -Wuninitialized |
| 593 | check_add_cflags -Wunused-variable |
James Zern | dfa2fb5 | 2013-05-03 14:00:33 -0700 | [diff] [blame] | 594 | case ${CC} in |
Johann | 8b47e1c | 2013-10-28 15:44:41 -0700 | [diff] [blame] | 595 | *clang*) |
| 596 | # libvpx and/or clang have issues with aliasing: |
| 597 | # https://code.google.com/p/webm/issues/detail?id=603 |
| 598 | # work around them until they are fixed |
| 599 | check_add_cflags -fno-strict-aliasing |
| 600 | ;; |
James Zern | dfa2fb5 | 2013-05-03 14:00:33 -0700 | [diff] [blame] | 601 | *) check_add_cflags -Wunused-but-set-variable ;; |
| 602 | esac |
John Koleszar | b601eb8 | 2011-02-04 11:51:21 -0500 | [diff] [blame] | 603 | enabled extra_warnings || check_add_cflags -Wno-unused-function |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 604 | fi |
| 605 | |
| 606 | if enabled icc; then |
| 607 | enabled werror && check_add_cflags -Werror |
| 608 | check_add_cflags -Wall |
| 609 | check_add_cflags -Wpointer-arith |
| 610 | |
| 611 | # ICC has a number of floating point optimizations that we disable |
| 612 | # in favor of deterministic output WRT to other compilers |
| 613 | add_cflags -fp-model precise |
| 614 | fi |
| 615 | |
| 616 | # Enable extra, harmless warnings. These might provide additional insight |
| 617 | # to what the compiler is doing and why, but in general, but they shouldn't |
| 618 | # be treated as fatal, even if we're treating warnings as errors. |
| 619 | GCC_EXTRA_WARNINGS=" |
| 620 | -Wdisabled-optimization |
| 621 | -Winline |
| 622 | " |
| 623 | enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}" |
| 624 | RVCT_EXTRA_WARNINGS=" |
| 625 | --remarks |
| 626 | " |
| 627 | enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}" |
| 628 | if enabled extra_warnings; then |
| 629 | for w in ${EXTRA_WARNINGS}; do |
| 630 | check_add_cflags ${w} |
| 631 | enabled gcc && enabled werror && check_add_cflags -Wno-error=${w} |
| 632 | done |
| 633 | fi |
| 634 | |
| 635 | # ccache only really works on gcc toolchains |
| 636 | enabled gcc || soft_disable ccache |
| 637 | if enabled mips; then |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 638 | enable_feature dequant_tokens |
| 639 | enable_feature dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 640 | fi |
| 641 | |
Yaowu Xu | 132ef42 | 2013-09-06 15:05:05 -0700 | [diff] [blame] | 642 | if enabled internal_stats; then |
| 643 | enable_feature vp9_postproc |
| 644 | fi |
| 645 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 646 | # Enable the postbuild target if building for visual studio. |
| 647 | case "$tgt_cc" in |
James Zern | 42ab401 | 2013-08-21 18:11:45 -0700 | [diff] [blame] | 648 | vs*) enable_feature msvs |
| 649 | enable_feature solution |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 650 | vs_version=${tgt_cc##vs} |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 651 | case $vs_version in |
| 652 | [789]) |
| 653 | VCPROJ_SFX=vcproj |
| 654 | gen_vcproj_cmd=${source_path}/build/make/gen_msvs_proj.sh |
| 655 | ;; |
Ghislain MARY | 3067c34 | 2015-07-28 16:37:09 +0200 | [diff] [blame] | 656 | 10|11|12|14) |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 657 | VCPROJ_SFX=vcxproj |
| 658 | gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh |
James Zern | 37c60d8 | 2014-03-08 12:52:33 -0800 | [diff] [blame] | 659 | enabled werror && gen_vcproj_cmd="${gen_vcproj_cmd} --enable-werror" |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 660 | ;; |
| 661 | esac |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 662 | all_targets="${all_targets} solution" |
Ronald S. Bultje | aac73df | 2013-02-06 12:45:28 -0800 | [diff] [blame] | 663 | INLINE="__forceinline" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 664 | ;; |
| 665 | esac |
| 666 | |
| 667 | # Other toolchain specific defaults |
Tom Finegan | 3d7063d | 2015-05-12 15:33:40 -0700 | [diff] [blame] | 668 | case $toolchain in x86*) soft_enable postproc;; esac |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 669 | |
Fritz Koenig | 692b108 | 2010-11-10 14:51:49 -0800 | [diff] [blame] | 670 | if enabled postproc_visualizer; then |
| 671 | enabled postproc || die "postproc_visualizer requires postproc to be enabled" |
| 672 | fi |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 673 | |
Johann | b46d58a | 2013-01-18 11:31:22 -0800 | [diff] [blame] | 674 | # Enable unit tests by default if we have a working C++ compiler. |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 675 | case "$toolchain" in |
| 676 | *-vs*) |
| 677 | soft_enable unit_tests |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 678 | soft_enable webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 679 | soft_enable libyuv |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 680 | ;; |
| 681 | *-android-*) |
Vignesh Venkatasubramanian | 4721f9e | 2014-04-29 00:03:01 -0700 | [diff] [blame] | 682 | soft_enable webm_io |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 683 | soft_enable libyuv |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 684 | # GTestLog must be modified to use Android logging utilities. |
| 685 | ;; |
Johann | a1d929e | 2012-12-13 11:35:59 -0800 | [diff] [blame] | 686 | *-darwin-*) |
| 687 | # iOS/ARM builds do not work with gtest. This does not match |
| 688 | # x86 targets. |
| 689 | ;; |
Tom Finegan | 4e6c555 | 2014-06-04 18:57:25 -0700 | [diff] [blame] | 690 | *-iphonesimulator-*) |
| 691 | soft_enable webm_io |
| 692 | soft_enable libyuv |
| 693 | ;; |
James Zern | e4d2c25 | 2013-06-26 18:35:11 -0700 | [diff] [blame] | 694 | *-win*) |
| 695 | # Some mingw toolchains don't have pthread available by default. |
| 696 | # Treat these more like visual studio where threading in gtest |
| 697 | # would be disabled for the same reason. |
| 698 | check_cxx "$@" <<EOF && soft_enable unit_tests |
| 699 | int z; |
| 700 | EOF |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 701 | check_cxx "$@" <<EOF && soft_enable webm_io |
| 702 | int z; |
| 703 | EOF |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 704 | check_cxx "$@" <<EOF && soft_enable libyuv |
| 705 | int z; |
| 706 | EOF |
James Zern | e4d2c25 | 2013-06-26 18:35:11 -0700 | [diff] [blame] | 707 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 708 | *) |
James Zern | f2dc382 | 2013-06-20 12:49:15 -0700 | [diff] [blame] | 709 | enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 710 | int z; |
| 711 | EOF |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 712 | check_cxx "$@" <<EOF && soft_enable webm_io |
| 713 | int z; |
| 714 | EOF |
Deb Mukherjee | 47031c0 | 2014-05-16 18:52:01 -0700 | [diff] [blame] | 715 | check_cxx "$@" <<EOF && soft_enable libyuv |
| 716 | int z; |
| 717 | EOF |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 718 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 719 | esac |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 720 | # libwebm needs to be linked with C++ standard library |
| 721 | enabled webm_io && LD=${CXX} |
James Zern | 43a3455 | 2015-08-26 20:28:26 -0700 | [diff] [blame] | 722 | |
| 723 | # append any user defined extra cflags |
| 724 | if [ -n "${extra_cflags}" ] ; then |
| 725 | check_add_cflags ${extra_cflags} || \ |
| 726 | die "Requested extra CFLAGS '${extra_cflags}' not supported by compiler" |
| 727 | fi |
James Zern | 12355c4 | 2015-09-12 10:25:28 -0700 | [diff] [blame] | 728 | if [ -n "${extra_cxxflags}" ]; then |
| 729 | check_add_cxxflags ${extra_cxxflags} || \ |
| 730 | die "Requested extra CXXFLAGS '${extra_cxxflags}' not supported by compiler" |
| 731 | fi |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | |
| 735 | ## |
| 736 | ## END APPLICATION SPECIFIC CONFIGURATION |
| 737 | ## |
| 738 | CONFIGURE_ARGS="$@" |
| 739 | process "$@" |
Tom Finegan | 3d9c3f4 | 2011-10-19 22:47:02 -0400 | [diff] [blame] | 740 | print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" |
| 741 | cat <<EOF >> ${BUILD_PFX}vpx_config.c |
James Zern | db4afa6 | 2015-05-14 19:34:53 -0700 | [diff] [blame] | 742 | #include "vpx/vpx_codec.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 743 | static const char* const cfg = "$CONFIGURE_ARGS"; |
| 744 | const char *vpx_codec_build_config(void) {return cfg;} |
| 745 | EOF |