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 3345A138359 for ; Fri, 11 Sep 2020 16:12:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70FDBE08EC; Fri, 11 Sep 2020 16:12:12 +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 5326AE08EC for ; Fri, 11 Sep 2020 16:12:12 +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 DD72C3408A6 for ; Fri, 11 Sep 2020 16:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50D08357 for ; Fri, 11 Sep 2020 16:12:09 +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: <1599840716.02a798126514839d6c6a1b86401a7bb35243bde2.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gcc/gcc-10.2.0-r1.ebuild sys-devel/gcc/gcc-10.2.1_pre9999.ebuild sys-devel/gcc/gcc-11.0.0_pre9999.ebuild X-VCS-Directories: sys-devel/gcc/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 02a798126514839d6c6a1b86401a7bb35243bde2 X-VCS-Branch: master Date: Fri, 11 Sep 2020 16:12:09 +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: a4db92a9-1bc3-498e-9fc0-9f90c1adeeca X-Archives-Hash: a2bba45c9a647c6d6e2222f0be284c73 commit: 02a798126514839d6c6a1b86401a7bb35243bde2 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Sep 11 16:11:07 2020 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Sep 11 16:11:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a79812 sys-devel/gcc: Enable rv32 for new enough glibc Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: Andreas K. Hüttel gentoo.org> sys-devel/gcc/gcc-10.2.0-r1.ebuild | 5 +++++ sys-devel/gcc/gcc-10.2.1_pre9999.ebuild | 2 ++ sys-devel/gcc/gcc-11.0.0_pre9999.ebuild | 5 +++++ 3 files changed, 12 insertions(+) diff --git a/sys-devel/gcc/gcc-10.2.0-r1.ebuild b/sys-devel/gcc/gcc-10.2.0-r1.ebuild index 79c068077f2..2d2ebe50bce 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 +} diff --git a/sys-devel/gcc/gcc-10.2.1_pre9999.ebuild b/sys-devel/gcc/gcc-10.2.1_pre9999.ebuild index 5a5beeba49e..c185e457003 100644 --- a/sys-devel/gcc/gcc-10.2.1_pre9999.ebuild +++ b/sys-devel/gcc/gcc-10.2.1_pre9999.ebuild @@ -26,5 +26,7 @@ src_prepare() { rm -v "${WORKDIR}/patch/$p" || die done + has_version '>=sys-libs/glibc-2.32-r1' && rm -v "${WORKDIR}/patch/23_all_disable-riscv32-ABIs.patch" + toolchain_src_prepare } diff --git a/sys-devel/gcc/gcc-11.0.0_pre9999.ebuild b/sys-devel/gcc/gcc-11.0.0_pre9999.ebuild index d3af1f28e50..db0a49eef12 100644 --- a/sys-devel/gcc/gcc-11.0.0_pre9999.ebuild +++ b/sys-devel/gcc/gcc-11.0.0_pre9999.ebuild @@ -15,3 +15,8 @@ EGIT_BRANCH=master 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 +}