Skip to content

Commit d72b6b0

Browse files
committed
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 <[email protected]>
1 parent 0378ad8 commit d72b6b0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/bootstrap-prefix.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1536,6 +1536,7 @@ bootstrap_stage1() {
15361536
# on Darwin 8 and 9.
15371537
# see also configure_toolchain
15381538
case ${CHOST} in
1539+
*-darwin2[23456789]) : ;; # host toolchain can compile gcc-14
15391540
*-darwin[89]) USEGCC5=yes ;;
15401541
*86*-darwin*) USEGCC5=yes ;;
15411542
# arm64/M1 isn't supported by old GCC-5!

0 commit comments

Comments
 (0)