Hi all,
i need to setup a remote debug session of a QT application.
Since i have some problems i started with a local debugging using gdb ./app + run. This was ok.
Then i used two shells in which i launched gdbserver in the first one and gdb in the second one.
gdbserver:
Code:
[root@centos-sd seashell]# gdbserver :2345 ./seadragonshellapp Process ./seadragonshellapp created; pid = 7063 Listening on port 2345 Remote debugging from host 127.0.0.1
gdb:
Code:
(gdb) target remote :2345 Remote debugging using :2345 0x0097f7c0 in ?? () (gdb) list No symbol table is loaded. Use the "file" command. (gdb) run The program being debugged has been started already. Start it from the beginning? (y or n) n Program not restarted. (gdb) start No symbol table loaded. Use the "file" command. (gdb)
I don't understand why since the project is the same :confused:
Any known problem on gdbserver?
Thanks