From: "Andreas K. Hüttel" <dilfridge@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/arch/ Date: Thu, 17 Sep 2020 21:03:58 +0000 (UTC) [thread overview] Message-ID: <1599851078.ff88ce93296fc216eded48e4b26a1354380e3d60.dilfridge@gentoo> (raw) commit: ff88ce93296fc216eded48e4b26a1354380e3d60 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Fri Sep 11 19:04:38 2020 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Fri Sep 11 19:04:38 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ff88ce93 Add rv32 subarch names (all cflags magic is done in the profiles) Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> catalyst/arch/riscv.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/catalyst/arch/riscv.py b/catalyst/arch/riscv.py index 9f7a421f..18695b51 100644 --- a/catalyst/arch/riscv.py +++ b/catalyst/arch/riscv.py @@ -28,6 +28,16 @@ class arch_rv64_lp64(generic_riscv): def __init__(self,myspec): generic_riscv.__init__(self,myspec) +class arch_rv32_ilp32d(generic_riscv): + "builder class for rv64_lp64" + def __init__(self,myspec): + generic_riscv.__init__(self,myspec) + +class arch_rv32_ilp32(generic_riscv): + "builder class for rv64_lp64" + def __init__(self,myspec): + generic_riscv.__init__(self,myspec) + def register(): "Inform main catalyst program of the contents of this plugin." @@ -35,5 +45,7 @@ def register(): "riscv" : arch_riscv, "rv64_multilib" : arch_rv64_multilib, "rv64_lp64d" : arch_rv64_lp64d, - "rv64_lp64" : arch_rv64_lp64 + "rv64_lp64" : arch_rv64_lp64, + "rv32_ilp32d" : arch_rv32_ilp32d, + "rv32_ilp32" : arch_rv32_ilp32 }, ("rv64_multilib"))
WARNING: multiple messages have this Message-ID (diff)
From: "Andreas K. Hüttel" <dilfridge@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/catalyst:dilfridge/image commit in: catalyst/arch/ Date: Thu, 17 Sep 2020 21:13:33 +0000 (UTC) [thread overview] Message-ID: <1599851078.ff88ce93296fc216eded48e4b26a1354380e3d60.dilfridge@gentoo> (raw) Message-ID: <20200917211333.kf4B32tGaT8g6RJvW7Qc_SaGjURnTHp4eZSHfKhET1A@z> (raw) commit: ff88ce93296fc216eded48e4b26a1354380e3d60 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Fri Sep 11 19:04:38 2020 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Fri Sep 11 19:04:38 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ff88ce93 Add rv32 subarch names (all cflags magic is done in the profiles) Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> catalyst/arch/riscv.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/catalyst/arch/riscv.py b/catalyst/arch/riscv.py index 9f7a421f..18695b51 100644 --- a/catalyst/arch/riscv.py +++ b/catalyst/arch/riscv.py @@ -28,6 +28,16 @@ class arch_rv64_lp64(generic_riscv): def __init__(self,myspec): generic_riscv.__init__(self,myspec) +class arch_rv32_ilp32d(generic_riscv): + "builder class for rv64_lp64" + def __init__(self,myspec): + generic_riscv.__init__(self,myspec) + +class arch_rv32_ilp32(generic_riscv): + "builder class for rv64_lp64" + def __init__(self,myspec): + generic_riscv.__init__(self,myspec) + def register(): "Inform main catalyst program of the contents of this plugin." @@ -35,5 +45,7 @@ def register(): "riscv" : arch_riscv, "rv64_multilib" : arch_rv64_multilib, "rv64_lp64d" : arch_rv64_lp64d, - "rv64_lp64" : arch_rv64_lp64 + "rv64_lp64" : arch_rv64_lp64, + "rv32_ilp32d" : arch_rv32_ilp32d, + "rv32_ilp32" : arch_rv32_ilp32 }, ("rv64_multilib"))
next reply other threads:[~2020-09-17 21:04 UTC|newest] Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-09-17 21:03 Andreas K. Hüttel [this message] 2020-09-17 21:13 ` [gentoo-commits] proj/catalyst:dilfridge/image commit in: catalyst/arch/ Andreas K. Hüttel -- strict thread matches above, loose matches on Subject: below -- 2022-10-11 12:53 [gentoo-commits] proj/catalyst:catalyst-3.0-stable " Andreas K. Hüttel 2022-08-13 11:35 Andreas K. Hüttel 2022-07-30 18:41 Andreas K. Hüttel 2022-04-23 13:24 Andreas K. Hüttel 2022-02-27 15:46 Andreas K. Hüttel 2020-12-23 15:01 Andreas K. Hüttel 2020-07-18 17:19 Andreas K. Hüttel
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1599851078.ff88ce93296fc216eded48e4b26a1354380e3d60.dilfridge@gentoo \ --to=dilfridge@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox