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/ProcessGDBRemote.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/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 69bcd8a21cd..fee7b3fd880 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -4320,6 +4320,10 @@ llvm::VersionTuple ProcessGDBRemote::GetHostOSVersion() { return m_gdb_comm.GetOSVersion(); } +llvm::VersionTuple ProcessGDBRemote::GetHostMacCatalystVersion() { + return m_gdb_comm.GetMacCatalystVersion(); +} + namespace { typedef std::vector<std::string> stringVec; |