From: falcovorbis <fal...@us...> - 2024-07-31 18:58:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via c8aef24a4e9674e77cb8b6854c652cf68e3eac40 (commit) from 973216532c9cd340ce71aefa28c1233c10ffeff3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c8aef24a4e9674e77cb8b6854c652cf68e3eac40 Author: Andy Barajas <and...@gm...> Date: Wed Jul 31 11:57:02 2024 -0700 Update minimum macOS version for toolchain build (#685) Updated the CXX line to set -mmacosx-version-min to 10.14 from 10.7 to support building the toolchain on M1 Macs. This ensures compatibility with newer macOS versions. ----------------------------------------------------------------------- Summary of changes: utils/dc-chain/scripts/init.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/dc-chain/scripts/init.mk b/utils/dc-chain/scripts/init.mk index bc37f4db..0115ca7d 100644 --- a/utils/dc-chain/scripts/init.mk +++ b/utils/dc-chain/scripts/init.mk @@ -63,7 +63,7 @@ ifdef MACOS sdkroot = $(shell xcrun --sdk macosx --show-sdk-path) macos_extra_args = -isysroot $(sdkroot) CC += -Wno-nullability-completeness -Wno-missing-braces $(macos_extra_args) - CXX += -stdlib=libc++ -mmacosx-version-min=10.7 $(macos_extra_args) + CXX += -stdlib=libc++ -mmacosx-version-min=10.14 $(macos_extra_args) SH_CC_FOR_TARGET += $(macos_extra_args) SH_CXX_FOR_TARGET += $(macos_extra_args) macos_gcc_configure_args = --with-sysroot --with-native-system-header=/usr/include hooks/post-receive -- A pseudo Operating System for the Dreamcast. |