aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-10-01 12:08:20 +0000
committerJohn Gilmore <gnu@cygnus>1991-10-01 12:08:20 +0000
commit2ccc23835964c91e0bcedc7e3c04c0081b0e7ff7 (patch)
tree09e2ba69a5142c05b28298cbe34e21634880a091
parentd2b833bc8988d221eb84c19af3298186c4665ede (diff)
downloadgdb-2ccc23835964c91e0bcedc7e3c04c0081b0e7ff7.zip
gdb-2ccc23835964c91e0bcedc7e3c04c0081b0e7ff7.tar.gz
gdb-2ccc23835964c91e0bcedc7e3c04c0081b0e7ff7.tar.bz2
Vax Ultrix changes from David Taylor <taylor@think.com>.
-rw-r--r--bfd/ChangeLog8
-rw-r--r--bfd/configure.in9
2 files changed, 16 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index e79fc91..51c215f 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,11 @@
+Tue Oct 1 05:02:53 1991 John Gilmore (gnu at cygnus.com)
+
+ Vax Ultrix changes from David Taylor <taylor@think.com>:
+ * host-aout.c: Make little-endian vector really little-endian.
+ * configure.in: Separate vax and tahoe cases, handle ultrix.
+ * config/t-vax: Add trad-core.o.
+ * config/h-vaxult: New host system.
+
Mon Sep 30 15:13:46 1991 Steve Chamberlain (steve at cygnus.com)
* cpu-a29k.c, cpu-i386.c, cpu-m68k.c, cpu-mips.c, cpu-vax.c,
diff --git a/bfd/configure.in b/bfd/configure.in
index a55cf40..b5a2784 100644
--- a/bfd/configure.in
+++ b/bfd/configure.in
@@ -63,9 +63,15 @@ else
a29k) bfd_host=ultra3
;;
- tahoe | vax)
+ tahoe)
bfd_host=${host_cpu}
;;
+ vax)
+ case "${host_os}" in
+ ultrix) bfd_host=vaxult ;;
+ *) bfd_host=vax ;;
+ esac
+ ;;
esac
fi
@@ -106,6 +112,7 @@ sun)
dec)
case "${target_cpu}" in
mips) bfd_target=dec3100 ;;
+ vax) bfd_target=vax ;;
esac
;;
hp)