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 004a681 commit f85f7f8Copy full SHA for f85f7f8
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -4209,6 +4209,9 @@ SymbolFileDWARFDebugMap *SymbolFileDWARF::GetDebugMapSymfile() {
4209
4210
const std::shared_ptr<SymbolFileDWARFDwo> &SymbolFileDWARF::GetDwpSymbolFile() {
4211
llvm::call_once(m_dwp_symfile_once_flag, [this]() {
4212
+ if (m_objfile_sp->GetArchitecture().GetTriple().isAppleMachO())
4213
+ return;
4214
+
4215
// Create a list of files to try and append .dwp to.
4216
FileSpecList symfiles;
4217
// Append the module's object file path.
0 commit comments