From nobody Tue Apr 30 17:33:34 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1490698767799586.4331424955275; Tue, 28 Mar 2017 03:59:27 -0700 (PDT) Received: from localhost ([::1]:52370 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csoqU-0002UU-CR for importer@patchew.org; Tue, 28 Mar 2017 06:59:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45757) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csopn-0002CP-W1 for qemu-devel@nongnu.org; Tue, 28 Mar 2017 06:58:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1csopm-0006OO-Qq for qemu-devel@nongnu.org; Tue, 28 Mar 2017 06:58:44 -0400 Received: from orth.archaic.org.uk ([2001:8b0:1d0::2]:48955) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1csopm-0006Nw-K3 for qemu-devel@nongnu.org; Tue, 28 Mar 2017 06:58:42 -0400 Received: from pm215 by orth.archaic.org.uk with local (Exim 4.84_2) (envelope-from ) id 1csopj-0001JM-7A; Tue, 28 Mar 2017 11:58:39 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 28 Mar 2017 11:58:38 +0100 Message-Id: <1490698718-23762-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:8b0:1d0::2 Subject: [Qemu-devel] [PATCH for-2.9] configure: Mark SPARC as supported X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: patches@linaro.org Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Thanks to John Paul Adrian Glaubitz 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 --- We should also at least apply the TCG fixes: http://patchwork.ozlabs.org/patch/743890/ http://patchwork.ozlabs.org/patch/743890/ and ideally the bios-tables-test fix, but that's a testsuite bug: http://patchwork.ozlabs.org/patch/744178/ There are 'make check' failures in qga-test on this box but they don't seem architecture related: https://lists.gnu.org/archive/html/qemu-devel/2017-03/msg04712.html I also see some failures in ppc64 guests which might just be timeout issues and which I haven't investigated yet. I don't think those are severe enough to worry about for this release. configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index d1ce33b..82966f7 100755 --- a/configure +++ b/configure @@ -520,11 +520,11 @@ ARCH=3D # 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=3D"$cpu" supported_cpu=3D"yes" ;; - ia64|sparc64) + ia64) cpu=3D"$cpu" ;; i386|i486|i586|i686|i86pc|BePC) @@ -549,6 +549,7 @@ case "$cpu" in ;; sparc|sun4[cdmuv]) cpu=3D"sparc" + supported_cpu=3D"yes" ;; *) # This will result in either an error or falling back to TCI later --=20 2.7.4