We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d27a85 commit a338b3dCopy full SHA for a338b3d
src/Runner.jl
@@ -437,8 +437,8 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
437
end
438
439
function buildid_link_flags!(p::AbstractPlatform, flags::Vector{String})
440
- # build-id is only supported in the ELF format, which is linux+FreeBSD
441
- if Sys.islinux(p) || Sys.isfreebsd(p)
+ # build-id is not supported on macOS compilers
+ if !Sys.isapple(p)
442
# Use a known algorithm to embed the build-id for reproducibility
443
push!(flags, "-Wl,--build-id=sha1")
444
0 commit comments