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.
-Wl,--no-insert-timestamp
1 parent 7721c30 commit 62a88a9Copy full SHA for 62a88a9
src/Runner.jl
@@ -513,6 +513,10 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
513
])
514
elseif Sys.isapple(p)
515
push!(flags, "-headerpad_max_install_names")
516
+ elseif Sys.iswindows(p) && gcc_version ≥ v"5"
517
+ # Do not embed timestamps, for reproducibility:
518
+ # https://github.com/JuliaPackaging/BinaryBuilder.jl/issues/1232
519
+ push!(flags, "-Wl,--no-insert-timestamp")
520
end
521
sanitize_link_flags!(p, flags)
522
return flags
0 commit comments