Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Tue, 01 Dec 2020 10:16:59
Message-Id: 1606817709.7ea8db718ae317d062bb7a293a8ffb901276b1f9.grobian@gentoo
1 commit: 7ea8db718ae317d062bb7a293a8ffb901276b1f9
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 10:15:09 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 10:15:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=7ea8db71
7
8 scripts/bootstrap-prefix: default to GCC build on Darwin
9
10 The GCC builds have been verified on 10.13, 10.15 and 11.0 and are
11 functional enough to be used, as well as can be used to extend/build out
12 to LLVM/Clang toolchain (which isn't yet working).
13 Allow people for the time being to at least produce a working Prefix.
14
15 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
16
17 scripts/bootstrap-prefix.sh | 2 ++
18 1 file changed, 2 insertions(+)
19
20 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
21 index 595a0019f3..159fc88d9a 100755
22 --- a/scripts/bootstrap-prefix.sh
23 +++ b/scripts/bootstrap-prefix.sh
24 @@ -3088,6 +3088,8 @@ case ${CHOST} in
25 # normalise value of DARWIN_USE_GCC
26 case ${DARWIN_USE_GCC} in
27 yes|true|1) DARWIN_USE_GCC=1 ;;
28 + no|false|0) DARWIN_USE_GCC=0 ;;
29 + *) DARWIN_USE_GCC=1 ;; # default to GCC build
30 esac
31 ;;
32 *)