Skip to content

Commit

Permalink
libgcc, Darwin: Don't build legacy libgcc_s.1 on macOS 14 [PR116809]
Browse files Browse the repository at this point in the history
d9cafa0c4f0a stopped building libgcc_s.1 on macOS >= 15, in part because
that is required to bootstrap the compiler using the macOS 15 SDK. The
macOS 15 SDK ships in Xcode 16, which also runs on macOS 14. libgcc_s.1
can no longer be built on macOS 14 using Xcode 16 by the same logic that
the previous change disabled it for macOS 15.

	PR target/116809

libgcc/ChangeLog:

	* config.host: Don't build legacy libgcc_s.1 on macOS 14.

Signed-off-by: Mark Mentovai <mark@mentovai.com>
(cherry picked from commit dd5b823ce238161156e7a4b6267bd30d7dde7c6b)
  • Loading branch information
markmentovai authored and iains committed Sep 28, 2024
1 parent df72eb1 commit 848f27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libgcc/config.host
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ case ${host} in
esac
tmake_file="$tmake_file t-slibgcc-darwin"
case ${host} in
x86_64-*-darwin2[0-3]*)
x86_64-*-darwin2[0-2]*)
tmake_file="t-darwin-min-11 t-darwin-libgccs1 $tmake_file"
;;
*-*-darwin2*)
Expand Down

0 comments on commit 848f27a

Please sign in to comment.