diff options
Diffstat (limited to 'lld/lib/Driver/WinLinkDriver.cpp')
-rw-r--r-- | lld/lib/Driver/WinLinkDriver.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lld/lib/Driver/WinLinkDriver.cpp b/lld/lib/Driver/WinLinkDriver.cpp index 8c769a70358..80ea91a1147 100644 --- a/lld/lib/Driver/WinLinkDriver.cpp +++ b/lld/lib/Driver/WinLinkDriver.cpp @@ -414,6 +414,9 @@ bool WinLinkDriver::parse(int argc, const char *argv[], PECOFFLinkingContext &ct // LLD is not yet capable of creating a PDB file, so /debug does not have // any effect, other than disabling dead stripping. ctx.setDeadStripping(false); + + // Prints out input files during core linking to help debugging. + ctx.setLogInputFiles(true); break; case OPT_force: |