[Lldb-commits] [lldb] [lldb][SymbolFileDWARF] Don't search for DWP files on macOS (PR #139554)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Mon May 12 09:02:35 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())
----------------
adrian-prantl wrote:
Should this be a check for the ObjectFile subclass instead?
https://github.com/llvm/llvm-project/pull/139554
More information about the lldb-commits
mailing list