Remote debugging is quite simple: on the target platform, launch the application using GDBserver, specifying the host and port to listen for the incoming TCP connection:
gdbserver HOST:PORT PROG [ARGS ...]
On the development workstation, start the GDB gateway:
powerpc-7450-linux-gnu-gdb PROG
Be sure to specify an unused executable. In the GDB console, type:
target remote HOST:PORT
break main
continue
- GDB GDBserver