[Lldb-commits] [lldb] [lldb][SymbolFileDWARF] Don't search for DWP files on macOS (PR #139554)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed May 28 10:07:25 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())
----------------
JDevlieghere wrote:

I think this is a good solution until we've documented the dependency policy from #139170

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


More information about the lldb-commits mailing list