We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--show-sdk-path
--show-sdk-version
1 parent ac68310 commit 423856cCopy full SHA for 423856c
src/Runner.jl
@@ -997,8 +997,16 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
997
# <https://github.com/JuliaPackaging/Yggdrasil/pull/2962>.
998
xcrun_path = joinpath(bin_path, triplet(platform), "xcrun")
999
write(xcrun_path, """
1000
- #!/bin/sh
1001
- exec "\${@}"
+ #!/bin/bash
+ if [[ "\${@}" == *"--show-sdk-path"* ]]; then
1002
+ echo /opt/$target/$target/sys-root
1003
+ elif [[ "\${@}" == *"--show-sdk-version"* ]]; then
1004
+ grep -A1 '<key>Version</key>' /opt/$target/$target/sys-root/SDKSettings.plist \
1005
+ | tail -n1 \
1006
+ | sed -E -e 's/\s*<string>([^<]+)<\/string>\s*/\1/'
1007
+ else
1008
+ exec "\${@}"
1009
+ fi
1010
""")
1011
chmod(xcrun_path, 0o775)
1012
end
0 commit comments