From f8410645921ecda8641354ef5af1ac7e4bf6f20c Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Sun, 3 Feb 2013 17:06:49 +0000 Subject: [PATCH] Recognize aarch64 for --enable-targets as advertised. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174288 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/configure.ac | 1 + configure | 1 + 2 files changed, 2 insertions(+) diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 0a291c109b1..4ca4eb9042d 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" ;; diff --git a/configure b/configure index ced14fd28f1..e88021e651b 100755 --- a/configure +++ b/configure @@ -5607,6 +5607,7 @@ case "$enableval" in sparc) TARGETS_TO_BUILD="Sparc $TARGETS_TO_BUILD" ;; powerpc) TARGETS_TO_BUILD="PowerPC $TARGETS_TO_BUILD" ;; arm) TARGETS_TO_BUILD="ARM $TARGETS_TO_BUILD" ;; + aarch64) TARGETS_TO_BUILD="AArch64 $TARGETS_TO_BUILD" ;; mips) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; mipsel) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;; mips64) TARGETS_TO_BUILD="Mips $TARGETS_TO_BUILD" ;;