scripts/download-macos-libs.py: Target Darwin 23 for arm64

This commit is contained in:
Matt Borgerson
2026-03-16 00:32:22 -07:00
committed by mborgerson
parent 1425a8c39b
commit b657e1edf4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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 = []