[PATCH] D46966: [lld] Use a real timestamp, with the option to use hash or explicit value
Peter Collingbourne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 16 11:45:12 PDT 2018
pcc added inline comments.
================
Comment at: lld/COFF/Driver.cpp:1038
+ if (auto *Arg = Args.getLastArg(OPT_timestamp)) {
+ if (Arg.equals_lower("hash")) {
+ Config->Timestamp = 0;
----------------
It looks like this is spelt `/Brepro` in the MSVC linker. Should we do the same?
https://reviews.llvm.org/D46966
More information about the llvm-commits
mailing list