URL
                    https://opencores.org/ocsvn/or1k/or1k/trunk
                
            Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.3/] [gdb/] [README] - Rev 1765
Compare with Previous | Blame | View Log
README for gdb-5.3 releaseUpdated 5th September, 2002 by Andrew CagneyThis is GDB, the GNU source-level debugger.A summary of new features is in the file `gdb/NEWS'.Check the GDB home page at http://www.gnu.org/software/gdb/ for up todate release information, mailing list links and archives, etc.The file `gdb/PROBLEMS' contains information on problems identifiedlate in the release cycle. GDB's bug tracking data base athttp://www.gnu.org/software/gdb/bugs/ contains a more complete list ofbugs.Unpacking and Installation -- quick overview==========================In this release, the GDB debugger sources, the generic GNU includefiles, the BFD ("binary file description") library, the readlinelibrary, and other libraries all have directories of their ownunderneath the gdb-5.3 directory. The idea is that a variety of GNUtools can share a common copy of these things. Be aware of variationover time--for example don't try to build gdb with a copy of bfd froma release other than the gdb release (such as a binutils release),especially if the releases are more than a few weeks apart.Configuration scripts and makefiles exist to cruise up and down thisdirectory tree and automatically build all the pieces in the rightorder.When you unpack the gdb-5.3.tar.gz file, you'll find a directorycalled `gdb-5.3', which contains:COPYING config.sub intl missing opcodesCOPYING.LIB configure libiberty mkinstalldirs readlineMakefile.in configure.in libtool.m4 mmalloc simREADME djunpack.bat ltcf-c.sh move-if-change symlink-treebfd etc ltcf-cxx.sh mpw-README texinfoconfig gdb ltcf-gcj.sh mpw-build.in utilsconfig-ml.in gettext.m4 ltconfig mpw-config.in ylwrapconfig.guess include ltmain.sh mpw-configureconfig.if install-sh md5.sum mpw-installYou can build GDB right in the source directory:cd gdb-5.3./configuremakecp gdb/gdb /usr/local/bin/gdb (or wherever you want)However, we recommend that an empty directory be used instead.This way you do not clutter your source tree with binary filesand will be able to create different builds with differentconfiguration options.You can build GDB in any empty build directory:mkdir buildcd build<full path to your sources>/gdb-5.3/configuremakecp gdb/gdb /usr/local/bin/gdb (or wherever you want)(Building GDB with DJGPP tools for MS-DOS/MS-Windows is slightlydifferent; see the file gdb-5.3/gdb/config/djgpp/README for details.)This will configure and build all the libraries as well as GDB. If`configure' can't determine your system type, specify one as itsargument, e.g., `./configure sun4' or `./configure decstation'.If you get compiler errors during this stage, see the `ReportingBugs' section below; there are a few known problems.GDB requires an ISO C (ANSI C) compiler. If you do not have an ISOC compiler for your system, you may be able to download and installthe GNU CC compiler. It is available via anonymous FTP from thedirectory `ftp://ftp.gnu.org/pub/gnu/gcc'.GDB can be used as a cross-debugger, running on a machine of onetype while debugging a program running on a machine of another type.See below.More Documentation******************All the documentation for GDB comes as part of the machine-readabledistribution. The documentation is written in Texinfo format, whichis a documentation system that uses a single source file to produceboth on-line information and a printed manual. You can use one of theInfo formatting commands to create the on-line version of thedocumentation and TeX (or `texi2roff') to typeset the printed version.GDB includes an already formatted copy of the on-line Info versionof this manual in the `gdb/doc' subdirectory. The main Info file is`gdb-5.3/gdb/doc/gdb.info', and it refers to subordinate filesmatching `gdb.info*' in the same directory. If necessary, you canprint out these files, or read them with any editor; but they areeasier to read using the `info' subsystem in GNU Emacs or thestandalone `info' program, available as part of the GNU Texinfodistribution.If you want to format these Info files yourself, you need one of theInfo formatting programs, such as `texinfo-format-buffer' or`makeinfo'.If you have `makeinfo' installed, and are in the top level GDBsource directory (`gdb-5.3', in the case of version 5.3), you can makethe Info file by typing:cd gdb/docmake infoIf you want to typeset and print copies of this manual, you needTeX, a program to print its DVI output files, and `texinfo.tex', theTexinfo definitions file. This file is included in the GDBdistribution, in the directory `gdb-5.3/texinfo'.TeX is a typesetting program; it does not print files directly, butproduces output files called DVI files. To print a typeset document,you need a program to print DVI files. If your system has TeXinstalled, chances are it has such a program. The precise command touse depends on your system; `lpr -d' is common; another (for PostScriptdevices) is `dvips'. The DVI print command may require a file namewithout any extension or a `.dvi' extension.TeX also requires a macro definitions file called `texinfo.tex'.This file tells TeX how to typeset a document written in Texinfoformat. On its own, TeX cannot read, much less typeset a Texinfo file.`texinfo.tex' is distributed with GDB and is located in the`gdb-5.3/texinfo' directory.If you have TeX and a DVI printer program installed, you can typesetand print this manual. First switch to the the `gdb' subdirectory ofthe main source directory (for example, to `gdb-5.3/gdb') and then type:make doc/gdb.dviIf you prefer to have the manual in PDF format, type this from the`gdb/doc' subdirectory of the main source directory:make gdb.pdfFor this to work, you will need the PDFTeX package to be installed.Installing GDB**************GDB comes with a `configure' script that automates the process ofpreparing GDB for installation; you can then use `make' to build the`gdb' program.The GDB distribution includes all the source code you need for GDB ina single directory, whose name is usually composed by appending theversion number to `gdb'.For example, the GDB version 5.3 distribution is in the `gdb-5.3'directory. That directory contains:`gdb-5.3/{COPYING,COPYING.LIB}'Standard GNU license files. Please read them.`gdb-5.3/bfd'source for the Binary File Descriptor library`gdb-5.3/config*'script for configuring GDB, along with other support files`gdb-5.3/gdb'the source specific to GDB itself`gdb-5.3/include'GNU include files`gdb-5.3/libiberty'source for the `-liberty' free software library`gdb-5.3/mmalloc'source for the GNU memory-mapped malloc package`gdb-5.3/opcodes'source for the library of opcode tables and disassemblers`gdb-5.3/readline'source for the GNU command-line interfaceNOTE: The readline library is compiled for use by GDB, but willnot be installed on your system when "make install" is issued.`gdb-5.3/sim'source for some simulators (ARM, D10V, SPARC, M32R, MIPS, PPC, V850, etc)`gdb-5.3/intl'source for the GNU gettext library, for internationalization.This is slightly modified from the standalone gettextdistribution you can get from GNU.`gdb-5.3/texinfo'The `texinfo.tex' file, which you need in order to make a printedmanual using TeX.`gdb-5.3/etc'Coding standards, useful files for editing GDB, and othermiscellanea.`gdb-5.3/utils'A grab bag of random utilities.Note: the following instructions are for building GDB on Unix orUnix-like systems. Instructions for building with DJGPP forMS-DOS/MS-Windows are in the file gdb/config/djgpp/README.The simplest way to configure and build GDB is to run `configure'from the `gdb-VERSION-NUMBER' source directory, which in this exampleis the `gdb-5.3' directory.First switch to the `gdb-VERSION-NUMBER' source directory if you arenot already in it; then run `configure'.For example:cd gdb-5.3./configuremakeRunning `configure' followed by `make' builds the `bfd',`readline', `mmalloc', and `libiberty' libraries, then `gdb' itself.The configured source files, and the binaries, are left in thecorresponding source directories.`configure' is a Bourne-shell (`/bin/sh') script; if your systemdoes not recognize this automatically when you run a different shell,you may need to run `sh' on it explicitly:sh configureIf you run `configure' from a directory that contains sourcedirectories for multiple libraries or programs, such as the `gdb-5.3'source directory for version 5.3, `configure' creates configurationfiles for every directory level underneath (unless you tell it not to,with the `--norecursion' option).You can run the `configure' script from any of the subordinatedirectories in the GDB distribution, if you only want to configure thatsubdirectory; but be sure to specify a path to it.For example, with version 5.3, type the following to configure onlythe `bfd' subdirectory:cd gdb-5.3/bfd../configureYou can install `gdb' anywhere; it has no hardwired paths. However,you should make sure that the shell on your path (named by the `SHELL'environment variable) is publicly readable. Remember that GDB uses theshell to start your program--some systems refuse to let GDB debug childprocesses whose programs are not readable.Compiling GDB in another directory==================================If you want to run GDB versions for several host or target machines,you need a different `gdb' compiled for each combination of host andtarget. `configure' is designed to make this easy by allowing you togenerate each configuration in a separate subdirectory, rather than inthe source directory. If your `make' program handles the `VPATH'feature correctly (GNU `make' and SunOS 'make' are two that should),running `make' in each of these directories builds the `gdb' programspecified there.To build `gdb' in a separate directory, run `configure' with the`--srcdir' option to specify where to find the source. (You also needto specify a path to find `configure' itself from your workingdirectory. If the path to `configure' would be the same as theargument to `--srcdir', you can leave out the `--srcdir' option; itwill be assumed.)For example, with version 5.3, you can build GDB in a separatedirectory for a Sun 4 like this:cd gdb-5.3mkdir ../gdb-sun4cd ../gdb-sun4../gdb-5.3/configuremakeWhen `configure' builds a configuration using a remote sourcedirectory, it creates a tree for the binaries with the same structure(and using the same names) as the tree under the source directory. Inthe example, you'd find the Sun 4 library `libiberty.a' in thedirectory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.One popular reason to build several GDB configurations in separatedirectories is to configure GDB for cross-compiling (where GDB runs onone machine--the host--while debugging programs that run on anothermachine--the target). You specify a cross-debugging target by givingthe `--target=TARGET' option to `configure'.When you run `make' to build a program or library, you must run itin a configured directory--whatever directory you were in when youcalled `configure' (or one of its subdirectories).The `Makefile' that `configure' generates in each source directoryalso runs recursively. If you type `make' in a source directory suchas `gdb-5.3' (or in a separate configured directory configured with`--srcdir=PATH/gdb-5.3'), you will build all the required libraries,and then build GDB.When you have multiple hosts or targets configured in separatedirectories, you can run `make' on them in parallel (for example, ifthey are NFS-mounted on each of the hosts); they will not interferewith each other.Specifying names for hosts and targets======================================The specifications used for hosts and targets in the `configure'script are based on a three-part naming scheme, but some shortpredefined aliases are also supported. The full naming scheme encodesthree pieces of information in the following pattern:ARCHITECTURE-VENDOR-OSFor example, you can use the alias `sun4' as a HOST argument or in a`--target=TARGET' option. The equivalent full name is`sparc-sun-sunos4'.The `configure' script accompanying GDB does not provide any queryfacility to list all supported host and target names or aliases.`configure' calls the Bourne shell script `config.sub' to mapabbreviations to full names; you can read the script, if you wish, oryou can use it to test your guesses on abbreviations--for example:% sh config.sub sun4sparc-sun-sunos4.1.1% sh config.sub sun3m68k-sun-sunos4.1.1% sh config.sub decstationmips-dec-ultrix4.2% sh config.sub hp300bsdm68k-hp-bsd% sh config.sub i386vi386-pc-sysv% sh config.sub i786vInvalid configuration `i786v': machine `i786v' not recognized`config.sub' is also distributed in the GDB source directory(`gdb-5.3', for version 5.3).`configure' options===================Here is a summary of the `configure' options and arguments that aremost often useful for building GDB. `configure' also has several otheroptions not listed here. *note : (configure.info)What Configure Does,for a full explanation of `configure'.configure [--help][--prefix=DIR][--srcdir=PATH][--norecursion] [--rm][--enable-build-warnings][--target=TARGET][--host=HOST][HOST]You may introduce options with a single `-' rather than `--' if youprefer; but you may abbreviate option names if you use `--'.`--help'Display a quick summary of how to invoke `configure'.`-prefix=DIR'Configure the source to install programs and files under directory`DIR'.`--srcdir=PATH'*Warning: using this option requires GNU `make', or another `make'that compatibly implements the `VPATH' feature.*Use this option to make configurations in directories separatefrom the GDB source directories. Among other things, you can usethis to build (or maintain) several configurations simultaneously,in separate directories. `configure' writes configurationspecific files in the current directory, but arranges for them touse the source in the directory PATH. `configure' will createdirectories under the working directory in parallel to the sourcedirectories below PATH.`--norecursion'Configure only the directory level where `configure' is executed;do not propagate configuration to subdirectories.`--rm'Remove the configuration that the other arguments specify.`--enable-build-warnings'When building the GDB sources, ask the compiler to warn about anycode which looks even vaguely suspicious. You should only usingthis feature if you're compiling with GNU CC. It passes thefollowing flags:-Wimplicit-Wreturn-type-Wcomment-Wtrigraphs-Wformat-Wparentheses-Wpointer-arith`--target=TARGET'Configure GDB for cross-debugging programs running on the specifiedTARGET. Without this option, GDB is configured to debug programsthat run on the same machine (HOST) as GDB itself.There is no convenient way to generate a list of all availabletargets.`--host=HOST'Configure GDB to run on the specified HOST.There is no convenient way to generate a list of all availablehosts.`HOST ...'Same as `--host=HOST'. If you omit this, GDB will guess; it'squite accurate.`configure' accepts other options, for compatibility with configuringother GNU tools recursively; but these are the only options that affectGDB or its supporting libraries.Remote debugging=================The files m68k-stub.c, i386-stub.c, and sparc-stub.c are examplesof remote stubs to be used with remote.c. They are designed to runstandalone on an m68k, i386, or SPARC cpu and communicate properlywith the remote.c stub over a serial line.The directory gdb/gdbserver/ contains `gdbserver', a program thatallows remote debugging for Unix applications. gdbserver is onlysupported for some native configurations, including Sun 3, Sun 4, andLinux.There are a number of remote interfaces for talking to existing ROMmonitors and other hardware:remote-adapt.c AMD 29000 "Adapt"remote-array.c Array Tech RAID controllerremote-e7000.c Hitachi E7000 ICEremote-eb.c AMD 29000 "EBMON"remote-es.c Ericsson 1800 monitorremote-est.c EST emulatorremote-hms.c Hitachi Micro Systems H8/300 monitorremote-mips.c MIPS remote debugging protocolremote-mm.c AMD 29000 "minimon"remote-nindy.c Intel 960 "Nindy"remote-nrom.c NetROM ROM emulatorremote-os9k.c PC running OS/9000remote-rdi.c ARM with Angel monitorremote-rdp.c ARM with Demon monitorremote-sds.c PowerPC SDS monitorremote-sim.c Generalized simulator protocolremote-st.c Tandem ST-2000 monitorremote-udi.c AMD 29000 using the AMD "Universal Debug Interface"remote-vx.c VxWorks realtime kernelRemote-vx.c and the vx-share subdirectory contain a remoteinterface for the VxWorks realtime kernel, which communicates over TCPusing the Sun RPC library. This would be a useful starting point forother remote- via-ethernet back ends.Remote-udi.c and the 29k-share subdirectory contain a remoteinterface for AMD 29000 programs, which uses the AMD "Universal DebugInterface". This allows GDB to talk to software simulators,emulators, and/or bare hardware boards, via network or serialinterfaces. Note that GDB only provides an interface that speaks UDI,not a complete solution. You will need something on the other endthat also speaks UDI.Reporting Bugs in GDB=====================There are several ways of reporting bugs in GDB. The preferedmethod is to use the World Wide Web:http://www.gnu.org/software/gdb/bugs/As an alternative, the bug report can be submitted, via e-mail, to theaddress "bug-gdb@gnu.org".When submitting a bug, please include the GDB version number (e.g.,gdb-5.3), and how you configured it (e.g., "sun4" or "mach386 host,i586-intel-synopsys target"). Since GDB now supports so manydifferent configurations, it is important that you be precise aboutthis. If at all possible, you should include the actual banner thatGDB prints when it starts up, or failing that, the actual configurecommand that you used when configuring GDB.For more information on how/whether to report bugs, see theReporting Bugs chapter of the GDB manual (gdb/doc/gdb.texinfo).Graphical interface to GDB -- X Windows, MS Windows==========================Several graphical interfaces to GDB are available. You shouldcheck:http://www.gnu.org/software/gdb/gui/for an up-to-date list.Emacs users will very likely enjoy the Grand Unified Debugger mode;try typing `M-x gdb RET'.Writing Code for GDB=====================There is a lot of information about writing code for GDB in theinternals manual, distributed with GDB in gdb/doc/gdbint.texinfo. Youcan read it by hand, print it by using TeX and texinfo, or process itinto an `info' file for use with Emacs' info mode or the standalone`info' program.If you are pondering writing anything but a short patch, especiallytake note of the information about copyrights in the node SubmittingPatches. It can take quite a while to get all the paperwork done, sowe encourage you to start that process as soon as you decide you areplanning to work on something, or at least well ahead of when youthink you will be ready to submit the patches.GDB Testsuite=============Included with the GDB distribution is a DejaGNU based testsuitethat can either be used to test your newly built GDB, or forregression testing a GDB with local modifications.Running the testsuite requires the prior installation of DejaGNU,which is generally available via ftp. The directoryftp://sources.redhat.com/pub/dejagnu/ will contain a recent snapshot.Once DejaGNU is installed, you can run the tests in one of thefollowing ways:(1) cd gdb-5.3make check-gdbor(2) cd gdb-5.3/gdbmake checkor(3) cd gdb-5.3/gdb/testsuitemake site.exp (builds the site specific file)runtest -tool gdb GDB=../gdb (or GDB=<somepath> as appropriate)The last method gives you slightly more control in case of problemswith building one or more test executables or if you are using thetestsuite `standalone', without it being part of the GDB source tree.See the DejaGNU documentation for further details.(this is for editing this file with GNU emacs)Local Variables:mode: textEnd:
