From: Claudio Fontana Date: Wed, 12 Jun 2013 15:20:23 +0000 (+0100) Subject: configure: permit compilation on arm aarch64 X-Git-Tag: v1.6.0-rc0~234^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f0803137df68c1fc02ebd0c5ec2e7aad54bbf3b;p=thirdparty%2Fqemu.git configure: permit compilation on arm aarch64 support compiling on aarch64. Reviewed-by: Peter Maydell Signed-off-by: Claudio Fontana Reviewed-by: Richard Henderson Message-id: 51A5C5ED.90103@huawei.com Signed-off-by: Peter Maydell --- diff --git a/configure b/configure index cb42269d45f..1bab634c432 100755 --- a/configure +++ b/configure @@ -386,6 +386,8 @@ elif check_define __s390__ ; then fi elif check_define __arm__ ; then cpu="arm" +elif check_define __aarch64__ ; then + cpu="aarch64" elif check_define __hppa__ ; then cpu="hppa" else @@ -408,6 +410,9 @@ case "$cpu" in armv*b|armv*l|arm) cpu="arm" ;; + aarch64) + cpu="aarch64" + ;; hppa|parisc|parisc64) cpu="hppa" ;; @@ -4060,6 +4065,9 @@ if test "$linux" = "yes" ; then s390x) linux_arch=s390 ;; + aarch64) + linux_arch=arm64 + ;; *) # For most CPUs the kernel architecture name and QEMU CPU name match. linux_arch="$cpu"