]>
Commit | Line | Data |
---|---|---|
5c26072a | 1 | README for gdb-6.3 release |
caac47b8 | 2 | Updated 20, November, 2006 |
c906108c SS |
3 | |
4 | This is GDB, the GNU source-level debugger. | |
c906108c | 5 | |
129188f6 | 6 | A summary of new features is in the file `gdb/NEWS'. |
c906108c | 7 | |
1bfdc549 AC |
8 | Check the GDB home page at http://www.gnu.org/software/gdb/ for up to |
9 | date release information, mailing list links and archives, etc. | |
129188f6 AC |
10 | |
11 | The file `gdb/PROBLEMS' contains information on problems identified | |
12 | late in the release cycle. GDB's bug tracking data base at | |
13 | http://www.gnu.org/software/gdb/bugs/ contains a more complete list of | |
14 | bugs. | |
6b325864 | 15 | |
c906108c SS |
16 | |
17 | Unpacking and Installation -- quick overview | |
18 | ========================== | |
19 | ||
aba7b4b6 | 20 | In this release, the GDB debugger sources, the generic GNU include |
c906108c SS |
21 | files, the BFD ("binary file description") library, the readline |
22 | library, and other libraries all have directories of their own | |
5c26072a | 23 | underneath the gdb-6.3 directory. The idea is that a variety of GNU |
c906108c SS |
24 | tools can share a common copy of these things. Be aware of variation |
25 | over time--for example don't try to build gdb with a copy of bfd from | |
34f47bc4 AC |
26 | a release other than the gdb release (such as a binutils release), |
27 | especially if the releases are more than a few weeks apart. | |
c906108c SS |
28 | Configuration scripts and makefiles exist to cruise up and down this |
29 | directory tree and automatically build all the pieces in the right | |
30 | order. | |
31 | ||
5c26072a AC |
32 | When you unpack the gdb-6.3.tar.gz file, you'll find a directory |
33 | called `gdb-6.3', which contains: | |
c906108c | 34 | |
73fb7068 RS |
35 | COPYING config-ml.in gettext.m4 ltconfig sim |
36 | COPYING.LIB config.guess include ltmain.sh src-release | |
37 | Makefile.def config.sub install-sh md5.sum symlink-tree | |
38 | Makefile.in configure libiberty missing texinfo | |
39 | Makefile.tpl configure.in libtool.m4 mkinstalldirs ylwrap | |
40 | README djunpack.bat ltcf-c.sh move-if-change | |
41 | bfd etc ltcf-cxx.sh opcodes | |
42 | config gdb ltcf-gcj.sh readline | |
c906108c | 43 | |
bec71058 | 44 | You can build GDB right in the source directory: |
c906108c | 45 | |
5c26072a | 46 | cd gdb-6.3 |
34f47bc4 AC |
47 | ./configure |
48 | make | |
49 | cp gdb/gdb /usr/local/bin/gdb (or wherever you want) | |
c906108c | 50 | |
bec71058 FN |
51 | However, we recommend that an empty directory be used instead. |
52 | This way you do not clutter your source tree with binary files | |
53 | and will be able to create different builds with different | |
54 | configuration options. | |
55 | ||
56 | You can build GDB in any empty build directory: | |
57 | ||
34f47bc4 AC |
58 | mkdir build |
59 | cd build | |
5c26072a | 60 | <full path to your sources>/gdb-6.3/configure |
34f47bc4 AC |
61 | make |
62 | cp gdb/gdb /usr/local/bin/gdb (or wherever you want) | |
bec71058 | 63 | |
c63ce875 | 64 | (Building GDB with DJGPP tools for MS-DOS/MS-Windows is slightly |
5c26072a | 65 | different; see the file gdb-6.3/gdb/config/djgpp/README for details.) |
c63ce875 | 66 | |
aba7b4b6 AC |
67 | This will configure and build all the libraries as well as GDB. If |
68 | `configure' can't determine your system type, specify one as its | |
69 | argument, e.g., `./configure sun4' or `./configure decstation'. | |
c906108c | 70 | |
5c26072a | 71 | Make sure that your 'configure' line ends in 'gdb-6.3/configure': |
eaec4d85 | 72 | |
5c26072a AC |
73 | /berman/migchain/source/gdb-6.3/configure # RIGHT |
74 | /berman/migchain/source/gdb-6.3/gdb/configure # WRONG | |
eaec4d85 MC |
75 | |
76 | The gdb package contains several subdirectories, such as 'gdb', | |
77 | 'bfd', and 'readline'. If your 'configure' line ends in | |
5c26072a | 78 | 'gdb-6.3/gdb/configure', then you are configuring only the gdb |
eaec4d85 MC |
79 | subdirectory, not the whole gdb package. This leads to build errors |
80 | such as: | |
81 | ||
82 | make: *** No rule to make target `../bfd/bfd.h', needed by `gdb.o'. Stop. | |
83 | ||
84 | If you get other compiler errors during this stage, see the `Reporting | |
aba7b4b6 | 85 | Bugs' section below; there are a few known problems. |
c906108c | 86 | |
34f47bc4 AC |
87 | GDB requires an ISO C (ANSI C) compiler. If you do not have an ISO |
88 | C compiler for your system, you may be able to download and install | |
89 | the GNU CC compiler. It is available via anonymous FTP from the | |
30b50213 DJ |
90 | directory `ftp://ftp.gnu.org/pub/gnu/gcc'. GDB also requires an ISO |
91 | C standard library. The GDB remote server, gdbserver, builds with some | |
92 | non-ISO standard libraries - e.g. for Windows CE. | |
c906108c | 93 | |
7fa2210b DJ |
94 | GDB uses Expat, an XML parsing library, to implement some target-specific |
95 | features. Expat will be linked in if it is available at build time, or | |
96 | those features will be disabled. The latest version of Expat should be | |
97 | available from `http://expat.sourceforge.net'. | |
98 | ||
aba7b4b6 AC |
99 | GDB can be used as a cross-debugger, running on a machine of one |
100 | type while debugging a program running on a machine of another type. | |
101 | See below. | |
c906108c SS |
102 | |
103 | ||
104 | More Documentation | |
105 | ****************** | |
106 | ||
107 | All the documentation for GDB comes as part of the machine-readable | |
aba7b4b6 AC |
108 | distribution. The documentation is written in Texinfo format, which |
109 | is a documentation system that uses a single source file to produce | |
110 | both on-line information and a printed manual. You can use one of the | |
111 | Info formatting commands to create the on-line version of the | |
112 | documentation and TeX (or `texi2roff') to typeset the printed version. | |
113 | ||
114 | GDB includes an already formatted copy of the on-line Info version | |
115 | of this manual in the `gdb/doc' subdirectory. The main Info file is | |
5c26072a | 116 | `gdb-6.3/gdb/doc/gdb.info', and it refers to subordinate files |
aba7b4b6 AC |
117 | matching `gdb.info*' in the same directory. If necessary, you can |
118 | print out these files, or read them with any editor; but they are | |
119 | easier to read using the `info' subsystem in GNU Emacs or the | |
120 | standalone `info' program, available as part of the GNU Texinfo | |
121 | distribution. | |
c906108c SS |
122 | |
123 | If you want to format these Info files yourself, you need one of the | |
124 | Info formatting programs, such as `texinfo-format-buffer' or | |
125 | `makeinfo'. | |
126 | ||
127 | If you have `makeinfo' installed, and are in the top level GDB | |
5c26072a | 128 | source directory (`gdb-6.3', in the case of version 6.3), you can make |
c906108c SS |
129 | the Info file by typing: |
130 | ||
34f47bc4 AC |
131 | cd gdb/doc |
132 | make info | |
c906108c SS |
133 | |
134 | If you want to typeset and print copies of this manual, you need | |
135 | TeX, a program to print its DVI output files, and `texinfo.tex', the | |
136 | Texinfo definitions file. This file is included in the GDB | |
5c26072a | 137 | distribution, in the directory `gdb-6.3/texinfo'. |
c906108c SS |
138 | |
139 | TeX is a typesetting program; it does not print files directly, but | |
140 | produces output files called DVI files. To print a typeset document, | |
141 | you need a program to print DVI files. If your system has TeX | |
142 | installed, chances are it has such a program. The precise command to | |
143 | use depends on your system; `lpr -d' is common; another (for PostScript | |
144 | devices) is `dvips'. The DVI print command may require a file name | |
145 | without any extension or a `.dvi' extension. | |
146 | ||
147 | TeX also requires a macro definitions file called `texinfo.tex'. | |
148 | This file tells TeX how to typeset a document written in Texinfo | |
149 | format. On its own, TeX cannot read, much less typeset a Texinfo file. | |
150 | `texinfo.tex' is distributed with GDB and is located in the | |
5c26072a | 151 | `gdb-6.3/texinfo' directory. |
c906108c SS |
152 | |
153 | If you have TeX and a DVI printer program installed, you can typeset | |
154 | and print this manual. First switch to the the `gdb' subdirectory of | |
5c26072a | 155 | the main source directory (for example, to `gdb-6.3/gdb') and then type: |
c906108c | 156 | |
34f47bc4 | 157 | make doc/gdb.dvi |
966beb0f EZ |
158 | |
159 | If you prefer to have the manual in PDF format, type this from the | |
160 | `gdb/doc' subdirectory of the main source directory: | |
161 | ||
34f47bc4 | 162 | make gdb.pdf |
966beb0f EZ |
163 | |
164 | For this to work, you will need the PDFTeX package to be installed. | |
c906108c SS |
165 | |
166 | ||
167 | Installing GDB | |
168 | ************** | |
169 | ||
170 | GDB comes with a `configure' script that automates the process of | |
171 | preparing GDB for installation; you can then use `make' to build the | |
172 | `gdb' program. | |
173 | ||
174 | The GDB distribution includes all the source code you need for GDB in | |
175 | a single directory, whose name is usually composed by appending the | |
176 | version number to `gdb'. | |
177 | ||
5c26072a | 178 | For example, the GDB version 6.3 distribution is in the `gdb-6.3' |
c906108c SS |
179 | directory. That directory contains: |
180 | ||
5c26072a | 181 | `gdb-6.3/{COPYING,COPYING.LIB}' |
c906108c SS |
182 | Standard GNU license files. Please read them. |
183 | ||
5c26072a | 184 | `gdb-6.3/bfd' |
c906108c SS |
185 | source for the Binary File Descriptor library |
186 | ||
5c26072a | 187 | `gdb-6.3/config*' |
c906108c SS |
188 | script for configuring GDB, along with other support files |
189 | ||
5c26072a | 190 | `gdb-6.3/gdb' |
c906108c SS |
191 | the source specific to GDB itself |
192 | ||
5c26072a | 193 | `gdb-6.3/include' |
c906108c SS |
194 | GNU include files |
195 | ||
5c26072a | 196 | `gdb-6.3/libiberty' |
c906108c SS |
197 | source for the `-liberty' free software library |
198 | ||
5c26072a | 199 | `gdb-6.3/opcodes' |
c906108c SS |
200 | source for the library of opcode tables and disassemblers |
201 | ||
5c26072a | 202 | `gdb-6.3/readline' |
c906108c | 203 | source for the GNU command-line interface |
7a292a7a SS |
204 | NOTE: The readline library is compiled for use by GDB, but will |
205 | not be installed on your system when "make install" is issued. | |
c906108c | 206 | |
5c26072a | 207 | `gdb-6.3/sim' |
c906108c SS |
208 | source for some simulators (ARM, D10V, SPARC, M32R, MIPS, PPC, V850, etc) |
209 | ||
5c26072a | 210 | `gdb-6.3/texinfo' |
c906108c SS |
211 | The `texinfo.tex' file, which you need in order to make a printed |
212 | manual using TeX. | |
213 | ||
5c26072a | 214 | `gdb-6.3/etc' |
c906108c SS |
215 | Coding standards, useful files for editing GDB, and other |
216 | miscellanea. | |
217 | ||
c63ce875 EZ |
218 | Note: the following instructions are for building GDB on Unix or |
219 | Unix-like systems. Instructions for building with DJGPP for | |
220 | MS-DOS/MS-Windows are in the file gdb/config/djgpp/README. | |
c906108c SS |
221 | |
222 | The simplest way to configure and build GDB is to run `configure' | |
223 | from the `gdb-VERSION-NUMBER' source directory, which in this example | |
5c26072a | 224 | is the `gdb-6.3' directory. |
c906108c SS |
225 | |
226 | First switch to the `gdb-VERSION-NUMBER' source directory if you are | |
227 | not already in it; then run `configure'. | |
228 | ||
229 | For example: | |
230 | ||
5c26072a | 231 | cd gdb-6.3 |
34f47bc4 AC |
232 | ./configure |
233 | make | |
c906108c SS |
234 | |
235 | Running `configure' followed by `make' builds the `bfd', | |
236 | `readline', `mmalloc', and `libiberty' libraries, then `gdb' itself. | |
237 | The configured source files, and the binaries, are left in the | |
238 | corresponding source directories. | |
239 | ||
240 | `configure' is a Bourne-shell (`/bin/sh') script; if your system | |
241 | does not recognize this automatically when you run a different shell, | |
242 | you may need to run `sh' on it explicitly: | |
243 | ||
34f47bc4 | 244 | sh configure |
c906108c SS |
245 | |
246 | If you run `configure' from a directory that contains source | |
5c26072a AC |
247 | directories for multiple libraries or programs, such as the `gdb-6.3' |
248 | source directory for version 6.3, `configure' creates configuration | |
c906108c SS |
249 | files for every directory level underneath (unless you tell it not to, |
250 | with the `--norecursion' option). | |
251 | ||
252 | You can run the `configure' script from any of the subordinate | |
253 | directories in the GDB distribution, if you only want to configure that | |
254 | subdirectory; but be sure to specify a path to it. | |
255 | ||
5c26072a | 256 | For example, with version 6.3, type the following to configure only |
c906108c SS |
257 | the `bfd' subdirectory: |
258 | ||
5c26072a | 259 | cd gdb-6.3/bfd |
34f47bc4 | 260 | ../configure |
c906108c SS |
261 | |
262 | You can install `gdb' anywhere; it has no hardwired paths. However, | |
263 | you should make sure that the shell on your path (named by the `SHELL' | |
264 | environment variable) is publicly readable. Remember that GDB uses the | |
265 | shell to start your program--some systems refuse to let GDB debug child | |
266 | processes whose programs are not readable. | |
267 | ||
268 | ||
269 | Compiling GDB in another directory | |
270 | ================================== | |
271 | ||
272 | If you want to run GDB versions for several host or target machines, | |
273 | you need a different `gdb' compiled for each combination of host and | |
274 | target. `configure' is designed to make this easy by allowing you to | |
275 | generate each configuration in a separate subdirectory, rather than in | |
276 | the source directory. If your `make' program handles the `VPATH' | |
277 | feature correctly (GNU `make' and SunOS 'make' are two that should), | |
278 | running `make' in each of these directories builds the `gdb' program | |
279 | specified there. | |
280 | ||
281 | To build `gdb' in a separate directory, run `configure' with the | |
282 | `--srcdir' option to specify where to find the source. (You also need | |
283 | to specify a path to find `configure' itself from your working | |
284 | directory. If the path to `configure' would be the same as the | |
285 | argument to `--srcdir', you can leave out the `--srcdir' option; it | |
286 | will be assumed.) | |
287 | ||
5c26072a | 288 | For example, with version 6.3, you can build GDB in a separate |
c906108c SS |
289 | directory for a Sun 4 like this: |
290 | ||
5c26072a | 291 | cd gdb-6.3 |
c906108c SS |
292 | mkdir ../gdb-sun4 |
293 | cd ../gdb-sun4 | |
5c26072a | 294 | ../gdb-6.3/configure |
c906108c SS |
295 | make |
296 | ||
297 | When `configure' builds a configuration using a remote source | |
298 | directory, it creates a tree for the binaries with the same structure | |
299 | (and using the same names) as the tree under the source directory. In | |
300 | the example, you'd find the Sun 4 library `libiberty.a' in the | |
301 | directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'. | |
302 | ||
303 | One popular reason to build several GDB configurations in separate | |
304 | directories is to configure GDB for cross-compiling (where GDB runs on | |
305 | one machine--the host--while debugging programs that run on another | |
306 | machine--the target). You specify a cross-debugging target by giving | |
307 | the `--target=TARGET' option to `configure'. | |
308 | ||
309 | When you run `make' to build a program or library, you must run it | |
310 | in a configured directory--whatever directory you were in when you | |
311 | called `configure' (or one of its subdirectories). | |
312 | ||
313 | The `Makefile' that `configure' generates in each source directory | |
314 | also runs recursively. If you type `make' in a source directory such | |
5c26072a AC |
315 | as `gdb-6.3' (or in a separate configured directory configured with |
316 | `--srcdir=PATH/gdb-6.3'), you will build all the required libraries, | |
c906108c SS |
317 | and then build GDB. |
318 | ||
319 | When you have multiple hosts or targets configured in separate | |
320 | directories, you can run `make' on them in parallel (for example, if | |
321 | they are NFS-mounted on each of the hosts); they will not interfere | |
322 | with each other. | |
323 | ||
324 | ||
325 | Specifying names for hosts and targets | |
326 | ====================================== | |
327 | ||
328 | The specifications used for hosts and targets in the `configure' | |
329 | script are based on a three-part naming scheme, but some short | |
330 | predefined aliases are also supported. The full naming scheme encodes | |
331 | three pieces of information in the following pattern: | |
332 | ||
333 | ARCHITECTURE-VENDOR-OS | |
334 | ||
335 | For example, you can use the alias `sun4' as a HOST argument or in a | |
336 | `--target=TARGET' option. The equivalent full name is | |
337 | `sparc-sun-sunos4'. | |
338 | ||
339 | The `configure' script accompanying GDB does not provide any query | |
340 | facility to list all supported host and target names or aliases. | |
341 | `configure' calls the Bourne shell script `config.sub' to map | |
342 | abbreviations to full names; you can read the script, if you wish, or | |
343 | you can use it to test your guesses on abbreviations--for example: | |
344 | ||
345 | % sh config.sub sun4 | |
346 | sparc-sun-sunos4.1.1 | |
347 | % sh config.sub sun3 | |
348 | m68k-sun-sunos4.1.1 | |
349 | % sh config.sub decstation | |
350 | mips-dec-ultrix4.2 | |
351 | % sh config.sub hp300bsd | |
352 | m68k-hp-bsd | |
353 | % sh config.sub i386v | |
354 | i386-pc-sysv | |
355 | % sh config.sub i786v | |
356 | Invalid configuration `i786v': machine `i786v' not recognized | |
357 | ||
358 | `config.sub' is also distributed in the GDB source directory | |
5c26072a | 359 | (`gdb-6.3', for version 6.3). |
c906108c SS |
360 | |
361 | ||
362 | `configure' options | |
363 | =================== | |
364 | ||
365 | Here is a summary of the `configure' options and arguments that are | |
366 | most often useful for building GDB. `configure' also has several other | |
367 | options not listed here. *note : (configure.info)What Configure Does, | |
368 | for a full explanation of `configure'. | |
369 | ||
370 | configure [--help] | |
371 | [--prefix=DIR] | |
372 | [--srcdir=PATH] | |
373 | [--norecursion] [--rm] | |
374 | [--enable-build-warnings] | |
375 | [--target=TARGET] | |
376 | [--host=HOST] | |
377 | [HOST] | |
378 | ||
379 | You may introduce options with a single `-' rather than `--' if you | |
380 | prefer; but you may abbreviate option names if you use `--'. | |
381 | ||
382 | `--help' | |
383 | Display a quick summary of how to invoke `configure'. | |
384 | ||
385 | `-prefix=DIR' | |
386 | Configure the source to install programs and files under directory | |
387 | `DIR'. | |
388 | ||
389 | `--srcdir=PATH' | |
390 | *Warning: using this option requires GNU `make', or another `make' | |
391 | that compatibly implements the `VPATH' feature.* | |
392 | Use this option to make configurations in directories separate | |
393 | from the GDB source directories. Among other things, you can use | |
394 | this to build (or maintain) several configurations simultaneously, | |
395 | in separate directories. `configure' writes configuration | |
396 | specific files in the current directory, but arranges for them to | |
397 | use the source in the directory PATH. `configure' will create | |
398 | directories under the working directory in parallel to the source | |
399 | directories below PATH. | |
400 | ||
70926f63 EZ |
401 | `--host=HOST' |
402 | Configure GDB to run on the specified HOST. | |
403 | ||
404 | There is no convenient way to generate a list of all available | |
405 | hosts. | |
406 | ||
407 | `HOST ...' | |
408 | Same as `--host=HOST'. If you omit this, GDB will guess; it's | |
409 | quite accurate. | |
410 | ||
c906108c SS |
411 | `--norecursion' |
412 | Configure only the directory level where `configure' is executed; | |
413 | do not propagate configuration to subdirectories. | |
414 | ||
415 | `--rm' | |
416 | Remove the configuration that the other arguments specify. | |
417 | ||
418 | `--enable-build-warnings' | |
419 | When building the GDB sources, ask the compiler to warn about any | |
420 | code which looks even vaguely suspicious. You should only using | |
421 | this feature if you're compiling with GNU CC. It passes the | |
422 | following flags: | |
aba7b4b6 AC |
423 | -Wimplicit |
424 | -Wreturn-type | |
425 | -Wcomment | |
426 | -Wtrigraphs | |
427 | -Wformat | |
428 | -Wparentheses | |
c906108c | 429 | -Wpointer-arith |
c906108c | 430 | |
70926f63 EZ |
431 | `--enable-werror' |
432 | Treat compiler warnings as werrors. Use this only with GCC. It | |
433 | adds the -Werror flag to the compiler, which will fail the | |
434 | compilation if the compiler outputs any warning messages. | |
435 | ||
c906108c SS |
436 | `--target=TARGET' |
437 | Configure GDB for cross-debugging programs running on the specified | |
438 | TARGET. Without this option, GDB is configured to debug programs | |
439 | that run on the same machine (HOST) as GDB itself. | |
440 | ||
441 | There is no convenient way to generate a list of all available | |
442 | targets. | |
443 | ||
b14b1491 TT |
444 | `--with-gdb-datadir=PATH' |
445 | Set the GDB-specific data directory. GDB will look here for | |
446 | certain supporting files or scripts. This defaults to the `gdb' | |
447 | subdirectory of `datadir' (which can be set using `--datadir'). | |
448 | ||
70926f63 EZ |
449 | `--with-relocated-sources=DIR' |
450 | Sets up the default source path substitution rule so that | |
451 | directory names recorded in debug information will be | |
452 | automatically adjusted for any directory under DIR. DIR should | |
453 | be a subdirectory of GDB's configured prefix, the one mentioned | |
454 | in the `--prefix' or `--exec-prefix' options to configure. This | |
455 | option is useful if GDB is supposed to be moved to a different | |
456 | place after it is built. | |
457 | ||
458 | `--enable-64-bit-bfd' | |
459 | Enable 64-bit support in BFD on 32-bit hosts. | |
460 | ||
461 | `--disable-gdbmi' | |
462 | Build GDB without the GDB/MI machine interface. | |
463 | ||
464 | `--enable-tui' | |
465 | Build GDB with the text-mode full-screen user interface (TUI). | |
466 | Requires a curses library (ncurses and cursesX are also | |
467 | supported). | |
468 | ||
469 | `--enable-gdbtk' | |
470 | Build GDB with the gdbtk GUI interface. Requires TCL/Tk to be | |
471 | installed. | |
472 | ||
473 | `--with-libunwind' | |
474 | Use the libunwind library for unwinding function call stack. See | |
475 | http://www.nongnu.org/libunwind/index.html fro details. | |
476 | Supported only on some platforms. | |
477 | ||
478 | `--with-curses' | |
479 | Use the curses library instead of the termcap library, for | |
480 | text-mode terminal operations. | |
481 | ||
482 | `--enable-profiling' Enable profiling of GDB itself. Necessary if you | |
483 | want to use the "maint set profile" command for profiling GDB. | |
484 | Requires the functions `monstartup' and `_mcleanup' to be present | |
485 | in the standard C library used to build GDB, and also requires a | |
486 | compiler that supports the `-pg' option. | |
487 | ||
488 | `--with-system-readline' | |
489 | Use the readline library installed on the host, rather than the | |
490 | library supplied as part of GDB tarball. | |
491 | ||
492 | `--with-expat' | |
493 | Build GDB with the libexpat library. (Done by default if | |
494 | libexpat is installed and found at configure time.) This library | |
495 | is used to read XML files supplied with GDB. If it is | |
496 | unavailable, some features, such as remote protocol memory maps, | |
497 | target descriptions, and shared library lists, that are based on | |
498 | XML files, will not be available in GDB. If your host does not | |
499 | have libexpat installed, you can get the latest version from | |
500 | http://expat.sourceforge.net. | |
501 | ||
502 | `--with-python[=PATH]' | |
503 | Build GDB with Python scripting support. (Done by default if | |
504 | libpython is present and found at configure time.) Python makes | |
505 | GDB scripting much more powerful than the restricted CLI | |
506 | scripting language. If your host does not have Python installed, | |
507 | you can find it on http://www.python.org/download/. The oldest | |
508 | version of Python supported by GDB is 2.4. The optional argument | |
509 | PATH says where to find the Python headers and libraries; the | |
510 | configure script will look in PATH/include for headers and in | |
511 | PATH/lib for the libraries. | |
512 | ||
513 | `--without-included-regex' | |
514 | Don't use the regex library included with GDB (as part of the | |
515 | libiberty library). This is the default on hosts with version 2 | |
516 | of the GNU C library. | |
517 | ||
518 | `--with-sysroot=DIR' | |
519 | Use DIR as the default system root directory for libraries whose | |
520 | file names begin with `/lib' or `/usr/lib'. (The value of DIR | |
521 | can be modified at run time by using the "set sysroot" command.) | |
522 | If DIR is under the GDB configured prefix (set with `--prefix' or | |
523 | `--exec-prefix' options), the default system root will be | |
524 | automatically adjusted if and when GDB is moved to a different | |
525 | location. | |
526 | ||
527 | `--with-system-gdbinit=FILE' | |
528 | Configure GDB to automatically load a system-wide init file. | |
529 | FILE should be an absolute file name. If FILE is in a directory | |
530 | under the configured prefix, and GDB is moved to another location | |
531 | after being built, the location of the system-wide init file will | |
532 | be adjusted accordingly. | |
533 | ||
c906108c SS |
534 | `configure' accepts other options, for compatibility with configuring |
535 | other GNU tools recursively; but these are the only options that affect | |
536 | GDB or its supporting libraries. | |
537 | ||
538 | ||
c906108c SS |
539 | Remote debugging |
540 | ================= | |
541 | ||
aba7b4b6 AC |
542 | The files m68k-stub.c, i386-stub.c, and sparc-stub.c are examples |
543 | of remote stubs to be used with remote.c. They are designed to run | |
544 | standalone on an m68k, i386, or SPARC cpu and communicate properly | |
545 | with the remote.c stub over a serial line. | |
c906108c | 546 | |
aba7b4b6 | 547 | The directory gdb/gdbserver/ contains `gdbserver', a program that |
c906108c | 548 | allows remote debugging for Unix applications. gdbserver is only |
aba7b4b6 AC |
549 | supported for some native configurations, including Sun 3, Sun 4, and |
550 | Linux. | |
92726479 JB |
551 | The file gdb/gdbserver/README includes further notes on gdbserver; in |
552 | particular, it explains how to build gdbserver for cross-debugging | |
553 | (where gdbserver runs on the target machine, which is of a different | |
554 | architecture than the host machine running GDB). | |
c906108c | 555 | |
aba7b4b6 | 556 | There are a number of remote interfaces for talking to existing ROM |
c906108c SS |
557 | monitors and other hardware: |
558 | ||
c906108c | 559 | remote-mips.c MIPS remote debugging protocol |
c906108c SS |
560 | remote-sds.c PowerPC SDS monitor |
561 | remote-sim.c Generalized simulator protocol | |
c906108c | 562 | |
c906108c | 563 | |
129188f6 AC |
564 | Reporting Bugs in GDB |
565 | ===================== | |
566 | ||
567 | There are several ways of reporting bugs in GDB. The prefered | |
568 | method is to use the World Wide Web: | |
569 | ||
570 | http://www.gnu.org/software/gdb/bugs/ | |
571 | ||
572 | As an alternative, the bug report can be submitted, via e-mail, to the | |
573 | address "[email protected]". | |
c906108c | 574 | |
129188f6 | 575 | When submitting a bug, please include the GDB version number (e.g., |
5c26072a | 576 | gdb-6.3), and how you configured it (e.g., "sun4" or "mach386 host, |
129188f6 | 577 | i586-intel-synopsys target"). Since GDB now supports so many |
aba7b4b6 AC |
578 | different configurations, it is important that you be precise about |
579 | this. If at all possible, you should include the actual banner that | |
580 | GDB prints when it starts up, or failing that, the actual configure | |
581 | command that you used when configuring GDB. | |
c906108c | 582 | |
129188f6 AC |
583 | For more information on how/whether to report bugs, see the |
584 | Reporting Bugs chapter of the GDB manual (gdb/doc/gdb.texinfo). | |
c906108c | 585 | |
aba7b4b6 AC |
586 | |
587 | Graphical interface to GDB -- X Windows, MS Windows | |
588 | ========================== | |
c906108c | 589 | |
aba7b4b6 AC |
590 | Several graphical interfaces to GDB are available. You should |
591 | check: | |
c906108c | 592 | |
d99ba314 | 593 | http://www.gnu.org/software/gdb/links/ |
c906108c | 594 | |
aba7b4b6 | 595 | for an up-to-date list. |
c906108c | 596 | |
aba7b4b6 | 597 | Emacs users will very likely enjoy the Grand Unified Debugger mode; |
f032fb6e | 598 | try typing `M-x gdb RET'. |
c906108c SS |
599 | |
600 | ||
601 | Writing Code for GDB | |
602 | ===================== | |
603 | ||
aba7b4b6 | 604 | There is a lot of information about writing code for GDB in the |
c906108c SS |
605 | internals manual, distributed with GDB in gdb/doc/gdbint.texinfo. You |
606 | can read it by hand, print it by using TeX and texinfo, or process it | |
607 | into an `info' file for use with Emacs' info mode or the standalone | |
608 | `info' program. | |
609 | ||
aba7b4b6 | 610 | If you are pondering writing anything but a short patch, especially |
c906108c SS |
611 | take note of the information about copyrights in the node Submitting |
612 | Patches. It can take quite a while to get all the paperwork done, so | |
613 | we encourage you to start that process as soon as you decide you are | |
614 | planning to work on something, or at least well ahead of when you | |
615 | think you will be ready to submit the patches. | |
616 | ||
617 | ||
618 | GDB Testsuite | |
619 | ============= | |
620 | ||
aba7b4b6 AC |
621 | Included with the GDB distribution is a DejaGNU based testsuite |
622 | that can either be used to test your newly built GDB, or for | |
623 | regression testing a GDB with local modifications. | |
624 | ||
625 | Running the testsuite requires the prior installation of DejaGNU, | |
626 | which is generally available via ftp. The directory | |
47b95330 AC |
627 | ftp://sources.redhat.com/pub/dejagnu/ will contain a recent snapshot. |
628 | Once DejaGNU is installed, you can run the tests in one of the | |
629 | following ways: | |
c906108c | 630 | |
5c26072a | 631 | (1) cd gdb-6.3 |
aba7b4b6 AC |
632 | make check-gdb |
633 | ||
634 | or | |
c906108c | 635 | |
5c26072a | 636 | (2) cd gdb-6.3/gdb |
c906108c SS |
637 | make check |
638 | ||
639 | or | |
640 | ||
5c26072a | 641 | (3) cd gdb-6.3/gdb/testsuite |
c906108c SS |
642 | make site.exp (builds the site specific file) |
643 | runtest -tool gdb GDB=../gdb (or GDB=<somepath> as appropriate) | |
644 | ||
aba7b4b6 AC |
645 | The last method gives you slightly more control in case of problems |
646 | with building one or more test executables or if you are using the | |
647 | testsuite `standalone', without it being part of the GDB source tree. | |
c906108c SS |
648 | |
649 | See the DejaGNU documentation for further details. | |
650 | ||
651 | \f | |
652 | (this is for editing this file with GNU emacs) | |
653 | Local Variables: | |
654 | mode: text | |
655 | End: |