diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1997-03-13 20:28:26 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1997-03-13 20:28:26 +0000 |
commit | 286f83b4303f08f70f71f84a50b8c202b638a17a (patch) | |
tree | c2615764a9f2ce2c3ebdb46ae09acb35bd69927a /gdb/ChangeLog | |
parent | d428c89fdf14de695deb00233e8775c6370a0227 (diff) | |
download | gdb-286f83b4303f08f70f71f84a50b8c202b638a17a.zip gdb-286f83b4303f08f70f71f84a50b8c202b638a17a.tar.gz gdb-286f83b4303f08f70f71f84a50b8c202b638a17a.tar.bz2 |
* remote-sim.h (sim_state, SIM_DESC): New types.
(sim_open): Return a `descriptor' as result.
(*): New argument of descriptor result from sim_open.
* remote-sim.c (gdbsim_desc): Renamed from gdbsim_open_p.
(gdbsim_open): Record result of sim_open in gdbsim_desc.
Pass argv list to sim_open, argv[0] = pseudo program name.
(*): Pass gdbsim_desc to sim_foo fns.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f7dbae0..9b8f574 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,37 @@ +Thu Mar 13 11:00:22 1997 Doug Evans <dje@canuck.cygnus.com> + + * remote-sim.h (sim_state, SIM_DESC): New types. + (sim_open): Return a `descriptor' as result. + (*): New argument of descriptor result from sim_open. + * remote-sim.c (gdbsim_desc): Renamed from gdbsim_open_p. + (gdbsim_open): Record result of sim_open in gdbsim_desc. + Pass argv list to sim_open, argv[0] = pseudo program name. + (*): Pass gdbsim_desc to sim_foo fns. + +Tue Mar 11 07:25:27 1997 Mark Alexander <marka@cygnus.com> + + First cut at supporting simulators in gdbserver: + + * configure, configure.in: Allow gdbserver to be configured + for cross-target environments. + * gdbserver/Makefile.in: Add simulator support. + * gdbserver/configure.in: Eliminate assumption that host == target. + Simplify using gdb/configure.tgt and gdb/configure.host. + Fix other minor configuration errors. + * gdbserver/low-sparc.c: Fix compile error. + * gdbserver/remote-utils.c: Eliminate assumption that registers + and addresses are four bytes. Fix minor compile errors and warnings. + * gdbserver/server.c: Rewrite numerous instances of identical code + for starting inferior processes to call new function start_inferior. + Eliminate assumption that registers and addresses are four bytes. + * gdbserver/server.h: Add missing prototypes to eliminate compiler + warnings. + * gdbserver/low-sim.c: New file to mate gdbserver with simulators. + * config/mips/vr5000.mt: Add Vr5000 simulator support to gdbserver. + * config/i386/linux.mh: Eliminate gdbserver support as a first step + in moving such support from host to target makefile fragments. + * config/i386/linux.mt: Move gdbserver support here from linux.mh. + Mon Mar 10 12:27:47 1997 Michael Snyder <msnyder@cleaver.cygnus.com> * symtab.h (INIT_SAL): New macro to initialize symtab_and_line, |