Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: autoconf/configure.ac

Issue 1395453003: Create a proper target machine for PNaCl. Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Fix a test Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | configure » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 arm64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;; 1114 arm64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
1115 arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;; 1115 arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
1116 mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; 1116 mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1117 mipsel) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; 1117 mipsel) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1118 mips64) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; 1118 mips64) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1119 mips64el) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; 1119 mips64el) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
1120 xcore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;; 1120 xcore) TARGETS_TO_BUILD="XCore $TARGETS_TO_BUILD" ;;
1121 msp430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;; 1121 msp430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
1122 cpp) TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;; 1122 cpp) TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;
1123 js) TARGETS_TO_BUILD="JSBackend $TARGETS_TO_BUILD" ;; # @LOCALMOD 1123 js) TARGETS_TO_BUILD="JSBackend $TARGETS_TO_BUILD" ;; # @LOCALMOD
1124 pnacl) TARGETS_TO_BUILD="PNaCl $TARGETS_TO_BUILD" ;; # @LOCALMOD
1124 hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;; 1125 hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
1125 nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;; 1126 nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
1126 systemz) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;; 1127 systemz) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
1127 r600) TARGETS_TO_BUILD="R600 $TARGETS_TO_BUILD" ;; 1128 r600) TARGETS_TO_BUILD="R600 $TARGETS_TO_BUILD" ;;
1128 host) case "$llvm_cv_target_arch" in 1129 host) case "$llvm_cv_target_arch" in
1129 x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; 1130 x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
1130 x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;; 1131 x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
1131 Sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;; 1132 Sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
1132 PowerPC) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;; 1133 PowerPC) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
1133 AArch64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;; 1134 AArch64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
2238 AC_CONFIG_MAKEFILE(test/Makefile.tests) 2239 AC_CONFIG_MAKEFILE(test/Makefile.tests)
2239 AC_CONFIG_MAKEFILE(unittests/Makefile) 2240 AC_CONFIG_MAKEFILE(unittests/Makefile)
2240 AC_CONFIG_MAKEFILE(tools/Makefile) 2241 AC_CONFIG_MAKEFILE(tools/Makefile)
2241 AC_CONFIG_MAKEFILE(utils/Makefile) 2242 AC_CONFIG_MAKEFILE(utils/Makefile)
2242 AC_CONFIG_MAKEFILE(projects/Makefile) 2243 AC_CONFIG_MAKEFILE(projects/Makefile)
2243 AC_CONFIG_MAKEFILE(bindings/Makefile) 2244 AC_CONFIG_MAKEFILE(bindings/Makefile)
2244 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) 2245 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml)
2245 2246
2246 dnl Finally, crank out the output 2247 dnl Finally, crank out the output
2247 AC_OUTPUT 2248 AC_OUTPUT
OLDNEW
« no previous file with comments | « no previous file | configure » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698