* [gentoo-commits] proj/riscv:master commit in: sys-devel/gcc/
@ 2019-04-28 10:05 Andreas K. Hüttel
0 siblings, 0 replies; 3+ messages in thread
From: Andreas K. Hüttel @ 2019-04-28 10:05 UTC (permalink / raw
To: gentoo-commits
commit: 12eaef2eb042c4b83c57994e27a709b8705aa22d
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 10:03:00 2019 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 10:03:00 2019 +0000
URL: https://gitweb.gentoo.org/proj/riscv.git/commit/?id=12eaef2e
sys-devel/gcc: Keyword (only) ~riscv
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
sys-devel/gcc/gcc-8.3.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-devel/gcc/gcc-8.3.0-r1.ebuild b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
index aa06c78..5e69f54 100644
--- a/sys-devel/gcc/gcc-8.3.0-r1.ebuild
+++ b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="1.1"
inherit toolchain
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~riscv"
RDEPEND=""
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/riscv:master commit in: sys-devel/gcc/
@ 2019-04-28 13:59 Andreas K. Hüttel
0 siblings, 0 replies; 3+ messages in thread
From: Andreas K. Hüttel @ 2019-04-28 13:59 UTC (permalink / raw
To: gentoo-commits
commit: 2434dabfd3584078c932e67c9ddf37ae99848c4f
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 13:59:10 2019 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 13:59:10 2019 +0000
URL: https://gitweb.gentoo.org/proj/riscv.git/commit/?id=2434dabf
sys-devel/gcc: toolchain.eclass doesnt respect PATCHES
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
sys-devel/gcc/gcc-8.3.0-r1.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/sys-devel/gcc/gcc-8.3.0-r1.ebuild b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
index 66df8b3..85bf79a 100644
--- a/sys-devel/gcc/gcc-8.3.0-r1.ebuild
+++ b/sys-devel/gcc/gcc-8.3.0-r1.ebuild
@@ -14,8 +14,11 @@ DEPEND="${RDEPEND}
elibc_glibc? ( >=sys-libs/glibc-2.13 )
>=${CATEGORY}/binutils-2.20"
-PATCHES=( "${FILESDIR}/${PN}-8.3.0-norisc32.patch" )
-
if [[ ${CATEGORY} != cross-* ]] ; then
PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
fi
+
+src_prepare() {
+ toolchain_src_prepare
+ eapply "${FILESDIR}/${PN}-8.3.0-norisc32.patch"
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/riscv:master commit in: sys-devel/gcc/
@ 2020-09-02 19:39 Andreas K. Hüttel
0 siblings, 0 replies; 3+ messages in thread
From: Andreas K. Hüttel @ 2020-09-02 19:39 UTC (permalink / raw
To: gentoo-commits
commit: c04a06810781cd1447f7db68d59b2225b0f37a18
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 2 19:38:57 2020 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Wed Sep 2 19:38:57 2020 +0000
URL: https://gitweb.gentoo.org/proj/riscv.git/commit/?id=c04a0681
sys-devel/gcc: Enable rv32 abis
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
sys-devel/gcc/gcc-10.2.0-r1.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sys-devel/gcc/gcc-10.2.0-r1.ebuild b/sys-devel/gcc/gcc-10.2.0-r1.ebuild
index 79c0680..2d2ebe5 100644
--- a/sys-devel/gcc/gcc-10.2.0-r1.ebuild
+++ b/sys-devel/gcc/gcc-10.2.0-r1.ebuild
@@ -11,3 +11,8 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~
RDEPEND=""
BDEPEND="${CATEGORY}/binutils"
+
+src_prepare() {
+ has_version '>=sys-libs/glibc-2.32-r1' && rm -v "${WORKDIR}/patch/23_all_disable-riscv32-ABIs.patch"
+ toolchain_src_prepare
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-09-02 19:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-28 13:59 [gentoo-commits] proj/riscv:master commit in: sys-devel/gcc/ Andreas K. Hüttel
-- strict thread matches above, loose matches on Subject: below --
2020-09-02 19:39 Andreas K. Hüttel
2019-04-28 10:05 Andreas K. Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox