From 0d14572f5c3fcf1149c90375bcee696ea704d648 Mon Sep 17 00:00:00 2001 From: mborgerson Date: Sun, 14 Jul 2024 12:45:33 -0700 Subject: [PATCH] ci: Lower macOS minimum version to 12.7.5 --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 600e21590c..fc79746789 100755 --- a/build.sh +++ b/build.sh @@ -199,9 +199,9 @@ case "$platform" in # Adjust compilation options based on platform Darwin) echo "Compiling for MacOS for $target_arch..." if [ "$target_arch" == "arm64" ]; then - macos_min_ver=14.4 + macos_min_ver=12.7.5 elif [ "$target_arch" == "x86_64" ]; then - macos_min_ver=14.4 + macos_min_ver=12.7.5 else echo "Unsupported arch $target_arch" exit 1