diff --git a/build.sh b/build.sh index ab4ef3bc32..ad61a5e7d6 100755 --- a/build.sh +++ b/build.sh @@ -202,7 +202,7 @@ 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=13.7.4 + macos_min_ver=14.0 elif [ "$target_arch" == "x86_64" ]; then macos_min_ver=12.7.5 else diff --git a/scripts/download-macos-libs.py b/scripts/download-macos-libs.py index 4eb1385cb3..b55a0b1d5b 100755 --- a/scripts/download-macos-libs.py +++ b/scripts/download-macos-libs.py @@ -18,7 +18,7 @@ MIRROR = 'https://packages.macports.org' class LibInstaller: DARWIN_TARGET_X64="darwin_21" # macOS 11 - DARWIN_TARGET_ARM64="darwin_22" # macOS 13.x + DARWIN_TARGET_ARM64="darwin_23" # macOS 14.x def __init__(self, arch): self._queue = []