diff options
author | Greg Clayton <gclayton@apple.com> | 2015-10-19 20:44:01 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2015-10-19 20:44:01 +0000 |
commit | 6988abc14d42e992ee699cee96cfe2095bdf2d24 (patch) | |
tree | 9378c6f5c2e62be9ad67e199a46c77098627b7e8 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 238de51eed3986f29bca1f903926f41fadd3463d (diff) | |
download | bcm5719-llvm-6988abc14d42e992ee699cee96cfe2095bdf2d24.tar.gz bcm5719-llvm-6988abc14d42e992ee699cee96cfe2095bdf2d24.zip |
Allow LLDB.framework to locate debugserver even when it doesn't exist in the LLDB.framework.
This allows open source MacOSX clients to not have to build debugserver and the current LLDB can find debugserver inside the selected Xcode.app on your system.
<rdar://problem/23167253>
llvm-svn: 250735
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 84dc10a5afc..5b6f9794f5a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -3568,6 +3568,7 @@ ProcessGDBRemote::LaunchAndConnectToDebugserver (const ProcessInfo &process_info error = m_gdb_comm.StartDebugserverProcess (hostname, port, + GetTarget().GetPlatform().get(), debugserver_launch_info, port); |