URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [gdb/] [gdbserver/] [README] - Rev 840
Compare with Previous | Blame | View Log
README for GDBserver & GDBreplayby Stu Grossman and Fred FishIntroduction:This is GDBserver, a remote server for Un*x-like systems. It can be used tocontrol the execution of a program on a target system from a GDB on a differenthost. GDB and GDBserver communicate using the standard remote serial protocolimplemented in remote.c, and various *-stub.c files. They communicate viaeither a serial line or a TCP connection.For more information about GDBserver, see the GDB manual.Usage (server (target) side):First, you need to have a copy of the program you want to debug put ontothe target system. The program can be stripped to save space if needed, asGDBserver doesn't care about symbols. All symbol handling is taken care of bythe GDB running on the host system.To use the server, you log on to the target system, and run the `gdbserver'program. You must tell it (a) how to communicate with GDB, (b) the name ofyour program, and (c) its arguments. The general syntax is:target> gdbserver COMM PROGRAM [ARGS ...]For example, using a serial port, you might say:target> gdbserver /dev/com1 emacs foo.txtThis tells gdbserver to debug emacs with an argument of foo.txt, and tocommunicate with GDB via /dev/com1. Gdbserver now waits patiently for thehost GDB to communicate with it.To use a TCP connection, you could say:target> gdbserver host:2345 emacs foo.txtThis says pretty much the same thing as the last example, except that we aregoing to communicate with the host GDB via TCP. The `host:2345' argument meansthat we are expecting to see a TCP connection from `host' to local TCP port2345. (Currently, the `host' part is ignored.) You can choose any number youwant for the port number as long as it does not conflict with any existing TCPports on the target system. This same port number must be used in the hostGDBs `target remote' command, which will be described shortly. Note that ifyou chose a port number that conflicts with another service, gdbserver willprint an error message and exit.On some targets, gdbserver can also attach to running programs. This isaccomplished via the --attach argument. The syntax is:target> gdbserver --attach COMM PIDPID is the process ID of a currently running process. It isn't necessaryto point gdbserver at a binary for the running process.Usage (host side):You need an unstripped copy of the target program on your host system, sinceGDB needs to examine it's symbol tables and such. Start up GDB as you normallywould, with the target program as the first argument. (You may need to use the--baud option if the serial line is running at anything except 9600 baud.)Ie: `gdb TARGET-PROG', or `gdb --baud BAUD TARGET-PROG'. After that, the onlynew command you need to know about is `target remote'. It's argument is eithera device name (usually a serial device, like `/dev/ttyb'), or a HOST:PORTdescriptor. For example:(gdb) target remote /dev/ttybcommunicates with the server via serial line /dev/ttyb, and:(gdb) target remote the-target:2345communicates via a TCP connection to port 2345 on host `the-target', whereyou previously started up gdbserver with the same port number. Note that forTCP connections, you must start up gdbserver prior to using the `target remote'command, otherwise you may get an error that looks something like`Connection refused'.Building gdbserver:The supported targets as of November 2006 are:arm-*-linux*crisv32-*-linux*cris-*-linux*i[34567]86-*-cygwin*i[34567]86-*-linux*i[34567]86-*-mingw*ia64-*-linux*m32r*-*-linux*m68*-*-linux*m68*-*-uclinux*mips*64*-*-linux*mips*-*-linux*powerpc[64]-*-linux*s390[x]-*-linux*sh-*-linux*spu*-*-*x86_64-*-linux*xscale*-*-linux*Configuring gdbserver you should specify the same machine for host andtarget (which are the machine that gdbserver is going to run on. Thisis not the same as the machine that gdb is going to run on; buildinggdbserver automatically as part of building a whole tree of tools doesnot currently work if cross-compilation is involved (we don't get theright CC in the Makefile, to start with)).Building gdbserver for your target is very straightforward. If you buildGDB natively on a target which gdbserver supports, it will be builtautomatically when you build GDB. You can also build just gdbserver:% mkdir obj% cd obj% path-to-gdbserver-sources/configure% makeIf you prefer to cross-compile to your target, then you can also buildgdbserver that way. In a Bourne shell, for example:% export CC=your-cross-compiler% path-to-gdbserver-sources/configure your-target-name% makeUsing GDBreplay:A special hacked down version of gdbserver can be used to replay remotedebug log files created by gdb. Before using the gdb "target" command toinitiate a remote debug session, use "set remotelogfile <filename>" to tellgdb that you want to make a recording of the serial or tcp session. Notethat when replaying the session, gdb communicates with gdbreplay via tcp,regardless of whether the original session was via a serial link or tcp.Once you are done with the remote debug session, start gdbreplay andtell it the name of the log file and the host and port number that gdbshould connect to (typically the same as the host running gdb):$ gdbreplay logfile host:portThen start gdb (preferably in a different screen or window) and use the"target" command to connect to gdbreplay:(gdb) target remote host:portRepeat the same sequence of user commands to gdb that you gave in theoriginal debug session. Gdb should not be able to tell that it is talkingto gdbreplay rather than a real target, all other things being equal. Notethat gdbreplay echos the command lines to stderr, as well as the contents ofthe packets it sends and receives. The last command echoed by gdbreplay isthe next command that needs to be typed to gdb to continue the session insync with the original session.
