Fix linux-arm64 libsosplugin.so not loading
authorMike McLaughlin <mikem@microsoft.com>
Mon, 23 Sep 2024 21:14:01 +0000 (14:14 -0700)
committerMike McLaughlin <mikem@microsoft.com>
Mon, 23 Sep 2024 21:14:01 +0000 (14:14 -0700)
src/SOS/lldbplugin/sosplugin.cpp

index f4ef26e1c9ea687e0314ce045b92e0dc4a66b5b7..2f13c3785a549a19783e997b8412e43b82dd59db 100644 (file)
@@ -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)