[Lldb-commits] [lldb] [LLDB] Expose enumerator for separate-debug-info in SBModule (PR #144119)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 3 11:49:50 PDT 2026
================
@@ -4375,6 +4375,30 @@ void SymbolFileDWARF::DumpClangAST(Stream &s, llvm::StringRef filter,
clang->Dump(s.AsRawOstream(), filter, show_color);
}
+lldb_private::ModuleSpecList SymbolFileDWARF::GetSeparateDebugInfoFiles() {
----------------
clayborg wrote:
See `ModuleSpecList SymbolFileDWARF::GetSeparateDebugInfoModuleSpecs()` in Ionut's patch. He does the right thing when there is a .dwp file. You can probably just copy his function as is and replace yours. We want to get a single .dwp module spec back if there is one, or get one for each .dwo file if there isn't.
https://github.com/llvm/llvm-project/pull/144119
More information about the lldb-commits
mailing list