[lld] [LLD][COFF] Rebuild nodefaultlibs after updating search paths and support /noexp (PR #128808)

via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 19:32:20 PST 2025


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lld-coff

Author: None (A2uria)

<details>
<summary>Changes</summary>

Fix #<!-- -->107346

---
Full diff: https://github.com/llvm/llvm-project/pull/128808.diff


2 Files Affected:

- (modified) lld/COFF/Driver.cpp (+7) 
- (modified) lld/COFF/Options.td (+1) 


``````````diff
diff --git a/lld/COFF/Driver.cpp b/lld/COFF/Driver.cpp
index 1589323073c09..086ec83cc5206 100644
--- a/lld/COFF/Driver.cpp
+++ b/lld/COFF/Driver.cpp
@@ -786,6 +786,13 @@ void LinkerDriver::addWinSysRootLibSearchPaths() {
                                       path))
       searchPaths.push_back(saver().save(path));
   }
+
+  // Libraries specified by `/nodefaultlib:` may not be found in incomplete
+  // search paths before lld infers a machine type from input files.
+  std::set<std::string> noDefaultLibs;
+  for (const std::string &path : ctx.config.noDefaultLibs)
+    noDefaultLibs.insert(findLib(path).lower());
+  ctx.config.noDefaultLibs = noDefaultLibs;
 }
 
 // Parses LIB environment which contains a list of search paths.
diff --git a/lld/COFF/Options.td b/lld/COFF/Options.td
index b6fd3d0daaef9..4e401a5fd1d6d 100644
--- a/lld/COFF/Options.td
+++ b/lld/COFF/Options.td
@@ -342,6 +342,7 @@ def fastfail : F<"fastfail">;
 def kernel : F<"kernel">;
 def pdbcompress : F<"pdbcompress">;
 def emitpogophaseinfo : F<"emitpogophaseinfo">;
+def noexp : F<"noexp">;
 
 def delay : P_priv<"delay">;
 def errorreport : P_priv<"errorreport">;

``````````

</details>


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


More information about the llvm-commits mailing list