aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1992-03-12 06:08:56 +0000
committerJohn Gilmore <gnu@cygnus>1992-03-12 06:08:56 +0000
commit77c3feeed121c78c40973a3457342c4d398a7b2e (patch)
treea8705c6c41d48e6dcab49cb8e8508b7ec63b6f3b
parent431370511690ccb2d954ad12411378f8d63367de (diff)
downloadgdb-77c3feeed121c78c40973a3457342c4d398a7b2e.zip
gdb-77c3feeed121c78c40973a3457342c4d398a7b2e.tar.gz
gdb-77c3feeed121c78c40973a3457342c4d398a7b2e.tar.bz2
mips-big-* target
-rw-r--r--bfd/ChangeLog22
-rw-r--r--bfd/configure.in21
2 files changed, 40 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index b32d7d2..7f1f470 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,10 +1,14 @@
Sat Mar 7 10:33:41 1992 Steve Chamberlain (sac@thepub.cygnus.com)
- * coff-i960.c (icoff_little_vec): add COFF_SWAP_TABLE so we can run gdb on little
- endian 960 code.
+ * coff-i960.c (icoff_little_vec): add COFF_SWAP_TABLE so we can run
+ gdb on little-endian 960 code.
* archive.c (compute_and_write_armap): indirect symbols should go
into the archive header too.
+Fri Mar 6 21:55:16 1992 K. Richard Pixley (rich@cygnus.com)
+
+ * Makefile.in: added check target.
+
Thu Mar 5 23:51:42 1992 John Gilmore (gnu at cygnus.com)
* coff-msym.c: Move this file from gdb/ecoff.c. It
@@ -13,6 +17,10 @@ Thu Mar 5 23:51:42 1992 John Gilmore (gnu at cygnus.com)
to the files built on MIPS-based hosts.
* Makefile.in: Add rule for coff-msym.
+Thu Mar 5 21:36:05 1992 K. Richard Pixley (rich@cygnus.com)
+
+ * Makefile.in: added clean-info target. MINIMIZE=1.
+
Sun Mar 1 22:32:58 1992 Per Bothner (bothner@cygnus.com)
* coff-rs6000.c: Move core file functions into separate
@@ -31,6 +39,10 @@ Thu Feb 27 22:19:55 1992 Per Bothner (bothner@cygnus.com)
* hosts/h-sparc.h: Removed prototype for bogus function
'emset' (presumably should have been 'memset' - which is there).
+Thu Feb 27 11:46:33 1992 John Gilmore (gnu at cygnus.com)
+
+ * configure.in (mips-big-* target): Same is Iris.
+
Thu Feb 27 09:24:56 1992 Steve Chamberlain (sac at thepub.cygnus.com)
* aoutx.h (translate_from_native_sym_flags): when creating an
@@ -38,6 +50,12 @@ Thu Feb 27 09:24:56 1992 Steve Chamberlain (sac at thepub.cygnus.com)
leaving it blank. If an output section can't be found for a
symbol, then don't core dump.
+Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
+
+ * Makefile.in, configure.in: removed traces of namesubdir,
+ -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
+ copyrights to '92, changed some from Cygnus to FSF.
+
Wed Feb 26 19:40:59 1992 Steve Chamberlain (sac at thepub.cygnus.com)
* bfd.c: lint
diff --git a/bfd/configure.in b/bfd/configure.in
index 1cc5f14..2eceb21 100644
--- a/bfd/configure.in
+++ b/bfd/configure.in
@@ -52,6 +52,11 @@ m68k)
;;
sony) my_host=news ;;
sun) my_host=sun3 ;;
+ apollo*)
+ case "${host_os}" in
+ sysv*) my_host=apollo68v ;;
+ esac
+ ;;
esac
;;
@@ -90,7 +95,7 @@ tahoe)
vax)
case "${host_os}" in
- ultrix) my_host=vaxult ;;
+ ultrix*) my_host=vaxult ;;
*) my_host=vaxbsd ;;
esac
;;
@@ -187,8 +192,22 @@ sgi)
bfd_target=irix3 ;;
esac
;;
+big)
+ case "${target_cpu}" in
+ mips)
+ bfd_target=irix3 ;;
+ esac
+ ;;
+tandem)
+ bfd_target=m68k-aout
+ ;;
+
none|nyu|sco)
case "${target_cpu}" in
+ m68k) case "${target_os}" in
+ os68k) bfd_target=m68k-aout ;;
+ esac
+ ;;
i386) bfd_target=i386-coff ;;
a29k) case "${target_os}" in
aout) bfd_target=a29k-aout ;;