We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23680cb commit 4d4966dCopy full SHA for 4d4966d
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -4437,6 +4437,9 @@ SymbolFileDWARFDebugMap *SymbolFileDWARF::GetDebugMapSymfile() {
4437
4438
const std::shared_ptr<SymbolFileDWARFDwo> &SymbolFileDWARF::GetDwpSymbolFile() {
4439
llvm::call_once(m_dwp_symfile_once_flag, [this]() {
4440
+ if (m_objfile_sp->GetArchitecture().GetTriple().isAppleMachO())
4441
+ return;
4442
+
4443
// Create a list of files to try and append .dwp to.
4444
FileSpecList symfiles;
4445
// Append the module's object file path.
0 commit comments