diff options
author | Mark Alexander <marka@cygnus> | 1997-01-20 22:59:46 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1997-01-20 22:59:46 +0000 |
commit | f1536ab577d53095b50917502f0385bdd7b8377c (patch) | |
tree | 86cb7810960c62683f8bc530d685370acb3275cf /gdb | |
parent | 5a8023e5ba9ceaf250556160b77922d6ac2bb7fe (diff) | |
download | gdb-f1536ab577d53095b50917502f0385bdd7b8377c.zip gdb-f1536ab577d53095b50917502f0385bdd7b8377c.tar.gz gdb-f1536ab577d53095b50917502f0385bdd7b8377c.tar.bz2 |
* config/mips/{embed,embed64,embedl,embedl64}.mt:
Link in simulator on MIPS embedded targets.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/config/mips/embed64.mt | 2 | ||||
-rw-r--r-- | gdb/config/mips/embedl.mt | 2 | ||||
-rw-r--r-- | gdb/config/mips/embedl64.mt | 2 |
4 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca9b199..19db316 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Mon Jan 20 13:52:13 1997 Mark Alexander <marka@cygnus.com> + + * config/mips/{embed,embed64,embedl,embedl64}.mt: + Link in simulator on MIPS embedded targets. + Sat Jan 18 02:31:29 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * blockframe.c (frameless_look_for_prologue): Mark frames diff --git a/gdb/config/mips/embed64.mt b/gdb/config/mips/embed64.mt index 273d33b..378b20b 100644 --- a/gdb/config/mips/embed64.mt +++ b/gdb/config/mips/embed64.mt @@ -1,3 +1,5 @@ # Target: Big-endian mips board, typically an IDT. TDEPFILES= mips-tdep.o remote-mips.o remote-array.o TM_FILE= tm-embed64.h +SIM_OBS = remote-sim.o +SIM = ../sim/mips/libsim.a -lm diff --git a/gdb/config/mips/embedl.mt b/gdb/config/mips/embedl.mt index 867b1fe..92da80d 100644 --- a/gdb/config/mips/embedl.mt +++ b/gdb/config/mips/embedl.mt @@ -1,3 +1,5 @@ # Target: Big-endian mips board, typically an IDT. TDEPFILES= mips-tdep.o remote-mips.o remote-array.o TM_FILE= tm-embedl.h +SIM_OBS = remote-sim.o +SIM = ../sim/mips/libsim.a -lm diff --git a/gdb/config/mips/embedl64.mt b/gdb/config/mips/embedl64.mt index 89e3f93..9c437d2 100644 --- a/gdb/config/mips/embedl64.mt +++ b/gdb/config/mips/embedl64.mt @@ -1,3 +1,5 @@ # Target: Big-endian mips board, typically an IDT. TDEPFILES= mips-tdep.o remote-mips.o remote-array.o TM_FILE= tm-embedl64.h +SIM_OBS = remote-sim.o +SIM = ../sim/mips/libsim.a -lm |