commit | 44145d79ccc10520652a098d3c426a2c21821c87 | [log] [tgz] |
---|---|---|
author | Chaoren Lin <chaorenl@google.com> | Fri May 29 19:52:37 2015 +0000 |
committer | Chaoren Lin <chaorenl@google.com> | Fri May 29 19:52:37 2015 +0000 |
tree | 48e45d84269316f4ab0e30911b0515f11e9fe660 | |
parent | d3173f34e8546a96b8d0df0d9de133f88f10c127 [diff] [blame] |
Working directory FileSpec should use remote path syntax to display correctly. Summary: Depends on D9728. Reviewers: ovyalov, zturner, clayborg Reviewed By: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D9806 llvm-svn: 238605
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 0a1ec3f..2c21a25 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
@@ -2301,7 +2301,7 @@ return false; std::string cwd; response.GetHexByteString(cwd); - working_dir.SetFile(cwd, false); + working_dir.SetFile(cwd, false, GetHostArchitecture()); return !cwd.empty(); } return false;