diff options
author | Fabian Groffen <grobian@gentoo.org> | 2020-12-01 11:15:09 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2020-12-01 11:15:09 +0100 |
commit | 7ea8db718ae317d062bb7a293a8ffb901276b1f9 (patch) | |
tree | 4fc6e35b2bb6034fe45ee8bd79d724270e48ff4a | |
parent | app-text/ghostscript-gpl: migrated to gx86 (diff) | |
download | prefix-7ea8db718ae317d062bb7a293a8ffb901276b1f9.tar.gz prefix-7ea8db718ae317d062bb7a293a8ffb901276b1f9.tar.bz2 prefix-7ea8db718ae317d062bb7a293a8ffb901276b1f9.zip |
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 <grobian@gentoo.org>
-rwxr-xr-x | scripts/bootstrap-prefix.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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 ;; *) |