aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2007-12-13 02:24:45 +0000
committerNate Begeman <natebegeman@mac.com>2007-12-13 02:24:45 +0000
commitbd4d6b85648ec8b6defad3ebb3fbe91fb326c44b (patch)
treea2d31e7dd050f30f82a266d235f8c5a3c58fe381 /autoconf
parent544f83db6b124d042cdb4eba1c83528056e81f09 (diff)
downloadexternal_llvm-bd4d6b85648ec8b6defad3ebb3fbe91fb326c44b.zip
external_llvm-bd4d6b85648ec8b6defad3ebb3fbe91fb326c44b.tar.gz
external_llvm-bd4d6b85648ec8b6defad3ebb3fbe91fb326c44b.tar.bz2
Apply CBE/MSIL patch to autoconf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 979e3a8..6ceb9b7 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -363,7 +363,7 @@ AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
[Build specific host targets: all,host-only,{target-name} (default=all)]),,
enableval=all)
case "$enableval" in
- all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU" ;;
+ all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU CBackend MSIL" ;;
host-only)
case "$llvm_cv_target_arch" in
x86) TARGETS_TO_BUILD="X86" ;;
@@ -389,12 +389,13 @@ case "$enableval" in
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
spu) TARGETS_TO_BUILD="CellSPU $TARGETS_TO_BUILD" ;;
+ cbe) TARGETS_TO_BUILD="CBackend $TARGETS_TO_BUILD" ;;
+ msil) TARGETS_TO_BUILD="MSIL $TARGETS_TO_BUILD" ;;
*) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
esac
done
;;
esac
-TARGETS_TO_BUILD="CBackend MSIL $TARGETS_TO_BUILD"
AC_SUBST(TARGETS_TO_BUILD,$TARGETS_TO_BUILD)
dnl Prevent the CBackend from using printf("%a") for floating point so older