[lld] [RFC] [LLD] [COFF] Restructure /debug: option handling, allow controlling features separately (PR #74820)

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 12 04:16:59 PST 2023


================
@@ -130,9 +130,9 @@ struct Configuration {
   bool forceMultipleRes = false;
   bool forceUnresolved = false;
   bool debug = false;
-  bool debugDwarf = false;
+  bool includeDwarfChunks = false;
   bool debugGHashes = false;
-  bool debugSymtab = false;
+  bool writeSymtab = false;
----------------
mstorsjo wrote:

I dunno - the symtab itself is entirely separate from debug info (even if one can't really use it for much anything else than help for inspecting things and debugging).

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


More information about the llvm-commits mailing list