[Lldb-commits] [lldb] Read and store gnu build id from loaded core file (PR #92492)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri May 17 03:57:26 PDT 2024
================
@@ -271,6 +282,17 @@ Status ProcessElfCore::DoLoadCore() {
return error;
}
+void ProcessElfCore::UpdateBuildIdForNTFileEntries() {
+ if (!m_nt_file_entries.empty()) {
----------------
labath wrote:
Any specific reason doing this as a separate pass (and not from inside parsing loop on line 936)?
https://github.com/llvm/llvm-project/pull/92492
More information about the lldb-commits
mailing list