From 4a97a7fdeca91203992b7139fcac3decb71a80e7 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 15 Feb 2026 15:32:20 +0100 Subject: [PATCH] Teach fake xcrun to also accept -sdk The macos xcrun command officiall only supports --sdk, but in practice also -sdk works, and may be used by some (e.g. Julia's build system...) --- src/Runner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.jl b/src/Runner.jl index ef5afba1..21904c8a 100644 --- a/src/Runner.jl +++ b/src/Runner.jl @@ -1137,7 +1137,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr while [ "\${#}" -gt 0 ]; do case "\${1}" in - --sdk) + --sdk | -sdk) sdk_path="\${2}" shift 2 ;;