[Lldb-commits] [lldb] [lldb] Fix ELF core debugging (PR #117070)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Wed Nov 20 15:34:09 PST 2024


================
@@ -1380,6 +1380,8 @@ class Process : public std::enable_shared_from_this<Process>,
 
   virtual bool GetProcessInfo(ProcessInstanceInfo &info);
 
+  virtual lldb_private::UUID FindBuildId(const llvm::StringRef path);
+
----------------
clayborg wrote:

There is already a function in Process.h that can do this:
```
  virtual bool GetModuleSpec(const FileSpec &module_file_spec, const ArchSpec &arch, ModuleSpec &module_spec);
```
Remove this and use that call.


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


More information about the lldb-commits mailing list