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 D8FDA159C96 for ; Wed, 24 Jul 2024 06:30:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30ED6E2A93; Wed, 24 Jul 2024 06:30:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 16CF4E2A93 for ; Wed, 24 Jul 2024 06:30:30 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2579534106C for ; Wed, 24 Jul 2024 06:30:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 812AE1117 for ; Wed, 24 Jul 2024 06:30:27 +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: <1721802549.d72b6b0d55e3f33e18b0ffcb65a53afd5a704518.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: d72b6b0d55e3f33e18b0ffcb65a53afd5a704518 X-VCS-Branch: master Date: Wed, 24 Jul 2024 06:30:27 +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: 80935c7a-93b6-47f5-bb3b-53c47217e4fd X-Archives-Hash: e091933dd29a707975c848ccaf1cf437 commit: d72b6b0d55e3f33e18b0ffcb65a53afd5a704518 Author: Fabian Groffen gentoo org> AuthorDate: Wed Jul 24 06:29:09 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Jul 24 06:29:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=d72b6b0d scripts/bootstrap-prefix: make macOS Ventura and up skip GCC5 The host toolchain cannot compile GCC-5, but it *can* compile GCC-14, which is exactly what we need, so skip GCC-5. Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 9dfa1cda47..11ad8eb8e4 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1536,6 +1536,7 @@ bootstrap_stage1() { # on Darwin 8 and 9. # see also configure_toolchain case ${CHOST} in + *-darwin2[23456789]) : ;; # host toolchain can compile gcc-14 *-darwin[89]) USEGCC5=yes ;; *86*-darwin*) USEGCC5=yes ;; # arm64/M1 isn't supported by old GCC-5!