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 70aeb89 commit 1bb755fCopy full SHA for 1bb755f
lldb/source/Plugins/InstrumentationRuntime/Utility/Utility.cpp
@@ -14,6 +14,10 @@
14
namespace lldb_private {
15
16
lldb::ModuleSP GetPreferredAsanModule(const Target &target) {
17
+ // Currently only supported on Darwin.
18
+ if (!target.GetArchitecture().GetTriple().isOSDarwin())
19
+ return nullptr;
20
+
21
lldb::ModuleSP module;
22
llvm::Regex pattern(R"(libclang_rt\.asan_.*_dynamic\.dylib)");
23
target.GetImages().ForEach([&](const lldb::ModuleSP &m) {
0 commit comments