When stub libraries trigger the fetching of new object files we can
potentially introduce new undefined symbols so process the stub in
loop until no new objects are pulled in.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
lgtm % question
lld/wasm/Driver.cpp | ||
---|---|---|
913–949 | I'm not that familiar with the LLVM codebase - is this a common pattern? What does message do? |
lld/wasm/Driver.cpp | ||
---|---|---|
913–949 | This is the way we write to stderr for messages to that are designed to end users to see. In this case we print some extra info about a symbol if the user passes --trace=<symname> |
lld/wasm/Driver.cpp | ||
---|---|---|
913–949 | Ah, I see, thanks! Makes sense. |
I'm not that familiar with the LLVM codebase - is this a common pattern? What does message do?