[Lldb-commits] [lldb] Read and store gnu build id from loaded core file (PR #92492)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed May 22 15:05:52 PDT 2024
================
@@ -117,6 +117,7 @@ class ProcessElfCore : public lldb_private::PostMortemProcess {
lldb::addr_t end;
lldb::addr_t file_ofs;
std::string path;
+ lldb_private::UUID uuid; //.note.gnu.build-id
----------------
clayborg wrote:
Add a comment letting the user know the UUID isn't actually in the NT_FILE_Entry:
```
// Add a UUID member for convenient access. The UUID value is not in the NT_FILE entries,
// we will find it in core memory and store it here for easy access.
```
https://github.com/llvm/llvm-project/pull/92492
More information about the lldb-commits
mailing list