From: Jason Molenda Date: Wed, 26 Sep 2012 22:42:25 +0000 (+0000) Subject: Add examples of using the kdp-remote and gdb-remote commands to connect to X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e5b55eaddadebbf0b0167ba39433a805a55f2104;p=platform%2Fupstream%2Fllvm.git Add examples of using the kdp-remote and gdb-remote commands to connect to gdb-remote protocol and kdp protocol systems. llvm-svn: 164730 --- diff --git a/lldb/www/lldb-gdb.html b/lldb/www/lldb-gdb.html index bd99615..ccca2a0 100755 --- a/lldb/www/lldb-gdb.html +++ b/lldb/www/lldb-gdb.html @@ -129,6 +129,36 @@ + Attach to a remote gdb protocol server running on system "eorgadd", port 8000. + + + (lldb) gdb-remote eorgadd:8000 + + + (gdb) target remote eorgadd:8000 + + + + Attach to a remote gdb protocol server running on the local system, port 8000. + + + (lldb) gdb-remote 8000 + + + (gdb) target remote localhost:8000 + + + + Attach to a Darwin kernel in kdp mode on system "eorgadd". + + + (lldb) kdp-remote eorgadd + + + (gdb) kdp-reattach eorgadd + + + Do a source level single step in the currently selected thread.