From c0a6ee3f7e29c147b8321ecaff932a12100aa59d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Fri, 4 Jul 2025 12:10:27 +0100 Subject: [PATCH] [Runner] Pass `lock_microarchitecture` to the `as` wrapper --- src/Runner.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Runner.jl b/src/Runner.jl index 3999de26..183618aa 100644 --- a/src/Runner.jl +++ b/src/Runner.jl @@ -866,6 +866,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr as(io::IO, p::AbstractPlatform) = wrapper(io, string("/opt/", aatriplet(p), "/bin/", aatriplet(p), "-as"); allow_ccache=false, + lock_microarchitecture, # At the moment `as` for `aarch64-apple-darwin` is `clang-8`, which can't deal with # `MACOSX_DEPLOYMENT_TARGET=11.0`, so we pretend to be on 10.16. Note: a better check would be # `VersionNumber(macos_version(p)) ≥ v"11"`, but sometimes `p` may not have `os_version` set, leading to