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

Alexandre Ganea via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 1 07:43:22 PDT 2025


================
@@ -2204,6 +2214,17 @@ void LinkerDriver::linkerMain(ArrayRef<const char *> argsArr) {
     config->incremental = false;
   }
 
+  // Handle /linkreprofullpathrsp.
+  std::unique_ptr<llvm::raw_ostream> reproFile;
----------------
aganea wrote:

To avoid passing this around, you can put this in `class LinkerDriver` and then access it above in `LinkerDriver::enqueuePath` with `ctx.driver.reproFile`

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


More information about the llvm-commits mailing list