[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
================
@@ -42,6 +44,10 @@ using namespace lld;
using namespace lld::elf;
namespace {
+
+// Something that can be the most proximate reason that something else is alive.
+typedef std::variant<InputSectionBase *, Symbol *> LiveReason;
----------------
mysterymath wrote:
Done.
https://github.com/llvm/llvm-project/pull/127112
More information about the llvm-commits
mailing list