From b657e1edf4e5b2c7534b2f568c3f6c6f1945b502 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 16 Mar 2026 00:32:22 -0700 Subject: [PATCH] scripts/download-macos-libs.py: Target Darwin 23 for arm64 --- build.sh | 2 +- scripts/download-macos-libs.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = []