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:
Qt Code:
  1. [root@centos-sd seashell]# gdbserver :2345 ./seadragonshellapp
  2. Process ./seadragonshellapp created; pid = 7063
  3. Listening on port 2345
  4. Remote debugging from host 127.0.0.1
To copy to clipboard, switch view to plain text mode 

gdb:
Qt Code:
  1. (gdb) target remote :2345
  2. Remote debugging using :2345
  3. 0x0097f7c0 in ?? ()
  4. (gdb) list
  5. No symbol table is loaded. Use the "file" command.
  6. (gdb) run
  7. The program being debugged has been started already.
  8. Start it from the beginning? (y or n) n
  9. Program not restarted.
  10. (gdb) start
  11. No symbol table loaded. Use the "file" command.
  12. (gdb)
To copy to clipboard, switch view to plain text mode 

I don't understand why since the project is the same
Any known problem on gdbserver?

Thanks