[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
Tue Jun 17 10:23:07 PDT 2025


================
@@ -472,6 +473,16 @@ class SymbolFile : public PluginInterface {
     return false;
   };
 
+  /// Return a map of separate debug info files that are loaded.
+  ///
+  /// Unlike GetSeparateDebugInfo(), this function will only return the list of
+  /// files, if there are errors they are simply ignored. This function will
+  /// always return a valid list, even if it is empty.
+  ///
+  /// \return
+  ///     A unique list of all the filespecs, or an empty list.
+  virtual lldb_private::FileSpecList GetSeparateDebugInfoFiles() { return {}; }
----------------
clayborg wrote:

ModuleSpecList

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


More information about the lldb-commits mailing list