Skip to content

Commit b657e1e

Browse files
committed
scripts/download-macos-libs.py: Target Darwin 23 for arm64
1 parent 1425a8c commit b657e1e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ case "$platform" in # Adjust compilation options based on platform
202202
Darwin)
203203
echo "Compiling for MacOS for $target_arch..."
204204
if [ "$target_arch" == "arm64" ]; then
205-
macos_min_ver=13.7.4
205+
macos_min_ver=14.0
206206
elif [ "$target_arch" == "x86_64" ]; then
207207
macos_min_ver=12.7.5
208208
else

scripts/download-macos-libs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
class LibInstaller:
2020
DARWIN_TARGET_X64="darwin_21" # macOS 11
21-
DARWIN_TARGET_ARM64="darwin_22" # macOS 13.x
21+
DARWIN_TARGET_ARM64="darwin_23" # macOS 14.x
2222

2323
def __init__(self, arch):
2424
self._queue = []

0 commit comments

Comments
 (0)