* stabsread.c (read_member_functions): Skip member functions which
[deliverable/binutils-gdb.git] / gdb / README
CommitLineData
34f47bc4 1 README for gdb-5.1 release
5b582da3 2 Updated 11 November 2001 by Andrew Cagney
c906108c
SS
3
4This is GDB, the GNU source-level debugger.
5A summary of new features is in the file `NEWS'.
6
34f47bc4 7See the GDB home page at http://www.gnu.org/software/gdb/ for up to
7a292a7a 8date release information, mailing list links and archives, etc.
c906108c
SS
9
10
11Unpacking and Installation -- quick overview
12==========================
13
aba7b4b6 14 In this release, the GDB debugger sources, the generic GNU include
c906108c
SS
15files, the BFD ("binary file description") library, the readline
16library, and other libraries all have directories of their own
34f47bc4 17underneath the gdb-5.1 directory. The idea is that a variety of GNU
c906108c
SS
18tools can share a common copy of these things. Be aware of variation
19over time--for example don't try to build gdb with a copy of bfd from
34f47bc4
AC
20a release other than the gdb release (such as a binutils release),
21especially if the releases are more than a few weeks apart.
c906108c
SS
22Configuration scripts and makefiles exist to cruise up and down this
23directory tree and automatically build all the pieces in the right
24order.
25
34f47bc4
AC
26 When you unpack the gdb-5.1.tar.gz file, you'll find a directory
27called `gdb-5.1', which contains:
c906108c 28
34f47bc4
AC
29 COPYING config.sub intl missing opcodes
30 COPYING.LIB configure libiberty mkinstalldirs readline
31 Makefile.in configure.in libtool.m4 mmalloc sim
32 README djunpack.bat ltcf-c.sh move-if-change symlink-tree
33 bfd etc ltcf-cxx.sh mpw-README texinfo
34 config gdb ltcf-gcj.sh mpw-build.in utils
35 config-ml.in gettext.m4 ltconfig mpw-config.in ylwrap
36 config.guess include ltmain.sh mpw-configure
37 config.if install-sh md5.sum mpw-install
c906108c 38
bec71058 39You can build GDB right in the source directory:
c906108c 40
34f47bc4
AC
41 cd gdb-5.1
42 ./configure
43 make
44 cp gdb/gdb /usr/local/bin/gdb (or wherever you want)
c906108c 45
bec71058
FN
46However, we recommend that an empty directory be used instead.
47This way you do not clutter your source tree with binary files
48and will be able to create different builds with different
49configuration options.
50
51You can build GDB in any empty build directory:
52
34f47bc4
AC
53 mkdir build
54 cd build
55 <full path to your sources>/gdb-5.1/configure
56 make
57 cp gdb/gdb /usr/local/bin/gdb (or wherever you want)
bec71058 58
c63ce875 59(Building GDB with DJGPP tools for MS-DOS/MS-Windows is slightly
34f47bc4 60different; see the file gdb-5.1/gdb/config/djgpp/README for details.)
c63ce875 61
aba7b4b6
AC
62 This will configure and build all the libraries as well as GDB. If
63`configure' can't determine your system type, specify one as its
64argument, e.g., `./configure sun4' or `./configure decstation'.
c906108c 65
aba7b4b6
AC
66 If you get compiler errors during this stage, see the `Reporting
67Bugs' section below; there are a few known problems.
c906108c 68
34f47bc4
AC
69 GDB requires an ISO C (ANSI C) compiler. If you do not have an ISO
70C compiler for your system, you may be able to download and install
71the GNU CC compiler. It is available via anonymous FTP from the
72directory `ftp://ftp.gnu.org/pub/gnu/gcc'.
c906108c 73
aba7b4b6
AC
74 GDB can be used as a cross-debugger, running on a machine of one
75type while debugging a program running on a machine of another type.
76See below.
c906108c
SS
77
78
79More Documentation
80******************
81
82 All the documentation for GDB comes as part of the machine-readable
aba7b4b6
AC
83distribution. The documentation is written in Texinfo format, which
84is a documentation system that uses a single source file to produce
85both on-line information and a printed manual. You can use one of the
86Info formatting commands to create the on-line version of the
87documentation and TeX (or `texi2roff') to typeset the printed version.
88
89 GDB includes an already formatted copy of the on-line Info version
90of this manual in the `gdb/doc' subdirectory. The main Info file is
34f47bc4 91`gdb-5.1/gdb/doc/gdb.info', and it refers to subordinate files
aba7b4b6
AC
92matching `gdb.info*' in the same directory. If necessary, you can
93print out these files, or read them with any editor; but they are
94easier to read using the `info' subsystem in GNU Emacs or the
95standalone `info' program, available as part of the GNU Texinfo
96distribution.
c906108c
SS
97
98 If you want to format these Info files yourself, you need one of the
99Info formatting programs, such as `texinfo-format-buffer' or
100`makeinfo'.
101
102 If you have `makeinfo' installed, and are in the top level GDB
34f47bc4 103source directory (`gdb-5.1', in the case of version 5.1), you can make
c906108c
SS
104the Info file by typing:
105
34f47bc4
AC
106 cd gdb/doc
107 make info
c906108c
SS
108
109 If you want to typeset and print copies of this manual, you need
110TeX, a program to print its DVI output files, and `texinfo.tex', the
111Texinfo definitions file. This file is included in the GDB
34f47bc4 112distribution, in the directory `gdb-5.1/texinfo'.
c906108c
SS
113
114 TeX is a typesetting program; it does not print files directly, but
115produces output files called DVI files. To print a typeset document,
116you need a program to print DVI files. If your system has TeX
117installed, chances are it has such a program. The precise command to
118use depends on your system; `lpr -d' is common; another (for PostScript
119devices) is `dvips'. The DVI print command may require a file name
120without any extension or a `.dvi' extension.
121
122 TeX also requires a macro definitions file called `texinfo.tex'.
123This file tells TeX how to typeset a document written in Texinfo
124format. On its own, TeX cannot read, much less typeset a Texinfo file.
125 `texinfo.tex' is distributed with GDB and is located in the
34f47bc4 126`gdb-5.1/texinfo' directory.
c906108c
SS
127
128 If you have TeX and a DVI printer program installed, you can typeset
129and print this manual. First switch to the the `gdb' subdirectory of
34f47bc4 130the main source directory (for example, to `gdb-5.1/gdb') and then type:
c906108c 131
34f47bc4 132 make doc/gdb.dvi
966beb0f
EZ
133
134 If you prefer to have the manual in PDF format, type this from the
135`gdb/doc' subdirectory of the main source directory:
136
34f47bc4 137 make gdb.pdf
966beb0f
EZ
138
139For this to work, you will need the PDFTeX package to be installed.
c906108c
SS
140
141
142Installing GDB
143**************
144
145 GDB comes with a `configure' script that automates the process of
146preparing GDB for installation; you can then use `make' to build the
147`gdb' program.
148
149 The GDB distribution includes all the source code you need for GDB in
150a single directory, whose name is usually composed by appending the
151version number to `gdb'.
152
34f47bc4 153 For example, the GDB version 5.1 distribution is in the `gdb-5.1'
c906108c
SS
154directory. That directory contains:
155
34f47bc4 156`gdb-5.1/{COPYING,COPYING.LIB}'
c906108c
SS
157 Standard GNU license files. Please read them.
158
34f47bc4 159`gdb-5.1/bfd'
c906108c
SS
160 source for the Binary File Descriptor library
161
34f47bc4 162`gdb-5.1/config*'
c906108c
SS
163 script for configuring GDB, along with other support files
164
34f47bc4 165`gdb-5.1/gdb'
c906108c
SS
166 the source specific to GDB itself
167
34f47bc4 168`gdb-5.1/include'
c906108c
SS
169 GNU include files
170
34f47bc4 171`gdb-5.1/libiberty'
c906108c
SS
172 source for the `-liberty' free software library
173
34f47bc4 174`gdb-5.1/mmalloc'
c906108c
SS
175 source for the GNU memory-mapped malloc package
176
34f47bc4 177`gdb-5.1/opcodes'
c906108c
SS
178 source for the library of opcode tables and disassemblers
179
34f47bc4 180`gdb-5.1/readline'
c906108c 181 source for the GNU command-line interface
7a292a7a
SS
182 NOTE: The readline library is compiled for use by GDB, but will
183 not be installed on your system when "make install" is issued.
c906108c 184
34f47bc4 185`gdb-5.1/sim'
c906108c
SS
186 source for some simulators (ARM, D10V, SPARC, M32R, MIPS, PPC, V850, etc)
187
34f47bc4 188`gdb-5.1/intl'
c906108c
SS
189 source for the GNU gettext library, for internationalization.
190 This is slightly modified from the standalone gettext
191 distribution you can get from GNU.
192
34f47bc4 193`gdb-5.1/texinfo'
c906108c
SS
194 The `texinfo.tex' file, which you need in order to make a printed
195 manual using TeX.
196
34f47bc4 197`gdb-5.1/etc'
c906108c
SS
198 Coding standards, useful files for editing GDB, and other
199 miscellanea.
200
34f47bc4 201`gdb-5.1/utils'
c906108c
SS
202 A grab bag of random utilities.
203
c63ce875
EZ
204 Note: the following instructions are for building GDB on Unix or
205Unix-like systems. Instructions for building with DJGPP for
206MS-DOS/MS-Windows are in the file gdb/config/djgpp/README.
c906108c
SS
207
208 The simplest way to configure and build GDB is to run `configure'
209from the `gdb-VERSION-NUMBER' source directory, which in this example
34f47bc4 210is the `gdb-5.1' directory.
c906108c
SS
211
212 First switch to the `gdb-VERSION-NUMBER' source directory if you are
213not already in it; then run `configure'.
214
215 For example:
216
34f47bc4
AC
217 cd gdb-5.1
218 ./configure
219 make
c906108c
SS
220
221 Running `configure' followed by `make' builds the `bfd',
222`readline', `mmalloc', and `libiberty' libraries, then `gdb' itself.
223The configured source files, and the binaries, are left in the
224corresponding source directories.
225
226 `configure' is a Bourne-shell (`/bin/sh') script; if your system
227does not recognize this automatically when you run a different shell,
228you may need to run `sh' on it explicitly:
229
34f47bc4 230 sh configure
c906108c
SS
231
232 If you run `configure' from a directory that contains source
34f47bc4
AC
233directories for multiple libraries or programs, such as the `gdb-5.1'
234source directory for version 5.1, `configure' creates configuration
c906108c
SS
235files for every directory level underneath (unless you tell it not to,
236with the `--norecursion' option).
237
238 You can run the `configure' script from any of the subordinate
239directories in the GDB distribution, if you only want to configure that
240subdirectory; but be sure to specify a path to it.
241
34f47bc4 242 For example, with version 5.1, type the following to configure only
c906108c
SS
243the `bfd' subdirectory:
244
34f47bc4
AC
245 cd gdb-5.1/bfd
246 ../configure
c906108c
SS
247
248 You can install `gdb' anywhere; it has no hardwired paths. However,
249you should make sure that the shell on your path (named by the `SHELL'
250environment variable) is publicly readable. Remember that GDB uses the
251shell to start your program--some systems refuse to let GDB debug child
252processes whose programs are not readable.
253
254
255Compiling GDB in another directory
256==================================
257
258 If you want to run GDB versions for several host or target machines,
259you need a different `gdb' compiled for each combination of host and
260target. `configure' is designed to make this easy by allowing you to
261generate each configuration in a separate subdirectory, rather than in
262the source directory. If your `make' program handles the `VPATH'
263feature correctly (GNU `make' and SunOS 'make' are two that should),
264running `make' in each of these directories builds the `gdb' program
265specified there.
266
267 To build `gdb' in a separate directory, run `configure' with the
268`--srcdir' option to specify where to find the source. (You also need
269to specify a path to find `configure' itself from your working
270directory. If the path to `configure' would be the same as the
271argument to `--srcdir', you can leave out the `--srcdir' option; it
272will be assumed.)
273
34f47bc4 274 For example, with version 5.1, you can build GDB in a separate
c906108c
SS
275directory for a Sun 4 like this:
276
34f47bc4 277 cd gdb-5.1
c906108c
SS
278 mkdir ../gdb-sun4
279 cd ../gdb-sun4
34f47bc4 280 ../gdb-5.1/configure
c906108c
SS
281 make
282
283 When `configure' builds a configuration using a remote source
284directory, it creates a tree for the binaries with the same structure
285(and using the same names) as the tree under the source directory. In
286the example, you'd find the Sun 4 library `libiberty.a' in the
287directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.
288
289 One popular reason to build several GDB configurations in separate
290directories is to configure GDB for cross-compiling (where GDB runs on
291one machine--the host--while debugging programs that run on another
292machine--the target). You specify a cross-debugging target by giving
293the `--target=TARGET' option to `configure'.
294
295 When you run `make' to build a program or library, you must run it
296in a configured directory--whatever directory you were in when you
297called `configure' (or one of its subdirectories).
298
299 The `Makefile' that `configure' generates in each source directory
300also runs recursively. If you type `make' in a source directory such
34f47bc4
AC
301as `gdb-5.1' (or in a separate configured directory configured with
302`--srcdir=PATH/gdb-5.1'), you will build all the required libraries,
c906108c
SS
303and then build GDB.
304
305 When you have multiple hosts or targets configured in separate
306directories, you can run `make' on them in parallel (for example, if
307they are NFS-mounted on each of the hosts); they will not interfere
308with each other.
309
310
311Specifying names for hosts and targets
312======================================
313
314 The specifications used for hosts and targets in the `configure'
315script are based on a three-part naming scheme, but some short
316predefined aliases are also supported. The full naming scheme encodes
317three pieces of information in the following pattern:
318
319 ARCHITECTURE-VENDOR-OS
320
321 For example, you can use the alias `sun4' as a HOST argument or in a
322`--target=TARGET' option. The equivalent full name is
323`sparc-sun-sunos4'.
324
325 The `configure' script accompanying GDB does not provide any query
326facility to list all supported host and target names or aliases.
327`configure' calls the Bourne shell script `config.sub' to map
328abbreviations to full names; you can read the script, if you wish, or
329you can use it to test your guesses on abbreviations--for example:
330
331 % sh config.sub sun4
332 sparc-sun-sunos4.1.1
333 % sh config.sub sun3
334 m68k-sun-sunos4.1.1
335 % sh config.sub decstation
336 mips-dec-ultrix4.2
337 % sh config.sub hp300bsd
338 m68k-hp-bsd
339 % sh config.sub i386v
340 i386-pc-sysv
341 % sh config.sub i786v
342 Invalid configuration `i786v': machine `i786v' not recognized
343
344`config.sub' is also distributed in the GDB source directory
34f47bc4 345(`gdb-5.1', for version 5.1).
c906108c
SS
346
347
348`configure' options
349===================
350
351 Here is a summary of the `configure' options and arguments that are
352most often useful for building GDB. `configure' also has several other
353options not listed here. *note : (configure.info)What Configure Does,
354for a full explanation of `configure'.
355
356 configure [--help]
357 [--prefix=DIR]
358 [--srcdir=PATH]
359 [--norecursion] [--rm]
360 [--enable-build-warnings]
361 [--target=TARGET]
362 [--host=HOST]
363 [HOST]
364
365You may introduce options with a single `-' rather than `--' if you
366prefer; but you may abbreviate option names if you use `--'.
367
368`--help'
369 Display a quick summary of how to invoke `configure'.
370
371`-prefix=DIR'
372 Configure the source to install programs and files under directory
373 `DIR'.
374
375`--srcdir=PATH'
376 *Warning: using this option requires GNU `make', or another `make'
377 that compatibly implements the `VPATH' feature.*
378 Use this option to make configurations in directories separate
379 from the GDB source directories. Among other things, you can use
380 this to build (or maintain) several configurations simultaneously,
381 in separate directories. `configure' writes configuration
382 specific files in the current directory, but arranges for them to
383 use the source in the directory PATH. `configure' will create
384 directories under the working directory in parallel to the source
385 directories below PATH.
386
387`--norecursion'
388 Configure only the directory level where `configure' is executed;
389 do not propagate configuration to subdirectories.
390
391`--rm'
392 Remove the configuration that the other arguments specify.
393
394`--enable-build-warnings'
395 When building the GDB sources, ask the compiler to warn about any
396 code which looks even vaguely suspicious. You should only using
397 this feature if you're compiling with GNU CC. It passes the
398 following flags:
aba7b4b6
AC
399 -Wimplicit
400 -Wreturn-type
401 -Wcomment
402 -Wtrigraphs
403 -Wformat
404 -Wparentheses
c906108c 405 -Wpointer-arith
c906108c
SS
406
407`--target=TARGET'
408 Configure GDB for cross-debugging programs running on the specified
409 TARGET. Without this option, GDB is configured to debug programs
410 that run on the same machine (HOST) as GDB itself.
411
412 There is no convenient way to generate a list of all available
413 targets.
414
415`--host=HOST'
416 Configure GDB to run on the specified HOST.
417
418 There is no convenient way to generate a list of all available
419 hosts.
420
421`HOST ...'
422 Same as `--host=HOST'. If you omit this, GDB will guess; it's
423 quite accurate.
424
425`configure' accepts other options, for compatibility with configuring
426other GNU tools recursively; but these are the only options that affect
427GDB or its supporting libraries.
428
429
de6ed73f
AC
430Host/target specific installation notes
431=======================================
c906108c 432
4bb5d567 433hppa2.0-hp-hpux10.20
c906108c 434
f87ece4d
AC
435Due to a problem (conflicting types) with libiberty/regex.c, GDB 5.1
436does not build on HP/UX 10.20 when using the HP supplied compiler.
4bb5d567 437
f87ece4d
AC
438Due to bit rot, GDB 5.1 does not work on HP/UX 10.20 when built with
439GCC.
4bb5d567
AC
440
441
442hppa2.0w-hp-hpux11.00
443
f87ece4d
AC
444Due to a problem with ltconfig and long argument lines, GDB 5.1 does
445not configure on HP/UX 11.00.
c906108c
SS
446
447
1396e6f1
AC
448alpha-dec-osf5.1
449
f87ece4d
AC
450GDB 5.1 has a number of problems on this platform (Ref PR gdb/237). A
451GDB 5.1 built with ``CC="cc -DUSE_LDR_ROUTINES"'' is reported to work
452much better.
453
454
455alpha-dec-osf4.0e
456
457GDB 5.1 is known to have problems on this platform (encounters an
458internal error in the symbol table reader).
5b582da3
AC
459
460
461sparcv9-sun-solaris2.8
462
f87ece4d
AC
463There are known problems with building GDB 5.1 using GCC 3.0.x for the
46464 bit SPARC target (bad code gen). You could try a development
465version of GCC.
5b582da3
AC
466
467
468i586-sco-sysv5uw7.1.1
469
f87ece4d
AC
470There are known problems with GDB 5.1's thread support on this
471platform. Non-threaded programs should work.
472
473
474*-*-*
475
476GDB 5.1 assumes that the host C compiler implemends alloca(). GCC is
477one such compiler. This problem should be fixed on the trunk.
1396e6f1
AC
478
479
c906108c
SS
480Remote debugging
481=================
482
aba7b4b6
AC
483 The files m68k-stub.c, i386-stub.c, and sparc-stub.c are examples
484of remote stubs to be used with remote.c. They are designed to run
485standalone on an m68k, i386, or SPARC cpu and communicate properly
486with the remote.c stub over a serial line.
c906108c 487
aba7b4b6 488 The directory gdb/gdbserver/ contains `gdbserver', a program that
c906108c 489allows remote debugging for Unix applications. gdbserver is only
aba7b4b6
AC
490supported for some native configurations, including Sun 3, Sun 4, and
491Linux.
c906108c 492
aba7b4b6 493 There are a number of remote interfaces for talking to existing ROM
c906108c
SS
494monitors and other hardware:
495
496 remote-adapt.c AMD 29000 "Adapt"
497 remote-array.c Array Tech RAID controller
498 remote-bug.c Motorola BUG monitor
c906108c
SS
499 remote-e7000.c Hitachi E7000 ICE
500 remote-eb.c AMD 29000 "EBMON"
501 remote-es.c Ericsson 1800 monitor
502 remote-est.c EST emulator
503 remote-hms.c Hitachi Micro Systems H8/300 monitor
504 remote-mips.c MIPS remote debugging protocol
505 remote-mm.c AMD 29000 "minimon"
506 remote-nindy.c Intel 960 "Nindy"
507 remote-nrom.c NetROM ROM emulator
508 remote-os9k.c PC running OS/9000
509 remote-rdi.c ARM with Angel monitor
510 remote-rdp.c ARM with Demon monitor
511 remote-sds.c PowerPC SDS monitor
512 remote-sim.c Generalized simulator protocol
513 remote-st.c Tandem ST-2000 monitor
514 remote-udi.c AMD 29000 using the AMD "Universal Debug Interface"
515 remote-vx.c VxWorks realtime kernel
516
aba7b4b6
AC
517 Remote-vx.c and the vx-share subdirectory contain a remote
518interface for the VxWorks realtime kernel, which communicates over TCP
519using the Sun RPC library. This would be a useful starting point for
520other remote- via-ethernet back ends.
c906108c 521
aba7b4b6
AC
522 Remote-udi.c and the 29k-share subdirectory contain a remote
523interface for AMD 29000 programs, which uses the AMD "Universal Debug
524Interface". This allows GDB to talk to software simulators,
525emulators, and/or bare hardware boards, via network or serial
526interfaces. Note that GDB only provides an interface that speaks UDI,
527not a complete solution. You will need something on the other end
528that also speaks UDI.
c906108c
SS
529
530
531Reporting Bugs
532===============
533
aba7b4b6
AC
534 The correct address for reporting bugs found in gdb is
535"bug-gdb@gnu.org". Please email all bugs, and all requests for help
536with GDB, to that address. Please include the GDB version number
34f47bc4 537(e.g., gdb-5.1), and how you configured it (e.g., "sun4" or "mach386
c906108c 538host, i586-intel-synopsys target"). Since GDB now supports so many
aba7b4b6
AC
539different configurations, it is important that you be precise about
540this. If at all possible, you should include the actual banner that
541GDB prints when it starts up, or failing that, the actual configure
542command that you used when configuring GDB.
c906108c 543
aba7b4b6
AC
544 For more information on how/whether to report bugs, see the GDB
545Bugs section of the GDB manual (gdb/doc/gdb.texinfo) or the
546gdb/CONTRIBUTE file.
c906108c 547
aba7b4b6
AC
548
549Graphical interface to GDB -- X Windows, MS Windows
550==========================
c906108c 551
aba7b4b6
AC
552 Several graphical interfaces to GDB are available. You should
553check:
c906108c 554
aba7b4b6 555 http://sourceware.cygnus.com/gdb/#gui
c906108c 556
aba7b4b6 557for an up-to-date list.
c906108c 558
aba7b4b6 559 Emacs users will very likely enjoy the Grand Unified Debugger mode;
f032fb6e 560try typing `M-x gdb RET'.
c906108c
SS
561
562
563Writing Code for GDB
564=====================
565
aba7b4b6 566 There is a lot of information about writing code for GDB in the
c906108c
SS
567internals manual, distributed with GDB in gdb/doc/gdbint.texinfo. You
568can read it by hand, print it by using TeX and texinfo, or process it
569into an `info' file for use with Emacs' info mode or the standalone
570`info' program.
571
aba7b4b6 572 If you are pondering writing anything but a short patch, especially
c906108c
SS
573take note of the information about copyrights in the node Submitting
574Patches. It can take quite a while to get all the paperwork done, so
575we encourage you to start that process as soon as you decide you are
576planning to work on something, or at least well ahead of when you
577think you will be ready to submit the patches.
578
579
580GDB Testsuite
581=============
582
aba7b4b6
AC
583 Included with the GDB distribution is a DejaGNU based testsuite
584that can either be used to test your newly built GDB, or for
585regression testing a GDB with local modifications.
586
587 Running the testsuite requires the prior installation of DejaGNU,
588which is generally available via ftp. The directory
589ftp://sourceware.cygnus.com/pub/dejagnu/ will contain a recent
590snapshot. Once DejaGNU is installed, you can run the tests in one of
591the following ways:
c906108c 592
34f47bc4 593 (1) cd gdb-5.1
aba7b4b6
AC
594 make check-gdb
595
596or
c906108c 597
34f47bc4 598 (2) cd gdb-5.1/gdb
c906108c
SS
599 make check
600
601or
602
34f47bc4 603 (3) cd gdb-5.1/gdb/testsuite
c906108c
SS
604 make site.exp (builds the site specific file)
605 runtest -tool gdb GDB=../gdb (or GDB=<somepath> as appropriate)
606
aba7b4b6
AC
607The last method gives you slightly more control in case of problems
608with building one or more test executables or if you are using the
609testsuite `standalone', without it being part of the GDB source tree.
c906108c
SS
610
611See the DejaGNU documentation for further details.
612
613\f
614(this is for editing this file with GNU emacs)
615Local Variables:
616mode: text
617End:
This page took 0.143889 seconds and 4 git commands to generate.