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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25DC91581D3 for ; Mon, 27 May 2024 17:04:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C9902BC014; Mon, 27 May 2024 17:04:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 507BC2BC014 for ; Mon, 27 May 2024 17:04:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C89D335C2E for ; Mon, 27 May 2024 17:04:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D780C1899 for ; Mon, 27 May 2024 17:04:48 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1716773072.e3da80a66251be27fac1adb02b1aec991827fb4d.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: sys-devel/gcc/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: sys-devel/gcc/gcc-13.3.0.ebuild X-VCS-Directories: sys-devel/gcc/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e3da80a66251be27fac1adb02b1aec991827fb4d X-VCS-Branch: master Date: Mon, 27 May 2024 17:04:48 +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: 226ea361-8009-49e4-8f4d-2963c51a04b1 X-Archives-Hash: 19b076628ee0c7ef7dbf62dd78786cd8 commit: e3da80a66251be27fac1adb02b1aec991827fb4d Author: Fabian Groffen gentoo org> AuthorDate: Mon May 27 01:24:32 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon May 27 01:24:32 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e3da80a6 sys-devel/gcc-13.3.0: fix ld64/xtools detection fix update for updated checks, fixes compiling on {x64,ppc}-macos Signed-off-by: Fabian Groffen gentoo.org> sys-devel/gcc/gcc-13.3.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-devel/gcc/gcc-13.3.0.ebuild b/sys-devel/gcc/gcc-13.3.0.ebuild index 5004a9daf0..eb8200a374 100644 --- a/sys-devel/gcc/gcc-13.3.0.ebuild +++ b/sys-devel/gcc/gcc-13.3.0.ebuild @@ -97,7 +97,8 @@ src_prepare() { # our ld64 is a slight bit different, so tweak expression to not # get confused and break the build - sed -i -e 's/grep ld64/grep :ld64/' gcc/configure || die + sed -i -e "s/EGREP 'ld64|dyld'/& | head -n1/" \ + gcc/configure{.ac,} || die # rip out specific macos version min sed -i -e 's/-mmacosx-version-min=11.0//' \