John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 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 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 27 | --libc=PATH path to alternate libc |
Jan Kratochvil | 7be093e | 2010-10-05 19:15:08 +0200 | [diff] [blame] | 28 | --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred] |
Fritz Koenig | d830573 | 2012-01-06 11:50:05 -0800 | [diff] [blame] | 29 | --sdk-path=PATH path to root of sdk (iOS, android builds only) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 30 | ${toggle_fast_unaligned} don't use unaligned accesses, even when |
| 31 | supported by hardware [auto] |
| 32 | ${toggle_codec_srcs} in/exclude codec library source code |
| 33 | ${toggle_debug_libs} in/exclude debug version of libraries |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 34 | ${toggle_md5} support for output of checksum data |
| 35 | ${toggle_static_msvcrt} use static MSVCRT (VS builds only) |
| 36 | ${toggle_vp8} VP8 codec support |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 37 | ${toggle_vp9} VP9 codec support |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 38 | ${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] | 39 | ${toggle_mem_tracker} track memory usage |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 40 | ${toggle_postproc} postprocessing |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 41 | ${toggle_multithread} multithreaded encoding and decoding |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 42 | ${toggle_spatial_resampling} spatial sampling (scaling) support |
| 43 | ${toggle_realtime_only} enable this option while building for real-time encoding |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 44 | ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 45 | ${toggle_error_concealment} enable this option to get a decoder which is able to conceal losses |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 46 | ${toggle_runtime_cpu_detect} runtime cpu detection |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 47 | ${toggle_shared} shared library support |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 48 | ${toggle_static} static library support |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 49 | ${toggle_small} favor smaller size over speed |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 50 | ${toggle_postproc_visualizer} macro block / block level visualizers |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 51 | ${toggle_multi_res_encoding} enable multiple-resolution encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 52 | ${toggle_temporal_denoising} enable temporal denoising and disable the spatial denoiser |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 53 | |
| 54 | Codecs: |
| 55 | Codecs can be selectively enabled or disabled individually, or by family: |
| 56 | --disable-<codec> |
| 57 | is equivalent to: |
| 58 | --disable-<codec>-encoder |
| 59 | --disable-<codec>-decoder |
| 60 | |
| 61 | Codecs available in this distribution: |
| 62 | EOF |
| 63 | #restore editor state ' |
| 64 | |
| 65 | local family; |
| 66 | local last_family; |
| 67 | local c; |
| 68 | local str; |
| 69 | for c in ${CODECS}; do |
| 70 | family=${c%_*} |
| 71 | if [ "${family}" != "${last_family}" ]; then |
| 72 | [ -z "${str}" ] || echo "${str}" |
| 73 | str="$(printf ' %10s:' ${family})" |
| 74 | fi |
| 75 | str="${str} $(printf '%10s' ${c#*_})" |
| 76 | last_family=${family} |
| 77 | done |
| 78 | echo "${str}" |
| 79 | show_help_post |
| 80 | } |
| 81 | |
| 82 | ## |
| 83 | ## BEGIN APPLICATION SPECIFIC CONFIGURATION |
| 84 | ## |
| 85 | |
| 86 | # all_platforms is a list of all supported target platforms. Maintain |
| 87 | # alphabetically by architecture, generic-gnu last. |
Fritz Koenig | d830573 | 2012-01-06 11:50:05 -0800 | [diff] [blame] | 88 | all_platforms="${all_platforms} armv5te-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 89 | all_platforms="${all_platforms} armv5te-linux-rvct" |
| 90 | all_platforms="${all_platforms} armv5te-linux-gcc" |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 91 | all_platforms="${all_platforms} armv5te-none-rvct" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 92 | all_platforms="${all_platforms} armv6-darwin-gcc" |
| 93 | all_platforms="${all_platforms} armv6-linux-rvct" |
| 94 | all_platforms="${all_platforms} armv6-linux-gcc" |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 95 | all_platforms="${all_platforms} armv6-none-rvct" |
Fritz Koenig | d830573 | 2012-01-06 11:50:05 -0800 | [diff] [blame] | 96 | all_platforms="${all_platforms} armv7-android-gcc" #neon Cortex-A8 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 97 | all_platforms="${all_platforms} armv7-darwin-gcc" #neon Cortex-A8 |
| 98 | all_platforms="${all_platforms} armv7-linux-rvct" #neon Cortex-A8 |
| 99 | all_platforms="${all_platforms} armv7-linux-gcc" #neon Cortex-A8 |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 100 | all_platforms="${all_platforms} armv7-none-rvct" #neon Cortex-A8 |
Martin Storsjo | ad484fc | 2013-05-18 23:32:49 +0300 | [diff] [blame] | 101 | all_platforms="${all_platforms} armv7-win32-vs11" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 102 | all_platforms="${all_platforms} mips32-linux-gcc" |
| 103 | all_platforms="${all_platforms} ppc32-darwin8-gcc" |
| 104 | all_platforms="${all_platforms} ppc32-darwin9-gcc" |
Johann | 0511cbf | 2010-09-21 14:56:42 -0400 | [diff] [blame] | 105 | all_platforms="${all_platforms} ppc32-linux-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 106 | all_platforms="${all_platforms} ppc64-darwin8-gcc" |
| 107 | all_platforms="${all_platforms} ppc64-darwin9-gcc" |
| 108 | all_platforms="${all_platforms} ppc64-linux-gcc" |
Aaron Watry | 53f61ce | 2010-09-30 15:36:00 -0400 | [diff] [blame] | 109 | all_platforms="${all_platforms} sparc-solaris-gcc" |
Andoni Morales Alastruey | 652589d | 2013-01-14 12:25:52 +0100 | [diff] [blame] | 110 | all_platforms="${all_platforms} x86-android-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 111 | all_platforms="${all_platforms} x86-darwin8-gcc" |
| 112 | all_platforms="${all_platforms} x86-darwin8-icc" |
| 113 | all_platforms="${all_platforms} x86-darwin9-gcc" |
| 114 | all_platforms="${all_platforms} x86-darwin9-icc" |
Johann | 4341e5a | 2011-10-14 12:06:24 -0700 | [diff] [blame] | 115 | all_platforms="${all_platforms} x86-darwin10-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 116 | all_platforms="${all_platforms} x86-darwin11-gcc" |
| 117 | all_platforms="${all_platforms} x86-darwin12-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 118 | all_platforms="${all_platforms} x86-linux-gcc" |
| 119 | all_platforms="${all_platforms} x86-linux-icc" |
KO Myung-Hun | 2dad8d6 | 2012-02-03 13:31:11 +0900 | [diff] [blame] | 120 | all_platforms="${all_platforms} x86-os2-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 121 | all_platforms="${all_platforms} x86-solaris-gcc" |
| 122 | all_platforms="${all_platforms} x86-win32-gcc" |
| 123 | all_platforms="${all_platforms} x86-win32-vs7" |
| 124 | all_platforms="${all_platforms} x86-win32-vs8" |
Tom Finegan | 72d4ba9 | 2010-07-22 13:34:25 -0400 | [diff] [blame] | 125 | all_platforms="${all_platforms} x86-win32-vs9" |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 126 | all_platforms="${all_platforms} x86-win32-vs10" |
| 127 | all_platforms="${all_platforms} x86-win32-vs11" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 128 | all_platforms="${all_platforms} x86_64-darwin9-gcc" |
tomfinegan | faaa57b | 2010-11-16 14:52:05 -0500 | [diff] [blame] | 129 | all_platforms="${all_platforms} x86_64-darwin10-gcc" |
Christian Duvivier | 82edabc | 2012-08-06 15:05:24 -0700 | [diff] [blame] | 130 | all_platforms="${all_platforms} x86_64-darwin11-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 131 | all_platforms="${all_platforms} x86_64-darwin12-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 132 | all_platforms="${all_platforms} x86_64-linux-gcc" |
Yunqing Wang | 7630e36 | 2010-06-17 13:34:19 -0400 | [diff] [blame] | 133 | all_platforms="${all_platforms} x86_64-linux-icc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 134 | all_platforms="${all_platforms} x86_64-solaris-gcc" |
Rafaël Carré | 3cad694 | 2011-11-11 22:45:44 -0500 | [diff] [blame] | 135 | all_platforms="${all_platforms} x86_64-win64-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 136 | all_platforms="${all_platforms} x86_64-win64-vs8" |
Tom Finegan | 72d4ba9 | 2010-07-22 13:34:25 -0400 | [diff] [blame] | 137 | all_platforms="${all_platforms} x86_64-win64-vs9" |
Martin Storsjo | bd91beb | 2013-05-17 00:57:57 +0300 | [diff] [blame] | 138 | all_platforms="${all_platforms} x86_64-win64-vs10" |
| 139 | all_platforms="${all_platforms} x86_64-win64-vs11" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 140 | all_platforms="${all_platforms} universal-darwin8-gcc" |
| 141 | all_platforms="${all_platforms} universal-darwin9-gcc" |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 142 | all_platforms="${all_platforms} universal-darwin10-gcc" |
| 143 | all_platforms="${all_platforms} universal-darwin11-gcc" |
| 144 | all_platforms="${all_platforms} universal-darwin12-gcc" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 145 | all_platforms="${all_platforms} generic-gnu" |
| 146 | |
| 147 | # all_targets is a list of all targets that can be configured |
| 148 | # note that these should be in dependency order for now. |
| 149 | all_targets="libs examples docs" |
| 150 | |
| 151 | # all targets available are enabled, by default. |
| 152 | for t in ${all_targets}; do |
| 153 | [ -f ${source_path}/${t}.mk ] && enable ${t} |
| 154 | done |
| 155 | |
| 156 | # check installed doxygen version |
| 157 | doxy_version=$(doxygen --version 2>/dev/null) |
| 158 | doxy_major=${doxy_version%%.*} |
| 159 | if [ ${doxy_major:-0} -ge 1 ]; then |
| 160 | doxy_version=${doxy_version#*.} |
| 161 | doxy_minor=${doxy_version%%.*} |
| 162 | doxy_patch=${doxy_version##*.} |
| 163 | |
| 164 | [ $doxy_major -gt 1 ] && enable doxygen |
| 165 | [ $doxy_minor -gt 5 ] && enable doxygen |
| 166 | [ $doxy_minor -eq 5 ] && [ $doxy_patch -ge 3 ] && enable doxygen |
| 167 | fi |
| 168 | |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 169 | # install everything except the sources, by default. sources will have |
| 170 | # to be enabled when doing dist builds, since that's no longer a common |
| 171 | # case. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 172 | enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs |
| 173 | enable install_bins |
| 174 | enable install_libs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 175 | |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 176 | enable static |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 177 | enable optimizations |
| 178 | enable fast_unaligned #allow unaligned accesses, if supported by hw |
| 179 | enable md5 |
| 180 | enable spatial_resampling |
| 181 | enable multithread |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 182 | enable os_support |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 183 | enable temporal_denoising |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 184 | |
| 185 | [ -d ${source_path}/../include ] && enable alt_tree_layout |
John Koleszar | 7b8dfcb | 2012-11-06 16:59:01 -0800 | [diff] [blame] | 186 | for d in vp8 vp9; do |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 187 | [ -d ${source_path}/${d} ] && disable alt_tree_layout; |
| 188 | done |
| 189 | |
| 190 | if ! enabled alt_tree_layout; then |
| 191 | # development environment |
| 192 | [ -d ${source_path}/vp8 ] && CODECS="${CODECS} vp8_encoder vp8_decoder" |
Ronald S. Bultje | 4b2c2b9 | 2012-11-01 11:09:58 -0700 | [diff] [blame] | 193 | [ -d ${source_path}/vp9 ] && CODECS="${CODECS} vp9_encoder vp9_decoder" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 194 | else |
| 195 | # customer environment |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 196 | [ -f ${source_path}/../include/vpx/vp8cx.h ] && CODECS="${CODECS} vp8_encoder" |
| 197 | [ -f ${source_path}/../include/vpx/vp8dx.h ] && CODECS="${CODECS} vp8_decoder" |
John Koleszar | 7b8dfcb | 2012-11-06 16:59:01 -0800 | [diff] [blame] | 198 | [ -f ${source_path}/../include/vpx/vp9cx.h ] && CODECS="${CODECS} vp9_encoder" |
| 199 | [ -f ${source_path}/../include/vpx/vp9dx.h ] && CODECS="${CODECS} vp9_decoder" |
Johann | c459d37 | 2012-04-02 15:08:18 -0700 | [diff] [blame] | 200 | [ -f ${source_path}/../include/vpx/vp8cx.h ] || disable vp8_encoder |
| 201 | [ -f ${source_path}/../include/vpx/vp8dx.h ] || disable vp8_decoder |
John Koleszar | 7b8dfcb | 2012-11-06 16:59:01 -0800 | [diff] [blame] | 202 | [ -f ${source_path}/../include/vpx/vp9cx.h ] || disable vp9_encoder |
| 203 | [ -f ${source_path}/../include/vpx/vp9dx.h ] || disable vp9_decoder |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 204 | |
| 205 | [ -f ${source_path}/../lib/*/*mt.lib ] && soft_enable static_msvcrt |
| 206 | fi |
| 207 | |
| 208 | CODECS="$(echo ${CODECS} | tr ' ' '\n')" |
| 209 | CODEC_FAMILIES="$(for c in ${CODECS}; do echo ${c%_*}; done | sort | uniq)" |
| 210 | |
| 211 | ARCH_LIST=" |
| 212 | arm |
| 213 | mips |
| 214 | x86 |
| 215 | x86_64 |
| 216 | ppc32 |
| 217 | ppc64 |
| 218 | " |
| 219 | ARCH_EXT_LIST=" |
Fritz Koenig | 8921028 | 2012-01-19 15:18:31 -0800 | [diff] [blame] | 220 | edsp |
| 221 | media |
| 222 | neon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 223 | |
| 224 | mips32 |
Dragan Mrdjan | 07ff7fa | 2012-04-11 09:53:15 -0700 | [diff] [blame] | 225 | dspr2 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 226 | |
| 227 | mmx |
| 228 | sse |
| 229 | sse2 |
| 230 | sse3 |
| 231 | ssse3 |
Yunqing Wang | 71ecb5d | 2010-10-27 08:45:24 -0400 | [diff] [blame] | 232 | sse4_1 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 233 | |
| 234 | altivec |
| 235 | " |
| 236 | HAVE_LIST=" |
| 237 | ${ARCH_EXT_LIST} |
| 238 | vpx_ports |
| 239 | stdint_h |
| 240 | alt_tree_layout |
| 241 | pthread_h |
| 242 | sys_mman_h |
Attila Nagy | 297b276 | 2011-03-25 12:53:03 +0200 | [diff] [blame] | 243 | unistd_h |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 244 | " |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 245 | EXPERIMENT_LIST=" |
Yaowu Xu | 9780d58 | 2013-03-27 14:58:37 -0700 | [diff] [blame] | 246 | oneshotq |
Adrian Grange | c2876cf | 2013-04-02 15:08:50 -0700 | [diff] [blame] | 247 | multiple_arf |
John Koleszar | 8dd8287 | 2013-05-06 11:01:35 -0700 | [diff] [blame] | 248 | non420 |
John Koleszar | 679e4ab | 2013-05-15 17:55:08 -0700 | [diff] [blame] | 249 | alpha |
Deb Mukherjee | b8b3f1a | 2013-05-08 10:04:14 -0700 | [diff] [blame] | 250 | balanced_coeftree |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 251 | " |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 252 | CONFIG_LIST=" |
| 253 | external_build |
| 254 | install_docs |
| 255 | install_bins |
| 256 | install_libs |
| 257 | install_srcs |
| 258 | debug |
| 259 | gprof |
| 260 | gcov |
| 261 | rvct |
| 262 | gcc |
| 263 | msvs |
| 264 | pic |
| 265 | big_endian |
| 266 | |
| 267 | codec_srcs |
| 268 | debug_libs |
| 269 | fast_unaligned |
| 270 | mem_manager |
| 271 | mem_tracker |
| 272 | mem_checks |
| 273 | md5 |
| 274 | |
| 275 | dequant_tokens |
| 276 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 277 | runtime_cpu_detect |
| 278 | postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 279 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 280 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 281 | ${CODECS} |
| 282 | ${CODEC_FAMILIES} |
| 283 | encoders |
| 284 | decoders |
| 285 | static_msvcrt |
| 286 | spatial_resampling |
| 287 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 288 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 289 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 290 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 291 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 292 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 293 | postproc_visualizer |
Tero Rintaluoma | 11a222f | 2011-01-24 11:21:40 +0200 | [diff] [blame] | 294 | os_support |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 295 | unit_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 296 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 297 | temporal_denoising |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 298 | experimental |
Dmitry Kovalev | 26cec5c | 2013-03-15 18:21:55 -0700 | [diff] [blame] | 299 | decrypt |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 300 | ${EXPERIMENT_LIST} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 301 | " |
| 302 | CMDLINE_SELECT=" |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 303 | external_build |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 304 | extra_warnings |
| 305 | werror |
| 306 | install_docs |
| 307 | install_bins |
| 308 | install_libs |
| 309 | install_srcs |
| 310 | debug |
| 311 | gprof |
| 312 | gcov |
| 313 | pic |
| 314 | optimizations |
| 315 | ccache |
| 316 | runtime_cpu_detect |
Martin Storsjo | 132422d | 2013-05-13 01:16:09 +0300 | [diff] [blame] | 317 | thumb |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 318 | |
| 319 | libs |
| 320 | examples |
Johann | ec65812 | 2012-10-10 09:16:37 -0700 | [diff] [blame] | 321 | docs |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 322 | libc |
Jan Kratochvil | 7be093e | 2010-10-05 19:15:08 +0200 | [diff] [blame] | 323 | as |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 324 | fast_unaligned |
| 325 | codec_srcs |
| 326 | debug_libs |
| 327 | md5 |
| 328 | |
| 329 | dequant_tokens |
| 330 | dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 331 | postproc |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 332 | multithread |
Yaowu Xu | 57ad189 | 2011-04-29 09:37:59 -0700 | [diff] [blame] | 333 | internal_stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 334 | ${CODECS} |
| 335 | ${CODEC_FAMILIES} |
| 336 | static_msvcrt |
| 337 | mem_tracker |
| 338 | spatial_resampling |
| 339 | realtime_only |
Attila Nagy | 52cf4dc | 2012-02-09 12:37:03 +0200 | [diff] [blame] | 340 | onthefly_bitpacking |
Stefan Holmer | d04f852 | 2011-05-02 15:30:51 +0200 | [diff] [blame] | 341 | error_concealment |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 342 | shared |
James Zern | 495b241 | 2011-07-25 15:40:36 -0700 | [diff] [blame] | 343 | static |
John Koleszar | f9b2ca5 | 2010-09-21 10:06:41 -0400 | [diff] [blame] | 344 | small |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 345 | postproc_visualizer |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 346 | unit_tests |
Yunqing Wang | aa7335e | 2011-10-25 15:14:16 -0400 | [diff] [blame] | 347 | multi_res_encoding |
Stefan Holmer | 9c41143 | 2012-03-06 10:48:18 +0100 | [diff] [blame] | 348 | temporal_denoising |
Jim Bankoski | a5d11f2 | 2012-05-11 08:08:12 -0700 | [diff] [blame] | 349 | experimental |
Dmitry Kovalev | 26cec5c | 2013-03-15 18:21:55 -0700 | [diff] [blame] | 350 | decrypt |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 351 | " |
| 352 | |
| 353 | process_cmdline() { |
| 354 | for opt do |
| 355 | optval="${opt#*=}" |
| 356 | case "$opt" in |
| 357 | --disable-codecs) for c in ${CODECS}; do disable $c; done ;; |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 358 | --enable-?*|--disable-?*) |
| 359 | eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'` |
| 360 | if echo "${EXPERIMENT_LIST}" | grep "^ *$option\$" >/dev/null; then |
| 361 | if enabled experimental; then |
| 362 | $action $option |
| 363 | else |
| 364 | log_echo "Ignoring $opt -- not in experimental mode." |
| 365 | fi |
| 366 | else |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 367 | process_common_cmdline $opt |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 368 | fi |
| 369 | ;; |
James Berry | a0769f7 | 2012-05-02 17:25:58 -0400 | [diff] [blame] | 370 | *) process_common_cmdline "$opt" |
Yaowu Xu | 7793b38 | 2011-06-22 15:07:04 -0700 | [diff] [blame] | 371 | ;; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 372 | esac |
| 373 | done |
| 374 | } |
| 375 | |
| 376 | post_process_cmdline() { |
| 377 | local c |
| 378 | |
| 379 | # If the codec family is disabled, disable all components of that family. |
| 380 | # If the codec family is enabled, enable all components of that family. |
| 381 | log_echo "Configuring selected codecs" |
| 382 | for c in ${CODECS}; do |
| 383 | disabled ${c%%_*} && disable ${c} |
| 384 | enabled ${c%%_*} && enable ${c} |
| 385 | done |
| 386 | |
| 387 | # Enable all detected codecs, if they haven't been disabled |
| 388 | for c in ${CODECS}; do soft_enable $c; done |
| 389 | |
| 390 | # Enable the codec family if any component of that family is enabled |
| 391 | for c in ${CODECS}; do |
| 392 | enabled $c && enable ${c%_*} |
| 393 | done |
| 394 | |
| 395 | # Set the {en,de}coders variable if any algorithm in that class is enabled |
| 396 | for c in ${CODECS}; do |
| 397 | enabled ${c} && enable ${c##*_}s |
| 398 | done |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | |
| 402 | process_targets() { |
| 403 | enabled child || write_common_config_banner |
| 404 | enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h |
| 405 | |
| 406 | # TODO: add host tools target (obj_int_extract, etc) |
| 407 | |
| 408 | # For fat binaries, call configure recursively to configure for each |
| 409 | # binary architecture to be included. |
| 410 | if enabled universal; then |
| 411 | # Call configure (ourselves) for each subarchitecture |
| 412 | for arch in $fat_bin_archs; do |
| 413 | BUILD_PFX=${arch}/ toolchain=${arch} $self --child $cmdline_args || exit $? |
| 414 | done |
| 415 | fi |
| 416 | |
| 417 | # The write_common_config (config.mk) logic is deferred until after the |
| 418 | # recursive calls to configure complete, becuase we want our universal |
| 419 | # targets to be executed last. |
| 420 | write_common_config_targets |
| 421 | enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk |
| 422 | |
| 423 | # Calculate the default distribution name, based on the enabled features |
| 424 | local cf |
| 425 | local DIST_DIR=vpx |
| 426 | for cf in $CODEC_FAMILIES; do |
| 427 | if enabled ${cf}_encoder && enabled ${cf}_decoder; then |
| 428 | DIST_DIR="${DIST_DIR}-${cf}" |
| 429 | elif enabled ${cf}_encoder; then |
| 430 | DIST_DIR="${DIST_DIR}-${cf}cx" |
| 431 | elif enabled ${cf}_decoder; then |
| 432 | DIST_DIR="${DIST_DIR}-${cf}dx" |
| 433 | fi |
| 434 | done |
| 435 | enabled debug_libs && DIST_DIR="${DIST_DIR}-debug" |
| 436 | enabled codec_srcs && DIST_DIR="${DIST_DIR}-src" |
| 437 | ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost" |
| 438 | ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 439 | ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs" |
| 440 | DIST_DIR="${DIST_DIR}-${tgt_isa}-${tgt_os}" |
| 441 | case "${tgt_os}" in |
| 442 | win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md" |
| 443 | DIST_DIR="${DIST_DIR}-${tgt_cc}" |
| 444 | ;; |
| 445 | esac |
| 446 | if [ -f "${source_path}/build/make/version.sh" ]; then |
| 447 | local ver=`"$source_path/build/make/version.sh" --bare $source_path` |
| 448 | DIST_DIR="${DIST_DIR}-${ver}" |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 449 | VERSION_STRING=${ver} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 450 | ver=${ver%%-*} |
| 451 | VERSION_PATCH=${ver##*.} |
| 452 | ver=${ver%.*} |
| 453 | VERSION_MINOR=${ver##*.} |
| 454 | ver=${ver#v} |
| 455 | VERSION_MAJOR=${ver%.*} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 456 | fi |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 457 | enabled child || cat <<EOF >> config.mk |
Ralph Giles | 607f842 | 2011-03-28 12:04:51 -0700 | [diff] [blame] | 458 | |
| 459 | PREFIX=${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 460 | ifeq (\$(MAKECMDGOALS),dist) |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 461 | DIST_DIR?=${DIST_DIR} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 462 | else |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 463 | DIST_DIR?=\$(DESTDIR)${prefix} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 464 | endif |
John Koleszar | 670af3a | 2010-05-26 15:57:42 -0400 | [diff] [blame] | 465 | LIBSUBDIR=${libdir##${prefix}/} |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 466 | |
Ralph Giles | 53e9987 | 2011-03-28 11:36:53 -0700 | [diff] [blame] | 467 | VERSION_STRING=${VERSION_STRING} |
| 468 | |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 469 | VERSION_MAJOR=${VERSION_MAJOR} |
| 470 | VERSION_MINOR=${VERSION_MINOR} |
| 471 | VERSION_PATCH=${VERSION_PATCH} |
| 472 | |
John Koleszar | 23d68a5 | 2010-06-22 09:53:23 -0400 | [diff] [blame] | 473 | CONFIGURE_ARGS=${CONFIGURE_ARGS} |
John Koleszar | ee8bcb1 | 2010-05-24 10:16:44 -0400 | [diff] [blame] | 474 | EOF |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 475 | enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk |
| 476 | |
| 477 | # |
| 478 | # Write makefiles for all enabled targets |
| 479 | # |
| 480 | for tgt in libs examples docs solution; do |
| 481 | local tgt_fn="$tgt-$toolchain.mk" |
| 482 | |
| 483 | if enabled $tgt; then |
| 484 | echo "Creating makefiles for ${toolchain} ${tgt}" |
| 485 | write_common_target_config_mk $tgt_fn ${BUILD_PFX}vpx_config.h |
| 486 | #write_${tgt}_config |
| 487 | fi |
| 488 | done |
| 489 | |
| 490 | } |
| 491 | |
| 492 | process_detect() { |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 493 | if enabled shared; then |
| 494 | # Can only build shared libs on a subset of platforms. Doing this check |
| 495 | # here rather than at option parse time because the target auto-detect |
| 496 | # magic happens after the command line has been parsed. |
Mike Frysinger | b4ab43f | 2012-08-14 14:24:28 -0400 | [diff] [blame] | 497 | if ! enabled linux; then |
| 498 | if enabled gnu; then |
| 499 | echo "--enable-shared is only supported on ELF; assuming this is OK" |
| 500 | else |
| 501 | die "--enable-shared only supported on ELF for now" |
| 502 | fi |
| 503 | fi |
John Koleszar | 7aa97a3 | 2010-06-03 10:29:04 -0400 | [diff] [blame] | 504 | fi |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 505 | if [ -z "$CC" ] || enabled external_build; then |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 506 | echo "Bypassing toolchain for environment detection." |
| 507 | enable external_build |
| 508 | check_header() { |
| 509 | log fake_check_header "$@" |
| 510 | header=$1 |
| 511 | shift |
| 512 | var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'` |
| 513 | disable $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 514 | # Headers common to all environments |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 515 | case $header in |
| 516 | stdio.h) |
| 517 | true; |
| 518 | ;; |
| 519 | *) |
| 520 | local result=false |
| 521 | for d in "$@"; do |
| 522 | [ -f "${d##-I}/$header" ] && result=true && break |
| 523 | done |
| 524 | ${result:-true} |
| 525 | esac && enable $var |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 526 | |
| 527 | # Specialize windows and POSIX environments. |
| 528 | case $toolchain in |
| 529 | *-win*-*) |
| 530 | case $header-$toolchain in |
| 531 | stdint*-gcc) true;; |
| 532 | *) false;; |
| 533 | esac && enable $var |
| 534 | ;; |
| 535 | *) |
| 536 | case $header in |
| 537 | stdint.h) true;; |
| 538 | pthread.h) true;; |
| 539 | sys/mman.h) true;; |
| 540 | unistd.h) true;; |
| 541 | *) false;; |
| 542 | esac && enable $var |
| 543 | esac |
| 544 | enabled $var |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 545 | } |
| 546 | check_ld() { |
| 547 | true |
| 548 | } |
| 549 | fi |
| 550 | check_header stdio.h || die "Unable to invoke compiler: ${CC} ${CFLAGS}" |
| 551 | check_ld <<EOF || die "Toolchain is unable to link executables" |
| 552 | int main(void) {return 0;} |
| 553 | EOF |
| 554 | # check system headers |
| 555 | check_header stdint.h |
| 556 | check_header pthread.h |
| 557 | check_header sys/mman.h |
John Koleszar | d984763 | 2012-12-10 12:07:59 -0800 | [diff] [blame] | 558 | check_header unistd.h # for sysconf(3) and friends. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 559 | |
John Koleszar | b749234 | 2010-05-24 11:39:59 -0400 | [diff] [blame] | 560 | check_header vpx/vpx_integer.h -I${source_path} && enable vpx_ports |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | process_toolchain() { |
| 564 | process_common_toolchain |
| 565 | |
| 566 | # Handle universal binaries for this architecture |
| 567 | case $toolchain in |
| 568 | universal-darwin*) |
| 569 | local darwin_ver=${tgt_os##darwin} |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 570 | |
Johann | 101c2bd | 2012-04-27 11:40:04 -0700 | [diff] [blame] | 571 | # Snow Leopard (10.6/darwin10) dropped support for PPC |
| 572 | # Include PPC support for all prior versions |
| 573 | if [ $darwin_ver -lt 10 ]; then |
| 574 | fat_bin_archs="$fat_bin_archs ppc32-${tgt_os}-gcc" |
| 575 | fi |
| 576 | |
| 577 | # Tiger (10.4/darwin8) brought support for x86 |
| 578 | if [ $darwin_ver -ge 8 ]; then |
| 579 | fat_bin_archs="$fat_bin_archs x86-${tgt_os}-${tgt_cc}" |
| 580 | fi |
| 581 | |
| 582 | # Leopard (10.5/darwin9) brought 64 bit support |
| 583 | if [ $darwin_ver -ge 9 ]; then |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 584 | fat_bin_archs="$fat_bin_archs x86_64-${tgt_os}-${tgt_cc}" |
| 585 | fi |
| 586 | ;; |
| 587 | esac |
| 588 | |
| 589 | |
| 590 | # Enable some useful compiler flags |
| 591 | if enabled gcc; then |
| 592 | enabled werror && check_add_cflags -Werror |
| 593 | check_add_cflags -Wall |
| 594 | check_add_cflags -Wdeclaration-after-statement |
| 595 | check_add_cflags -Wdisabled-optimization |
| 596 | check_add_cflags -Wpointer-arith |
| 597 | check_add_cflags -Wtype-limits |
| 598 | check_add_cflags -Wcast-qual |
Daniel Kang | 2f96391 | 2012-08-13 14:18:09 -0700 | [diff] [blame] | 599 | check_add_cflags -Wvla |
Attila Nagy | 14c9fce | 2012-04-27 13:41:58 +0300 | [diff] [blame] | 600 | check_add_cflags -Wimplicit-function-declaration |
| 601 | check_add_cflags -Wuninitialized |
| 602 | check_add_cflags -Wunused-variable |
James Zern | dfa2fb5 | 2013-05-03 14:00:33 -0700 | [diff] [blame] | 603 | case ${CC} in |
| 604 | *clang*) ;; |
| 605 | *) check_add_cflags -Wunused-but-set-variable ;; |
| 606 | esac |
John Koleszar | b601eb8 | 2011-02-04 11:51:21 -0500 | [diff] [blame] | 607 | enabled extra_warnings || check_add_cflags -Wno-unused-function |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 608 | fi |
| 609 | |
| 610 | if enabled icc; then |
| 611 | enabled werror && check_add_cflags -Werror |
| 612 | check_add_cflags -Wall |
| 613 | check_add_cflags -Wpointer-arith |
| 614 | |
| 615 | # ICC has a number of floating point optimizations that we disable |
| 616 | # in favor of deterministic output WRT to other compilers |
| 617 | add_cflags -fp-model precise |
| 618 | fi |
| 619 | |
| 620 | # Enable extra, harmless warnings. These might provide additional insight |
| 621 | # to what the compiler is doing and why, but in general, but they shouldn't |
| 622 | # be treated as fatal, even if we're treating warnings as errors. |
| 623 | GCC_EXTRA_WARNINGS=" |
| 624 | -Wdisabled-optimization |
| 625 | -Winline |
| 626 | " |
| 627 | enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}" |
| 628 | RVCT_EXTRA_WARNINGS=" |
| 629 | --remarks |
| 630 | " |
| 631 | enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}" |
| 632 | if enabled extra_warnings; then |
| 633 | for w in ${EXTRA_WARNINGS}; do |
| 634 | check_add_cflags ${w} |
| 635 | enabled gcc && enabled werror && check_add_cflags -Wno-error=${w} |
| 636 | done |
| 637 | fi |
| 638 | |
| 639 | # ccache only really works on gcc toolchains |
| 640 | enabled gcc || soft_disable ccache |
| 641 | if enabled mips; then |
| 642 | enable dequant_tokens |
John Koleszar | 7f1a908 | 2010-09-13 09:00:24 -0400 | [diff] [blame] | 643 | enable dc_recon |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 644 | fi |
| 645 | |
| 646 | # Enable the postbuild target if building for visual studio. |
| 647 | case "$tgt_cc" in |
| 648 | vs*) enable msvs |
| 649 | enable solution |
| 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 | ;; |
| 656 | 10|11) |
| 657 | VCPROJ_SFX=vcxproj |
| 658 | gen_vcproj_cmd=${source_path}/build/make/gen_msvs_vcxproj.sh |
| 659 | ;; |
| 660 | esac |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 661 | all_targets="${all_targets} solution" |
Ronald S. Bultje | aac73df | 2013-02-06 12:45:28 -0800 | [diff] [blame] | 662 | INLINE="__forceinline" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 663 | ;; |
| 664 | esac |
| 665 | |
| 666 | # Other toolchain specific defaults |
| 667 | case $toolchain in x86*|ppc*|universal*) soft_enable postproc;; esac |
Fritz Koenig | 647df00 | 2010-11-04 16:03:36 -0700 | [diff] [blame] | 668 | |
Fritz Koenig | 692b108 | 2010-11-10 14:51:49 -0800 | [diff] [blame] | 669 | if enabled postproc_visualizer; then |
| 670 | enabled postproc || die "postproc_visualizer requires postproc to be enabled" |
| 671 | fi |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 672 | |
Johann | b46d58a | 2013-01-18 11:31:22 -0800 | [diff] [blame] | 673 | # Enable unit tests by default if we have a working C++ compiler. |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 674 | case "$toolchain" in |
| 675 | *-vs*) |
| 676 | soft_enable unit_tests |
| 677 | ;; |
| 678 | *-android-*) |
| 679 | # GTestLog must be modified to use Android logging utilities. |
| 680 | ;; |
Johann | a1d929e | 2012-12-13 11:35:59 -0800 | [diff] [blame] | 681 | *-darwin-*) |
| 682 | # iOS/ARM builds do not work with gtest. This does not match |
| 683 | # x86 targets. |
| 684 | ;; |
James Zern | e4d2c25 | 2013-06-26 18:35:11 -0700 | [diff] [blame^] | 685 | *-win*) |
| 686 | # Some mingw toolchains don't have pthread available by default. |
| 687 | # Treat these more like visual studio where threading in gtest |
| 688 | # would be disabled for the same reason. |
| 689 | check_cxx "$@" <<EOF && soft_enable unit_tests |
| 690 | int z; |
| 691 | EOF |
| 692 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 693 | *) |
James Zern | f2dc382 | 2013-06-20 12:49:15 -0700 | [diff] [blame] | 694 | enabled pthread_h && check_cxx "$@" <<EOF && soft_enable unit_tests |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 695 | int z; |
| 696 | EOF |
Johann | d6e80de | 2012-06-12 08:58:11 -0700 | [diff] [blame] | 697 | ;; |
John Koleszar | 2bf62c1 | 2012-05-22 11:51:14 -0700 | [diff] [blame] | 698 | esac |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | |
| 702 | ## |
| 703 | ## END APPLICATION SPECIFIC CONFIGURATION |
| 704 | ## |
| 705 | CONFIGURE_ARGS="$@" |
| 706 | process "$@" |
Tom Finegan | 3d9c3f4 | 2011-10-19 22:47:02 -0400 | [diff] [blame] | 707 | print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" |
| 708 | cat <<EOF >> ${BUILD_PFX}vpx_config.c |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 709 | static const char* const cfg = "$CONFIGURE_ARGS"; |
| 710 | const char *vpx_codec_build_config(void) {return cfg;} |
| 711 | EOF |