WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=18a5f7943eefdde0a2690c725d8be296c4e5bc1d
commit 18a5f7943eefdde0a2690c725d8be296c4e5bc1d Author: Gareth Halfacree <[email protected]> Date: Thu Nov 30 07:02:23 2017 -0800 Wiki page remote-debug.md changed with summary [] by Gareth Halfacree --- pages/develop/debug/c/remote-debug.md.txt | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/pages/develop/debug/c/remote-debug.md.txt b/pages/develop/debug/c/remote-debug.md.txt index e1fd663f2..ac9085b82 100644 --- a/pages/develop/debug/c/remote-debug.md.txt +++ b/pages/develop/debug/c/remote-debug.md.txt @@ -28,8 +28,7 @@ Run the "helloworld" binary through ``gdbserver``: ```bash #target gdbserver localhost:2000 helloworld - -$ Process hello created; pid = 2763 +$ Process helloworld created; pid = 2763 $ Listening on port 2000 ``` @@ -38,19 +37,7 @@ At this point ``gdbserver`` is waiting for a connection on port 2000 of the targ > **NOTE:** > The GNU Debugger can be launched as multiple processes using ``gdbserver > --multi localhost:2000``. -On the client side, with a run ``gdb``: - -```gdb -#client -gdb hello -``` -```bash -... -$ Type "apropos word" to search for commands related to "word"... -$ Reading symbols from test...(no debugging symbols found)...done. -``` - -Use ``target remote`` to connect to the target system, replacing ``[target-ip]`` with the IP address of the target system. +Run ``gdb`` on your local client machine and use ``target remote`` to connect to the target system, replacing ``[target-ip]`` with the IP address of the target system. ```gdb #client --
