From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ubmif-0000rt-Kk for qemu-devel@nongnu.org; Mon, 13 May 2013 02:58:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ubmib-0000aA-72 for qemu-devel@nongnu.org; Mon, 13 May 2013 02:58:49 -0400 Received: from mail-da0-x22e.google.com ([2607:f8b0:400e:c00::22e]:52871) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ubmib-0000Zy-09 for qemu-devel@nongnu.org; Mon, 13 May 2013 02:58:45 -0400 Received: by mail-da0-f46.google.com with SMTP id e20so3426315dak.33 for ; Sun, 12 May 2013 23:58:44 -0700 (PDT) From: John Rigby Date: Mon, 13 May 2013 00:57:57 -0600 Message-Id: <1368428278-29299-11-git-send-email-john.rigby@linaro.org> In-Reply-To: <1368428278-29299-1-git-send-email-john.rigby@linaro.org> References: <1368428278-29299-1-git-send-email-john.rigby@linaro.org> Subject: [Qemu-devel] [PATCH v3 resend 10/11] ARM: Add aarch64 target to configure List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: 'Peter Maydell , John Rigby , Riku Voipio , Alexander Graf From: Alexander Graf If we want to compile a target machine type that is AArch64 capable, we need to add a new 64-bit capable ARM target. Use AArch64 since that is the official ARM LTD name. Signed-off-by: Alexander Graf Signed-off-by: John Rigby --- Changes in v3: - Arch aarch64 gets its own TARGET_ABI_DIR configure | 8 ++++++++ linux-user/Makefile.objs | 1 + 2 files changed, 9 insertions(+) diff --git a/configure b/configure index 9439f1c..4f5be7a 100755 --- a/configure +++ b/configure @@ -4191,6 +4191,14 @@ case "$target_arch2" in target_nptl="yes" gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml" ;; + aarch64) + TARGET_BASE_ARCH=arm + TARGET_ABI_DIR=aarch64 + bflt="yes" + target_nptl="yes" + gdb_xml_files="aarch64-core.xml aarch64-fpu.xml" + target_long_alignment=8 + ;; cris) target_nptl="yes" ;; diff --git a/linux-user/Makefile.objs b/linux-user/Makefile.objs index 5899d72..c8709d6 100644 --- a/linux-user/Makefile.objs +++ b/linux-user/Makefile.objs @@ -4,4 +4,5 @@ obj-y = main.o syscall.o strace.o mmap.o signal.o \ obj-$(TARGET_HAS_BFLT) += flatload.o obj-$(TARGET_I386) += vm86.o obj-$(TARGET_ARM) += arm/nwfpe/ +obj-$(TARGET_AARCH64) += arm/nwfpe/ obj-$(TARGET_M68K) += m68k-sim.o -- 1.8.2.2