diff options
author | Jason Molenda <jmolenda@apple.com> | 2018-10-11 00:28:35 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2018-10-11 00:28:35 +0000 |
commit | 32762fd29ddb3db91c7deebd3c29b9dacda4d0c7 (patch) | |
tree | ccad48eaeb10f0e4d57f435d3f5d0ade413c7291 /lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | |
parent | 51fbb2e70ae8a2a8df24845f7b6fdf4a1aebce4f (diff) | |
download | bcm5719-llvm-32762fd29ddb3db91c7deebd3c29b9dacda4d0c7.tar.gz bcm5719-llvm-32762fd29ddb3db91c7deebd3c29b9dacda4d0c7.zip |
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/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index 979bb4e18f9..5542dbe7dae 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -147,6 +147,7 @@ DynamicLoader *DynamicLoaderDarwinKernel::CreateInstance(Process *process, case llvm::Triple::IOS: case llvm::Triple::TvOS: case llvm::Triple::WatchOS: + // NEED_BRIDGEOS_TRIPLE case llvm::Triple::BridgeOS: if (triple_ref.getVendor() != llvm::Triple::Apple) { return NULL; } |