OLD | NEW |
1 dnl === configure.ac --------------------------------------------------------=== | 1 dnl === configure.ac --------------------------------------------------------=== |
2 dnl The LLVM Compiler Infrastructure | 2 dnl The LLVM Compiler Infrastructure |
3 dnl | 3 dnl |
4 dnl This file is distributed under the University of Illinois Open Source | 4 dnl This file is distributed under the University of Illinois Open Source |
5 dnl License. See LICENSE.TXT for details. | 5 dnl License. See LICENSE.TXT for details. |
6 dnl | 6 dnl |
7 dnl===-----------------------------------------------------------------------=== | 7 dnl===-----------------------------------------------------------------------=== |
8 dnl This is the LLVM configuration script. It is processed by the autoconf | 8 dnl This is the LLVM configuration script. It is processed by the autoconf |
9 dnl program to produce a script named configure. This script contains the | 9 dnl program to produce a script named configure. This script contains the |
10 dnl configuration checks that LLVM needs in order to support multiple platforms. | 10 dnl configuration checks that LLVM needs in order to support multiple platforms. |
(...skipping 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 [Build specific subzero targets: target1,target2,...(default=none)]),, | 1062 [Build specific subzero targets: target1,target2,...(default=none)]),, |
1063 enableval=none) | 1063 enableval=none) |
1064 case "$enableval" in | 1064 case "$enableval" in |
1065 none) ;; | 1065 none) ;; |
1066 *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do | 1066 *)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do |
1067 case "$a_target" in | 1067 case "$a_target" in |
1068 X8632) SUBZERO_TARGETS_TO_BUILD="X8632 $SUBZERO_TARGETS_TO_BUILD" ;; | 1068 X8632) SUBZERO_TARGETS_TO_BUILD="X8632 $SUBZERO_TARGETS_TO_BUILD" ;; |
1069 X8664) SUBZERO_TARGETS_TO_BUILD="X8664 $SUBZERO_TARGETS_TO_BUILD" ;; | 1069 X8664) SUBZERO_TARGETS_TO_BUILD="X8664 $SUBZERO_TARGETS_TO_BUILD" ;; |
1070 ARM32) SUBZERO_TARGETS_TO_BUILD="ARM32 $SUBZERO_TARGETS_TO_BUILD" ;; | 1070 ARM32) SUBZERO_TARGETS_TO_BUILD="ARM32 $SUBZERO_TARGETS_TO_BUILD" ;; |
1071 ARM64) SUBZERO_TARGETS_TO_BUILD="ARM64 $SUBZERO_TARGETS_TO_BUILD" ;; | 1071 ARM64) SUBZERO_TARGETS_TO_BUILD="ARM64 $SUBZERO_TARGETS_TO_BUILD" ;; |
| 1072 MIPS32) SUBZERO_TARGETS_TO_BUILD="MIPS32 $SUBZERO_TARGETS_TO_BUILD" ;; |
1072 *) AC_MSG_ERROR([Unrecognized subzero target $a_target]) ;; | 1073 *) AC_MSG_ERROR([Unrecognized subzero target $a_target]) ;; |
1073 esac | 1074 esac |
1074 done | 1075 done |
1075 ;; | 1076 ;; |
1076 esac | 1077 esac |
1077 | 1078 |
1078 dnl Build the SUBZERO_ENUM_TARGETS macro for SZTargets.def. | 1079 dnl Build the SUBZERO_ENUM_TARGETS macro for SZTargets.def. |
1079 SUBZERO_ENUM_TARGETS="" | 1080 SUBZERO_ENUM_TARGETS="" |
1080 for target_to_build in $SUBZERO_TARGETS_TO_BUILD; do | 1081 for target_to_build in $SUBZERO_TARGETS_TO_BUILD; do |
1081 SUBZERO_ENUM_TARGETS="SUBZERO_TARGET($target_to_build) $SUBZERO_ENUM_TARGETS" | 1082 SUBZERO_ENUM_TARGETS="SUBZERO_TARGET($target_to_build) $SUBZERO_ENUM_TARGETS" |
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2076 AC_CONFIG_MAKEFILE(test/Makefile.tests) | 2077 AC_CONFIG_MAKEFILE(test/Makefile.tests) |
2077 AC_CONFIG_MAKEFILE(unittests/Makefile) | 2078 AC_CONFIG_MAKEFILE(unittests/Makefile) |
2078 AC_CONFIG_MAKEFILE(tools/Makefile) | 2079 AC_CONFIG_MAKEFILE(tools/Makefile) |
2079 AC_CONFIG_MAKEFILE(utils/Makefile) | 2080 AC_CONFIG_MAKEFILE(utils/Makefile) |
2080 AC_CONFIG_MAKEFILE(projects/Makefile) | 2081 AC_CONFIG_MAKEFILE(projects/Makefile) |
2081 AC_CONFIG_MAKEFILE(bindings/Makefile) | 2082 AC_CONFIG_MAKEFILE(bindings/Makefile) |
2082 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) | 2083 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) |
2083 | 2084 |
2084 dnl Finally, crank out the output | 2085 dnl Finally, crank out the output |
2085 AC_OUTPUT | 2086 AC_OUTPUT |
OLD | NEW |