From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 24EC1138334 for ; Fri, 30 Aug 2019 03:08:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 49661E080E; Fri, 30 Aug 2019 03:08:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BDD6E080E for ; Fri, 30 Aug 2019 03:08:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8EFC334A65B for ; Fri, 30 Aug 2019 03:08:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03BE2720 for ; Fri, 30 Aug 2019 03:08:44 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1567134432.652323790c612d914c7ea0176ebf8be9fcdf33e6.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/sparc.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 652323790c612d914c7ea0176ebf8be9fcdf33e6 X-VCS-Branch: master Date: Fri, 30 Aug 2019 03:08:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 51d6cae7-543d-4368-ae10-b656fdc320a4 X-Archives-Hash: e073ec94db89768112b4917f04e07072 commit: 652323790c612d914c7ea0176ebf8be9fcdf33e6 Author: Matt Turner gentoo org> AuthorDate: Fri Aug 30 03:07:12 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Aug 30 03:07:12 2019 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=65232379 arch: Set -mcpu=ultrasparc on 32-bit sparc as well glibc doesn't really support older than UltraSPARC (v9), so the build fails without this. Similarly, the Linux kernel doesn't support anything older than v9. Signed-off-by: Matt Turner gentoo.org> catalyst/arch/sparc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/arch/sparc.py b/catalyst/arch/sparc.py index 0308fb3b..d0ce8c65 100644 --- a/catalyst/arch/sparc.py +++ b/catalyst/arch/sparc.py @@ -18,7 +18,7 @@ class arch_sparc(generic_sparc): "builder class for generic sparc (32-bit userland)" def __init__(self,myspec): generic_sparc.__init__(self,myspec) - self.settings["COMMON_FLAGS"]="-O2 -pipe" + self.settings["COMMON_FLAGS"]="-O2 -mcpu=ultrasparc -pipe" self.settings["CHOST"]="sparc-unknown-linux-gnu" class arch_sparc64(generic_sparc64):