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 F003F1382C5 for ; Wed, 23 Dec 2020 15:01:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB4972BC009; Wed, 23 Dec 2020 15:01:45 +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 CC43B2BC009 for ; Wed, 23 Dec 2020 15:01:45 +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 457573411A3 for ; Wed, 23 Dec 2020 15:01:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9230309 for ; Wed, 23 Dec 2020 15:01:42 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1608735688.a11c83396d0d4a83644de3e8e6f3f9bd02d5563c.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/riscv.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: a11c83396d0d4a83644de3e8e6f3f9bd02d5563c X-VCS-Branch: catalyst-3.0-stable Date: Wed, 23 Dec 2020 15:01:42 +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: 956d9869-57f4-4221-a3c0-17ac4d617a1b X-Archives-Hash: c5483433f91f437b1509dc7b48f14160 commit: a11c83396d0d4a83644de3e8e6f3f9bd02d5563c Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Dec 23 14:58:36 2020 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Wed Dec 23 15:01:28 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a11c8339 Fix builder entries for riscv32 Signed-off-by: Andreas K. Hüttel gentoo.org> catalyst/arch/riscv.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/catalyst/arch/riscv.py b/catalyst/arch/riscv.py index 18695b51..1fb2c69b 100644 --- a/catalyst/arch/riscv.py +++ b/catalyst/arch/riscv.py @@ -29,14 +29,16 @@ class arch_rv64_lp64(generic_riscv): generic_riscv.__init__(self,myspec) class arch_rv32_ilp32d(generic_riscv): - "builder class for rv64_lp64" + "builder class for rv32_ilp32d" def __init__(self,myspec): generic_riscv.__init__(self,myspec) + self.settings["CHOST"]="riscv32-unknown-linux-gnu" class arch_rv32_ilp32(generic_riscv): - "builder class for rv64_lp64" + "builder class for rv32_ilp32" def __init__(self,myspec): generic_riscv.__init__(self,myspec) + self.settings["CHOST"]="riscv32-unknown-linux-gnu" def register():