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

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.