summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@bec.de>2013-02-03 17:06:49 +0000
committerJoerg Sonnenberger <joerg@bec.de>2013-02-03 17:06:49 +0000
commitf8410645921ecda8641354ef5af1ac7e4bf6f20c (patch)
tree91cb2198a68322803bf69d444300e14a56af4879 /autoconf
parentcc00cc7e0427ab96a049703dd7b941eccdd4e7bd (diff)
downloadllvm-f8410645921ecda8641354ef5af1ac7e4bf6f20c.tar.gz
llvm-f8410645921ecda8641354ef5af1ac7e4bf6f20c.tar.bz2
llvm-f8410645921ecda8641354ef5af1ac7e4bf6f20c.tar.xz
Recognize aarch64 for --enable-targets as advertised.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 0a291c109b..4ca4eb9042 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -788,6 +788,7 @@ case "$enableval" in
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;;
powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;;
+ aarch64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;;
arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;;
mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;
mipsel) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;