[Lldb-commits] [PATCH] Fix problem where 32-bit statically built lldb-platform cannot find lldb-gdbserver.

Chaoren Lin chaorenl at google.com
Thu Feb 12 10:40:30 PST 2015


================
Comment at: source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp:222
@@ -223,1 +221,3 @@
     }
+    else if (idx == 1 &&
+            remote_arch.GetTriple().isOSLinux() &&
----------------
ovyalov wrote:
> Do we need this condition only for remote debugging of Linux target? Or is it required for local LLGS debugging as well?
> I'm wondering whether an alternative solution is appropriate - override HostInfoLinux::GetArchitecture(..) and put  this condition in there. In this case it will be supported either with local or remote debugging, with and without LLGS. 
> 
I actually don't need this part for what I'm doing. Just in case I don't break anything without noticing, I'm going to remove this change.

http://reviews.llvm.org/D7519

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/






More information about the lldb-commits mailing list