From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPV0h-0006yB-39 for qemu-devel@nongnu.org; Fri, 27 Sep 2013 06:11:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPV0b-0004tz-2z for qemu-devel@nongnu.org; Fri, 27 Sep 2013 06:10:54 -0400 Received: from mail-wi0-f180.google.com ([209.85.212.180]:57530) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPV0a-0004tt-SH for qemu-devel@nongnu.org; Fri, 27 Sep 2013 06:10:48 -0400 Received: by mail-wi0-f180.google.com with SMTP id hj3so566555wib.13 for ; Fri, 27 Sep 2013 03:10:48 -0700 (PDT) From: "Mian M. Hamayun" Date: Fri, 27 Sep 2013 12:10:12 +0200 Message-Id: <1380276614-857-10-git-send-email-m.hamayun@virtualopensystems.com> In-Reply-To: <1380276614-857-1-git-send-email-m.hamayun@virtualopensystems.com> References: <1380276614-857-1-git-send-email-m.hamayun@virtualopensystems.com> Subject: [Qemu-devel] [PATCH v3 09/11] AARCH64: Enable configure support for 32-bit guests on AARCH64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, agraf@suse.de, tech@virtualopensystems.com, kvmarm@lists.cs.columbia.edu, afaerber@suse.de From: "Mian M. Hamayun" Signed-off-by: Mian M. Hamayun --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 7298b69..dbaf56f 100755 --- a/configure +++ b/configure @@ -4485,6 +4485,7 @@ case "$target_name" in # Make sure the target and host cpus are compatible if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ \( "$target_name" = "$cpu" -o \ + \( "$target_name" = "arm" -a "$cpu" = "aarch64" \) -o \ \( "$target_name" = "ppcemb" -a "$cpu" = "ppc" \) -o \ \( "$target_name" = "ppc64" -a "$cpu" = "ppc" \) -o \ \( "$target_name" = "ppc" -a "$cpu" = "ppc64" \) -o \ -- 1.8.1.2