[Lldb-commits] [lldb] [lldb][SymbolFileDWARF] Don't search for DWP files on macOS (PR #139554)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon May 12 09:17:37 PDT 2025
================
@@ -4211,6 +4211,9 @@ SymbolFileDWARFDebugMap *SymbolFileDWARF::GetDebugMapSymfile() {
const std::shared_ptr<SymbolFileDWARFDwo> &SymbolFileDWARF::GetDwpSymbolFile() {
llvm::call_once(m_dwp_symfile_once_flag, [this]() {
+ if (m_objfile_sp->GetArchitecture().GetTriple().isAppleMachO())
----------------
Michael137 wrote:
That was my first inclination. But then I was reading the discussion at https://github.com/llvm/llvm-project/pull/139170#issuecomment-2871870612 and was going to see where that goes
https://github.com/llvm/llvm-project/pull/139554
More information about the lldb-commits
mailing list