summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ChangeLog5
-rw-r--r--scripts/gdb/Makefile.am9
-rw-r--r--scripts/mkgdbspec.in3
3 files changed, 14 insertions, 3 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index e66e7179ac..864ea8a2ed 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-14 Joel Sherrill <joel@OARcorp.com>
+
+ * gdb/Makefile.am, mkgdbspec.in: Added mipstx39-rtems
+ configuration to gdb since this includes the JMR3904 simulator.
+
2001-01-03 Joel Sherrill <joel@OARcorp.com>
* setup.def, binutils/HISTORY, gccnewlib/HISTORY: Updated
diff --git a/scripts/gdb/Makefile.am b/scripts/gdb/Makefile.am
index ea472ec111..319af77bb8 100644
--- a/scripts/gdb/Makefile.am
+++ b/scripts/gdb/Makefile.am
@@ -45,6 +45,9 @@ mips64orion-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
mips-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mips-rtems
+mipstx39-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
+ $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mipstx39-rtems
+
powerpc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
@@ -62,9 +65,9 @@ RPM_SPECS_DATA = \
h8300-rtems-$(GDBVERS).spec hppa1.1-rtems-$(GDBVERS).spec \
i386-rtems-$(GDBVERS).spec i960-rtems-$(GDBVERS).spec \
m68k-rtems-$(GDBVERS).spec mips-rtems-$(GDBVERS).spec \
- mips64orion-rtems-$(GDBVERS).spec powerpc-rtems-$(GDBVERS).spec \
- sh-rtems-$(GDBVERS).spec sh-rtemself-$(GDBVERS).spec \
- sparc-rtems-$(GDBVERS).spec
+ mipstx39-rtems-$(GDBVERS).spec mips64orion-rtems-$(GDBVERS).spec \
+ powerpc-rtems-$(GDBVERS).spec sh-rtems-$(GDBVERS).spec \
+ sh-rtemself-$(GDBVERS).spec sparc-rtems-$(GDBVERS).spec
CLEANFILES += $(RPM_SPECS_DATA)
diff --git a/scripts/mkgdbspec.in b/scripts/mkgdbspec.in
index bc59720df6..c563bab293 100644
--- a/scripts/mkgdbspec.in
+++ b/scripts/mkgdbspec.in
@@ -84,6 +84,9 @@ sed -e "s%@Release@%${gdb_rpm_release}%g" \
> ${specfile}
case ${target_alias} in
+ mipstx39*)
+ echo "/opt/rtems/bin/${target_alias}-run${exe_ext}"
+ ;;
powerpc*)
echo "/opt/rtems/bin/${target_alias}-run${exe_ext}"
;;