Skip to content

Commit

Permalink
Fix linux-arm64 libsosplugin.so not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 committed Sep 23, 2024
1 parent e1b1baf commit 358ff95
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/SOS/lldbplugin/sosplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ namespace lldb {
bool PluginInitialize (lldb::SBDebugger debugger);
}

#if defined(HOST_ARM64)
// Flag to check if atomics feature is available on the machine
bool g_arm64_atomics_present = false;
#endif

LLDBServices* g_services = nullptr;

bool lldb::PluginInitialize(lldb::SBDebugger debugger)
Expand Down

0 comments on commit 358ff95

Please sign in to comment.