Update prebuilt Clang to r365631c1 from Android.
The version we had was segfaulting.
Bug: 132420445
Change-Id: Icb45a6fe0b4e2166f7895e669df1157cec9fb4e0
diff --git a/linux-x64/clang/include/lldb/Initialization/SystemInitializer.h b/linux-x64/clang/include/lldb/Initialization/SystemInitializer.h
new file mode 100644
index 0000000..e616ad1
--- /dev/null
+++ b/linux-x64/clang/include/lldb/Initialization/SystemInitializer.h
@@ -0,0 +1,28 @@
+//===-- SystemInitializer.h -------------------------------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_INITIALIZATION_SYSTEM_INITIALIZER_H
+#define LLDB_INITIALIZATION_SYSTEM_INITIALIZER_H
+
+#include "llvm/Support/Error.h"
+
+#include <string>
+
+namespace lldb_private {
+
+class SystemInitializer {
+public:
+ SystemInitializer();
+ virtual ~SystemInitializer();
+
+ virtual llvm::Error Initialize() = 0;
+ virtual void Terminate() = 0;
+};
+}
+
+#endif