Skip to content

Commit

Permalink
Fix linux-arm64 libsosplugin.so not loading (#4954)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 authored Sep 23, 2024
1 parent 4b09e69 commit d20ed73
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 d20ed73

Please sign in to comment.