Update texinfo.tex to version 2000-05-28.15.
[deliverable/binutils-gdb.git] / gdb / gdb.1
CommitLineData
c906108c
SS
1.\" Copyright (c) 1991 Free Software Foundation
2.\" See section COPYING for conditions for redistribution
3.\" $Id$
4.TH gdb 1 "4nov1991" "GNU Tools" "GNU Tools"
5.SH NAME
6gdb \- The GNU Debugger
7.SH SYNOPSIS
8.na
9.TP
10.B gdb
11.RB "[\|" \-help "\|]"
12.RB "[\|" \-nx "\|]"
13.RB "[\|" \-q "\|]"
14.RB "[\|" \-batch "\|]"
15.RB "[\|" \-cd=\c
16.I dir\c
17\|]
18.RB "[\|" \-f "\|]"
19.RB "[\|" "\-b\ "\c
20.IR bps "\|]"
21.RB "[\|" "\-tty="\c
22.IR dev "\|]"
23.RB "[\|" "\-s "\c
24.I symfile\c
25\&\|]
26.RB "[\|" "\-e "\c
27.I prog\c
28\&\|]
29.RB "[\|" "\-se "\c
30.I prog\c
31\&\|]
32.RB "[\|" "\-c "\c
33.I core\c
34\&\|]
35.RB "[\|" "\-x "\c
36.I cmds\c
37\&\|]
38.RB "[\|" "\-d "\c
39.I dir\c
40\&\|]
41.RB "[\|" \c
42.I prog\c
43.RB "[\|" \c
44.IR core \||\| procID\c
45\&\|]\&\|]
46.ad b
47.SH DESCRIPTION
48The purpose of a debugger such as GDB is to allow you to see what is
49going on ``inside'' another program while it executes\(em\&or what another
50program was doing at the moment it crashed.
51
52GDB can do four main kinds of things (plus other things in support of
53these) to help you catch bugs in the act:
54
55.TP
56\ \ \ \(bu
57Start your program, specifying anything that might affect its behavior.
58
59.TP
60\ \ \ \(bu
61Make your program stop on specified conditions.
62
63.TP
64\ \ \ \(bu
65Examine what has happened, when your program has stopped.
66
67.TP
68\ \ \ \(bu
69Change things in your program, so you can experiment with correcting the
70effects of one bug and go on to learn about another.
71.PP
72
73You can use GDB to debug programs written in C, C++, and Modula-2.
74Fortran support will be added when a GNU Fortran compiler is ready.
75
76GDB is invoked with the shell command \c
77.B gdb\c
78\&. Once started, it reads
79commands from the terminal until you tell it to exit with the GDB
80command \c
81.B quit\c
82\&. You can get online help from \c
83.B gdb\c
84\& itself
85by using the command \c
86.B help\c
87\&.
88
89You can run \c
90.B gdb\c
91\& with no arguments or options; but the most
92usual way to start GDB is with one argument or two, specifying an
93executable program as the argument:
94.sp
95.br
96gdb\ program
97.br
98.sp
99
100You can also start with both an executable program and a core file specified:
101.sp
102.br
103gdb\ program\ core
104.br
105.sp
106
107You can, instead, specify a process ID as a second argument, if you want
108to debug a running process:
109.sp
110.br
111gdb\ program\ 1234
112.br
113.sp
114
115would attach GDB to process \c
116.B 1234\c
117\& (unless you also have a file
118named `\|\c
119.B 1234\c
120\&\|'; GDB does check for a core file first).
121
122Here are some of the most frequently needed GDB commands:
123.TP
124.B break \fR[\|\fIfile\fB:\fR\|]\fIfunction
125\&
126Set a breakpoint at \c
127.I function\c
128\& (in \c
129.I file\c
130\&).
131.TP
132.B run \fR[\|\fIarglist\fR\|]
133Start your program (with \c
134.I arglist\c
135\&, if specified).
136.TP
137.B bt
138Backtrace: display the program stack.
139.TP
140.BI print " expr"\c
141\&
142Display the value of an expression.
143.TP
144.B c
145Continue running your program (after stopping, e.g. at a breakpoint).
146.TP
147.B next
148Execute next program line (after stopping); step \c
149.I over\c
150\& any
151function calls in the line.
152.TP
153.B step
154Execute next program line (after stopping); step \c
155.I into\c
156\& any
157function calls in the line.
158.TP
159.B help \fR[\|\fIname\fR\|]
160Show information about GDB command \c
161.I name\c
162\&, or general information
163about using GDB.
164.TP
165.B quit
166Exit from GDB.
167.PP
168For full details on GDB, see \c
169.I
170Using GDB: A Guide to the GNU Source-Level Debugger\c
171\&, by Richard M. Stallman and Roland H. Pesch. The same text is available online
172as the \c
173.B gdb\c
174\& entry in the \c
175.B info\c
176\& program.
177.SH OPTIONS
178Any arguments other than options specify an executable
179file and core file (or process ID); that is, the first argument
180encountered with no
181associated option flag is equivalent to a `\|\c
182.B \-se\c
183\&\|' option, and the
184second, if any, is equivalent to a `\|\c
185.B \-c\c
186\&\|' option if it's the name of a file. Many options have
187both long and short forms; both are shown here. The long forms are also
188recognized if you truncate them, so long as enough of the option is
189present to be unambiguous. (If you prefer, you can flag option
190arguments with `\|\c
191.B +\c
192\&\|' rather than `\|\c
193.B \-\c
194\&\|', though we illustrate the
195more usual convention.)
196
197All the options and command line arguments you give are processed
198in sequential order. The order makes a difference when the
199`\|\c
200.B \-x\c
201\&\|' option is used.
202
203.TP
204.B \-help
205.TP
206.B \-h
207List all options, with brief explanations.
208
209.TP
210.BI "\-symbols=" "file"\c
211.TP
212.BI "\-s " "file"\c
213\&
214Read symbol table from file \c
215.I file\c
216\&.
217
218.TP
219.B \-write
220Enable writing into executable and core files.
221
222.TP
223.BI "\-exec=" "file"\c
224.TP
225.BI "\-e " "file"\c
226\&
227Use file \c
228.I file\c
229\& as the executable file to execute when
230appropriate, and for examining pure data in conjunction with a core
231dump.
232
233.TP
234.BI "\-se=" "file"\c
235\&
236Read symbol table from file \c
237.I file\c
238\& and use it as the executable
239file.
240
241.TP
242.BI "\-core=" "file"\c
243.TP
244.BI "\-c " "file"\c
245\&
246Use file \c
247.I file\c
248\& as a core dump to examine.
249
250.TP
251.BI "\-command=" "file"\c
252.TP
253.BI "\-x " "file"\c
254\&
255Execute GDB commands from file \c
256.I file\c
257\&.
258
259.TP
260.BI "\-directory=" "directory"\c
261.TP
262.BI "\-d " "directory"\c
263\&
264Add \c
265.I directory\c
266\& to the path to search for source files.
267.PP
268
269.TP
270.B \-nx
271.TP
272.B \-n
273Do not execute commands from any `\|\c
274.B .gdbinit\c
275\&\|' initialization files.
276Normally, the commands in these files are executed after all the
277command options and arguments have been processed.
278
279
280.TP
281.B \-quiet
282.TP
283.B \-q
284``Quiet''. Do not print the introductory and copyright messages. These
285messages are also suppressed in batch mode.
286
287.TP
288.B \-batch
289Run in batch mode. Exit with status \c
290.B 0\c
291\& after processing all the command
292files specified with `\|\c
293.B \-x\c
294\&\|' (and `\|\c
295.B .gdbinit\c
296\&\|', if not inhibited).
297Exit with nonzero status if an error occurs in executing the GDB
298commands in the command files.
299
300Batch mode may be useful for running GDB as a filter, for example to
301download and run a program on another computer; in order to make this
302more useful, the message
303.sp
304.br
305Program\ exited\ normally.
306.br
307.sp
308
309(which is ordinarily issued whenever a program running under GDB control
310terminates) is not issued when running in batch mode.
311
312.TP
313.BI "\-cd=" "directory"\c
314\&
315Run GDB using \c
316.I directory\c
317\& as its working directory,
318instead of the current directory.
319
320.TP
321.B \-fullname
322.TP
323.B \-f
324Emacs sets this option when it runs GDB as a subprocess. It tells GDB
325to output the full file name and line number in a standard,
326recognizable fashion each time a stack frame is displayed (which
327includes each time the program stops). This recognizable format looks
328like two `\|\c
329.B \032\c
330\&\|' characters, followed by the file name, line number
331and character position separated by colons, and a newline. The
332Emacs-to-GDB interface program uses the two `\|\c
333.B \032\c
334\&\|' characters as
335a signal to display the source code for the frame.
336
337.TP
338.BI "\-b " "bps"\c
339\&
340Set the line speed (baud rate or bits per second) of any serial
341interface used by GDB for remote debugging.
342
343.TP
344.BI "\-tty=" "device"\c
345\&
346Run using \c
347.I device\c
348\& for your program's standard input and output.
349.PP
350
351.SH "SEE ALSO"
352.RB "`\|" gdb "\|'"
353entry in
354.B info\c
355\&;
356.I
357Using GDB: A Guide to the GNU Source-Level Debugger\c
358, Richard M. Stallman and Roland H. Pesch, July 1991.
359.SH COPYING
360Copyright (c) 1991 Free Software Foundation, Inc.
361.PP
362Permission is granted to make and distribute verbatim copies of
363this manual provided the copyright notice and this permission notice
364are preserved on all copies.
365.PP
366Permission is granted to copy and distribute modified versions of this
367manual under the conditions for verbatim copying, provided that the
368entire resulting derived work is distributed under the terms of a
369permission notice identical to this one.
370.PP
371Permission is granted to copy and distribute translations of this
372manual into another language, under the above conditions for modified
373versions, except that this permission notice may be included in
374translations approved by the Free Software Foundation instead of in
375the original English.
This page took 0.077848 seconds and 4 git commands to generate.