We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8330c1 commit aca110fCopy full SHA for aca110f
lld/wasm/Driver.cpp
@@ -903,8 +903,12 @@ static void processStubLibraries() {
903
": undefined symbol: " + toString(*needed) +
904
". Required by " + toString(*sym));
905
} else {
906
- LLVM_DEBUG(llvm::dbgs()
907
- << "force export: " << toString(*needed) << "\n");
+ if (needed->traced)
+ message(toString(stub_file) + ": exported " + toString(*needed) +
908
+ " due to import of " + name);
909
+ else
910
+ LLVM_DEBUG(llvm::dbgs()
911
+ << "force export: " << toString(*needed) << "\n");
912
needed->forceExport = true;
913
if (auto *lazy = dyn_cast<LazySymbol>(needed)) {
914
lazy->fetch();
0 commit comments