diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-09-04 17:23:15 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-09-04 17:23:15 +0000 |
commit | 2461061168f4ac4ca8a1823768a00d1c63355b1b (patch) | |
tree | 4e38a76bbb1f43efde95d83428162d3cafeb3469 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | |
parent | 40fe351cf699eda8d7d9a72c7bbbb37cef7f3164 (diff) | |
download | bcm5719-llvm-2461061168f4ac4ca8a1823768a00d1c63355b1b.tar.gz bcm5719-llvm-2461061168f4ac4ca8a1823768a00d1c63355b1b.zip |
Upstream macCatalyst support in debugserver and the macOS dynamic loader
plugin.
Unfortunately the test is currently XFAILed because of missing changes
to the clang driver.
Differential Revision: https://reviews.llvm.org/D67124
llvm-svn: 370931
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 7c84bf418b9..d0ae5191efd 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -260,6 +260,15 @@ GDBRemoteCommunicationServerCommon::Handle_qHostInfo( response.PutChar(';'); } +#if defined(__APPLE__) + llvm::VersionTuple maccatalyst_version = HostInfo::GetMacCatalystVersion(); + if (!maccatalyst_version.empty()) { + response.Format("maccatalyst_version:{0}", + maccatalyst_version.getAsString()); + response.PutChar(';'); + } +#endif + std::string s; if (HostInfo::GetOSBuildString(s)) { response.PutCString("os_build:"); |