[lld] [lld][COFF] Add /linkreprofullpathrsp flag (PR #165449)

David Truby via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 3 07:14:10 PST 2025


================
@@ -514,7 +524,7 @@ void LinkerDriver::parseDirectives(InputFile *file) {
       break;
     case OPT_defaultlib:
       if (std::optional<StringRef> path = findLibIfNew(arg->getValue()))
-        enqueuePath(*path, false, false);
+        enqueuePath(*path, false, false, nullptr);
----------------
DavidTruby wrote:

I can add it just to avoid confusion, but it doesn't really matter because the reproFile is null here. The defaultlibs get handled again later anyway so I'm not really sure why they're enqueued twice.

https://github.com/llvm/llvm-project/pull/165449


More information about the llvm-commits mailing list