summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2017-03-28 11:58:38 +0100
committerPeter Maydell <peter.maydell@linaro.org>2017-04-03 12:59:47 +0100
commit6499fd151daa88a136939775dd6002235cafb193 (patch)
treec450833d577492ada1236e317e576a8001b22845
parent5c32be5baf41aec4f4675d2bf24f9948756abf3c (diff)
downloadqemu-6499fd151daa88a136939775dd6002235cafb193.tar.gz
configure: Mark SPARC as supported
Thanks to John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> and the Debian Project, we now have access to a SPARC Linux system we can use for build testing. Move SPARC back into the "supported" list. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1490698718-23762-1-git-send-email-peter.maydell@linaro.org
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 8c6151af8d..4b3b5cd6bc 100755
--- a/configure
+++ b/configure
@@ -521,11 +521,11 @@ ARCH=
# Normalise host CPU name and set ARCH.
# Note that this case should only have supported host CPUs, not guests.
case "$cpu" in
- ppc|ppc64|s390|s390x|x32)
+ ppc|ppc64|s390|s390x|sparc64|x32)
cpu="$cpu"
supported_cpu="yes"
;;
- ia64|sparc64)
+ ia64)
cpu="$cpu"
;;
i386|i486|i586|i686|i86pc|BePC)
@@ -550,6 +550,7 @@ case "$cpu" in
;;
sparc|sun4[cdmuv])
cpu="sparc"
+ supported_cpu="yes"
;;
*)
# This will result in either an error or falling back to TCI later