[lld] [lld][ELF] Add --why-live flag (inspired by Mach-O) (PR #127112)
Daniel Thornburgh via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 14:30:46 PDT 2025
================
@@ -101,6 +116,12 @@ void MarkLive<ELFT>::resolveReloc(InputSectionBase &sec, RelTy &rel,
Symbol &sym = sec.file->getRelocTargetSym(rel);
sym.used = true;
+ LiveReason reason;
+ if (!ctx.arg.whyLive.empty()) {
+ Defined *reasonSym = sec.getEnclosingSymbol(rel.r_offset);
----------------
mysterymath wrote:
Done.
https://github.com/llvm/llvm-project/pull/127112
More information about the llvm-commits
mailing list