diff options
author | Tobias Hieta <tobias@hieta.se> | 2022-11-08 09:23:10 +0100 |
---|---|---|
committer | Tobias Hieta <tobias@hieta.se> | 2022-11-08 10:05:59 +0100 |
commit | aa99b607b5cf8ef1260f5661dcbf077f26ee797c (patch) | |
tree | 5d0439a1ade73d407b57594f0e27d8c8a633d14a /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | |
parent | aa9647e2d0b29caa3b31154246dd4d9c6a4e0c2f (diff) | |
download | llvm-aa99b607b5cf8ef1260f5661dcbf077f26ee797c.zip llvm-aa99b607b5cf8ef1260f5661dcbf077f26ee797c.tar.gz llvm-aa99b607b5cf8ef1260f5661dcbf077f26ee797c.tar.bz2 |
[clang][pdb] Don't include -fmessage-length in PDB buildinfo
As discussed in https://reviews.llvm.org/D136474 -fmessage-length
creates problems with reproduciability in the PDB files.
This patch just drops that argument when writing the PDB file.
Reviewed By: hans
Differential Revision: https://reviews.llvm.org/D137322
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index a6f1fbc..3bb0df4 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -908,6 +908,9 @@ static std::string flattenCommandLine(ArrayRef<std::string> Args, } if (Arg.startswith("-object-file-name") || Arg == MainFilename) continue; + // Skip fmessage-length for reproduciability. + if (Arg.startswith("-fmessage-length")) + continue; if (PrintedOneArg) OS << " "; llvm::sys::printArg(OS, Arg, /*Quote=*/true); |