From a4f6795a441f8e99fc60c88042c0112f2c5907f5 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 4 Dec 2025 17:28:54 +0100 Subject: [PATCH] build: Update macOS ARM docker to latest clang version and macOS 15 SDK --- dist/macOS/arm64.Dockerfile | 14 +++++++------- dist/macOS/arm64.crosscompile.Dockerfile | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dist/macOS/arm64.Dockerfile b/dist/macOS/arm64.Dockerfile index d6976ecd6..32716f67d 100644 --- a/dist/macOS/arm64.Dockerfile +++ b/dist/macOS/arm64.Dockerfile @@ -1,5 +1,5 @@ # This base image is also known as "crosscompile". See arm64.crosscompile.Dockerfile -FROM ghcr.io/werwolv/macos-crosscompile:clang20-nosdk as build +FROM ghcr.io/werwolv/macos-crosscompile:4c4af2d1a6a102fab93cc9cd660280c2ec9d72af as build ENV MACOSX_DEPLOYMENT_TARGET 13.0 @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/var/lib/apt/lists/ apt update && apt install -y m ### add install_name_tool for cmake command that won't have the right env set (see PostprocessBundle.cmake function postprocess_bundle()) RUN cp /osxcross/build/cctools-port/cctools/misc/install_name_tool /usr/bin/install_name_tool ### a cmake thing wants 'otool' and not '' apparently -RUN cp /osxcross/target/bin/aarch64-apple-darwin23-otool /usr/bin/otool +RUN cp /osxcross/target/bin/aarch64-apple-darwin24-otool /usr/bin/otool ## Clone glfw RUN <