aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API/SystemInitializerFull.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2018-10-11 00:28:35 +0000
committerJason Molenda <jmolenda@apple.com>2018-10-11 00:28:35 +0000
commit32762fd29ddb3db91c7deebd3c29b9dacda4d0c7 (patch)
treeccad48eaeb10f0e4d57f435d3f5d0ade413c7291 /lldb/source/API/SystemInitializerFull.cpp
parent51fbb2e70ae8a2a8df24845f7b6fdf4a1aebce4f (diff)
downloadllvm-32762fd29ddb3db91c7deebd3c29b9dacda4d0c7.zip
llvm-32762fd29ddb3db91c7deebd3c29b9dacda4d0c7.tar.gz
llvm-32762fd29ddb3db91c7deebd3c29b9dacda4d0c7.tar.bz2
Upstreaming the BridgeOS device support and the
LC_BUILD_VERSION load command handling - this commit is a combination of patches by Adrian Prantl and myself. llvm::Triple::BridgeOS isn't defined yet, so all references to that are currently commented out. Also update Xcode project file to build the NativePDB etc plugins. <rdar://problem/43353615> llvm-svn: 344209
Diffstat (limited to 'lldb/source/API/SystemInitializerFull.cpp')
-rw-r--r--lldb/source/API/SystemInitializerFull.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/API/SystemInitializerFull.cpp b/lldb/source/API/SystemInitializerFull.cpp
index 0a50381..fab9171 100644
--- a/lldb/source/API/SystemInitializerFull.cpp
+++ b/lldb/source/API/SystemInitializerFull.cpp
@@ -106,6 +106,7 @@
#include "Plugins/Platform/MacOSX/PlatformDarwinKernel.h"
#include "Plugins/Platform/MacOSX/PlatformRemoteAppleTV.h"
#include "Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.h"
+#include "Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.h"
#include "Plugins/Platform/MacOSX/PlatformiOSSimulator.h"
#include "Plugins/Process/MacOSX-Kernel/ProcessKDP.h"
#include "Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.h"
@@ -378,6 +379,7 @@ void SystemInitializerFull::Initialize() {
PlatformAppleWatchSimulator::Initialize();
PlatformRemoteAppleTV::Initialize();
PlatformRemoteAppleWatch::Initialize();
+ PlatformRemoteAppleBridge::Initialize();
DynamicLoaderDarwinKernel::Initialize();
#endif
@@ -499,6 +501,7 @@ void SystemInitializerFull::Terminate() {
PlatformAppleWatchSimulator::Terminate();
PlatformRemoteAppleTV::Terminate();
PlatformRemoteAppleWatch::Terminate();
+ PlatformRemoteAppleBridge::Terminate();
#endif
#if defined(__FreeBSD__)