]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
build: disable Xen on ARM
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 11 Jul 2017 10:00:49 +0000 (12:00 +0200)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 11 Jul 2017 10:23:47 +0000 (11:23 +0100)
While ARM could present the xenpv machine, it does not and trying to enable
it breaks compilation.  Revert to the previous test which only looked at
$target_name, not $cpu.

Fixes: 3b6b75506de44c5070639943c30a0ad5850f5d02
Reported-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 20170711100049.20513-1-pbonzini@redhat.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
configure

index 806658c98b28d4f0c34a7b1023011667e79c5d6d..5096cbcf14800b802ae83ba32c2607b4236fb590 100755 (executable)
--- a/configure
+++ b/configure
@@ -202,9 +202,9 @@ supported_kvm_target() {
 supported_xen_target() {
     test "$xen" = "yes" || return 1
     glob "$1" "*-softmmu" || return 1
-    case "${1%-softmmu}:$cpu" in
-        arm:arm | aarch64:aarch64 | \
-        i386:i386 | i386:x86_64 | x86_64:i386 | x86_64:x86_64)
+    # Only i386 and x86_64 provide the xenpv machine.
+    case "${1%-softmmu}" in
+        i386|x86_64)
             return 0
         ;;
     esac