diff options
author | Greg Clayton <gclayton@apple.com> | 2011-05-08 04:53:50 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-05-08 04:53:50 +0000 |
commit | c4103b3c2fe3e38b6a93ce37fca6e8d7d95b2469 (patch) | |
tree | b089504562bb71cb554d9c28a58a0dd7443284f0 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | d9ca42aa4f6a714fb2f04c06e50f721037b5e055 (diff) | |
download | bcm5719-llvm-c4103b3c2fe3e38b6a93ce37fca6e8d7d95b2469.tar.gz bcm5719-llvm-c4103b3c2fe3e38b6a93ce37fca6e8d7d95b2469.zip |
Fixed not being able to launch the i386 slice of a universal binary by adding
a new "QLaunchArch:<arch-name>" where <arch-name> is the architecture name.
This allows us to remotely launch a debugserver and then set the architecture
for the binary we will launch.
llvm-svn: 131064
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 5c24d642470..d8f317ae7e1 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -123,6 +123,8 @@ public: int SendEnvironmentPacket (char const *name_equal_value); + int + SendLaunchArchPacket (const char *arch); //------------------------------------------------------------------ /// Sends a "vAttach:PID" where PID is in hex. /// |