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

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.