OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 ## | 2 ## |
3 ## configure | 3 ## configure |
4 ## | 4 ## |
5 ## This script is the front-end to the build system. It provides a similar | 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 | 6 ## interface to standard configure scripts with some extra bits for dealing |
7 ## with toolchains that differ from the standard POSIX interface and | 7 ## with toolchains that differ from the standard POSIX interface and |
8 ## for extracting subsets of the source tree. In theory, reusable parts | 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, | 9 ## of this script were intended to live in build/make/configure.sh, |
10 ## but in practice, the line is pretty blurry. | 10 ## but in practice, the line is pretty blurry. |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 HAVE_LIST=" | 264 HAVE_LIST=" |
265 ${ARCH_EXT_LIST} | 265 ${ARCH_EXT_LIST} |
266 vpx_ports | 266 vpx_ports |
267 stdint_h | 267 stdint_h |
268 alt_tree_layout | 268 alt_tree_layout |
269 pthread_h | 269 pthread_h |
270 sys_mman_h | 270 sys_mman_h |
271 unistd_h | 271 unistd_h |
272 " | 272 " |
273 EXPERIMENT_LIST=" | 273 EXPERIMENT_LIST=" |
274 alpha | |
275 multiple_arf | 274 multiple_arf |
276 spatial_svc | 275 spatial_svc |
277 denoising | 276 denoising |
278 fp_mb_stats | 277 fp_mb_stats |
279 " | 278 " |
280 CONFIG_LIST=" | 279 CONFIG_LIST=" |
281 external_build | 280 external_build |
282 install_docs | 281 install_docs |
283 install_bins | 282 install_bins |
284 install_libs | 283 install_libs |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 ## | 769 ## |
771 ## END APPLICATION SPECIFIC CONFIGURATION | 770 ## END APPLICATION SPECIFIC CONFIGURATION |
772 ## | 771 ## |
773 CONFIGURE_ARGS="$@" | 772 CONFIGURE_ARGS="$@" |
774 process "$@" | 773 process "$@" |
775 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" | 774 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" |
776 cat <<EOF >> ${BUILD_PFX}vpx_config.c | 775 cat <<EOF >> ${BUILD_PFX}vpx_config.c |
777 static const char* const cfg = "$CONFIGURE_ARGS"; | 776 static const char* const cfg = "$CONFIGURE_ARGS"; |
778 const char *vpx_codec_build_config(void) {return cfg;} | 777 const char *vpx_codec_build_config(void) {return cfg;} |
779 EOF | 778 EOF |
OLD | NEW |