mooigraph 725f3f2b6f added bison manual 3 år sedan
..
COPYING 725f3f2b6f added bison manual 3 år sedan
ChangeLog 725f3f2b6f added bison manual 3 år sedan
Makefile 725f3f2b6f added bison manual 3 år sedan
README 725f3f2b6f added bison manual 3 år sedan
TAGS 725f3f2b6f added bison manual 3 år sedan
blockframe.c 725f3f2b6f added bison manual 3 år sedan
breakpoint.c 725f3f2b6f added bison manual 3 år sedan
command.c 725f3f2b6f added bison manual 3 år sedan
command.h 725f3f2b6f added bison manual 3 år sedan
core.c 725f3f2b6f added bison manual 3 år sedan
dbxread.c 725f3f2b6f added bison manual 3 år sedan
defs.h 725f3f2b6f added bison manual 3 år sedan
environ.c 725f3f2b6f added bison manual 3 år sedan
environ.h 725f3f2b6f added bison manual 3 år sedan
eval.c 725f3f2b6f added bison manual 3 år sedan
expprint.c 725f3f2b6f added bison manual 3 år sedan
expread.y 725f3f2b6f added bison manual 3 år sedan
expression.h 725f3f2b6f added bison manual 3 år sedan
findvar.c 725f3f2b6f added bison manual 3 år sedan
firstfile.c 725f3f2b6f added bison manual 3 år sedan
frame.h 725f3f2b6f added bison manual 3 år sedan
infcmd.c 725f3f2b6f added bison manual 3 år sedan
inferior.h 725f3f2b6f added bison manual 3 år sedan
inflow.c 725f3f2b6f added bison manual 3 år sedan
infrun.c 725f3f2b6f added bison manual 3 år sedan
initialize.h 725f3f2b6f added bison manual 3 år sedan
kdb-start.c 725f3f2b6f added bison manual 3 år sedan
lastfile.c 725f3f2b6f added bison manual 3 år sedan
m-isi-ov.h 725f3f2b6f added bison manual 3 år sedan
m-sun2.h 725f3f2b6f added bison manual 3 år sedan
m-sun3.h 725f3f2b6f added bison manual 3 år sedan
m-suninit.h 725f3f2b6f added bison manual 3 år sedan
m-vax.h 725f3f2b6f added bison manual 3 år sedan
m-vaxinit.h 725f3f2b6f added bison manual 3 år sedan
m68k-opcode.h 725f3f2b6f added bison manual 3 år sedan
m68k-pinsn.c 725f3f2b6f added bison manual 3 år sedan
main.c 725f3f2b6f added bison manual 3 år sedan
obstack.c 725f3f2b6f added bison manual 3 år sedan
obstack.h 725f3f2b6f added bison manual 3 år sedan
param.h 725f3f2b6f added bison manual 3 år sedan
pinsn.c 725f3f2b6f added bison manual 3 år sedan
printcmd.c 725f3f2b6f added bison manual 3 år sedan
source.c 725f3f2b6f added bison manual 3 år sedan
stack.c 725f3f2b6f added bison manual 3 år sedan
standalone.c 725f3f2b6f added bison manual 3 år sedan
stuff.c 725f3f2b6f added bison manual 3 år sedan
symmisc.c 725f3f2b6f added bison manual 3 år sedan
symseg.h 725f3f2b6f added bison manual 3 år sedan
symtab.c 725f3f2b6f added bison manual 3 år sedan
symtab.h 725f3f2b6f added bison manual 3 år sedan
test2.c 725f3f2b6f added bison manual 3 år sedan
test3.c 725f3f2b6f added bison manual 3 år sedan
testbit.c 725f3f2b6f added bison manual 3 år sedan
testfun.c 725f3f2b6f added bison manual 3 år sedan
testrec.c 725f3f2b6f added bison manual 3 år sedan
testreg.c 725f3f2b6f added bison manual 3 år sedan
testregs.c 725f3f2b6f added bison manual 3 år sedan
utils.c 725f3f2b6f added bison manual 3 år sedan
valarith.c 725f3f2b6f added bison manual 3 år sedan
valops.c 725f3f2b6f added bison manual 3 år sedan
valprint.c 725f3f2b6f added bison manual 3 år sedan
value.h 725f3f2b6f added bison manual 3 år sedan
values.c 725f3f2b6f added bison manual 3 år sedan
vax-opcode.h 725f3f2b6f added bison manual 3 år sedan
vax-pinsn.c 725f3f2b6f added bison manual 3 år sedan
version.c 725f3f2b6f added bison manual 3 år sedan
wait.h 725f3f2b6f added bison manual 3 år sedan

README

This is GDB, a source-level debugger intended for GNU,
presently running under un*x.

Before compiling GDB, you must set three files according to
the kind of machine you are running on.

param.h must be set up to #include an m- file for the machine.
The m- files written so far are m-vax.h, m-sun2.h and m-sun3.h.
(I believe that it is the operating system version and not
the cpu type which determines which of the two is right on a Sun.)
This file contains macro definitions that express information
about the machine's registers, stack frame format and instructions.

initialize.h must be set up to #include an m-...init.h file.
There are two of them written: m-vaxinit.h and m-suninit.h.
This file defines one macro, which says how to round up from the
address of the end of the text of one .o file to the beginning of
the text of the next .o file.

pinsn.c must be set up to include the instruction printer for
your cpu type. The two printers that exist are vax-pinsn.c
and m68k-pinsn.c.

`Makefile' must be changed to say `OBSTACK = obstack.o' instead of
`OBSTACK=-lobstack' (unless you want to install obstack.o as
/lib/libobstack.a).

Once these files are set up, just `make' will do everything,
producing an executable `gdb' in this directory.