diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-05-01 16:49:28 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-05-01 16:49:28 +0000 |
commit | 3ea689b313d43355faa0e5ab68b26367ee30de83 (patch) | |
tree | 66b135a8d1e48bd7155a47c2f725ead721816df9 /lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | |
parent | ec53482aeff13b47672f2a19e499e43daf272f77 (diff) | |
download | bcm5719-llvm-3ea689b313d43355faa0e5ab68b26367ee30de83.tar.gz bcm5719-llvm-3ea689b313d43355faa0e5ab68b26367ee30de83.zip |
Support remote-android with multiple connected devices.
Summary:
This change introduces a new URL scheme for `platform connect`:
```
adb://device-id:port
```
Reviewers: vharron, tberghammer, clayborg, ovyalov
Reviewed By: ovyalov
Subscribers: tberghammer, lldb-commits
Differential Revision: http://reviews.llvm.org/D9358
llvm-svn: 236321
Diffstat (limited to 'lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h')
-rw-r--r-- | lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h index 9d9a6eccdd6..d689e1ee3de 100644 --- a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h +++ b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h @@ -216,6 +216,7 @@ public: protected: process_gdb_remote::GDBRemoteCommunicationClient m_gdb_client; std::string m_platform_description; // After we connect we can get a more complete description of what we are connected to + std::string m_platform_scheme; std::string m_platform_hostname; // Launch the lldb-gdbserver on the remote host and return the port it is listening on or 0 on |