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 4BF841382C5 for ; Tue, 1 Dec 2020 10:16:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9946BE0824; Tue, 1 Dec 2020 10:16:58 +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 80ACDE0824 for ; Tue, 1 Dec 2020 10:16:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 80109340CD7 for ; Tue, 1 Dec 2020 10:16:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F10DE453 for ; Tue, 1 Dec 2020 10:16:55 +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: <1606817709.7ea8db718ae317d062bb7a293a8ffb901276b1f9.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: 7ea8db718ae317d062bb7a293a8ffb901276b1f9 X-VCS-Branch: master Date: Tue, 1 Dec 2020 10:16:55 +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: 0782f2f8-1481-4cc1-aeb3-343d7a20a320 X-Archives-Hash: 349f9403bf5e7f3c00d015d481eae59e commit: 7ea8db718ae317d062bb7a293a8ffb901276b1f9 Author: Fabian Groffen gentoo org> AuthorDate: Tue Dec 1 10:15:09 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Dec 1 10:15:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7ea8db71 scripts/bootstrap-prefix: default to GCC build on Darwin The GCC builds have been verified on 10.13, 10.15 and 11.0 and are functional enough to be used, as well as can be used to extend/build out to LLVM/Clang toolchain (which isn't yet working). Allow people for the time being to at least produce a working Prefix. Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 595a0019f3..159fc88d9a 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -3088,6 +3088,8 @@ case ${CHOST} in # normalise value of DARWIN_USE_GCC case ${DARWIN_USE_GCC} in yes|true|1) DARWIN_USE_GCC=1 ;; + no|false|0) DARWIN_USE_GCC=0 ;; + *) DARWIN_USE_GCC=1 ;; # default to GCC build esac ;; *)