diff options
author | Steve Chamberlain <steve@cygnus> | 1991-10-28 01:08:51 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-10-28 01:08:51 +0000 |
commit | 01dd1b2b474c599efacfa7e6740172e4db0f0ee4 (patch) | |
tree | 020577c23e31ec64f3ac64584d8c78f6162c4c4f /bfd/configure.in | |
parent | 2f192e9b95ba6cf6ae5389cb98d7007c12640bae (diff) | |
download | gdb-01dd1b2b474c599efacfa7e6740172e4db0f0ee4.zip gdb-01dd1b2b474c599efacfa7e6740172e4db0f0ee4.tar.gz gdb-01dd1b2b474c599efacfa7e6740172e4db0f0ee4.tar.bz2 |
Sun Oct 27 16:56:58 1991 Steve Chamberlain (steve at cygnus.com)
* configure.in: add motorola delta88 cases
* libbfd.h, libbfd-in.h, archive.c, ieee.c, elf.c, srec.c: fix
write_armap prototype
* libbfd.c: add doc on bfd_write_bigendian_4byte_int
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index b1c241b..138a467 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -22,6 +22,8 @@ mips) m88k) case "${host_vendor}" in + motorola) + my_host=delta88 ;; *) case "${host_os}" in dgux) my_host=dgux ;; @@ -178,6 +180,11 @@ none|nyu|sco) tahoe | vax) bfd_target=${target_cpu} ;; esac ;; +motorola) + case "${target_cpu}" in + m88k) bfd_target=m88kbcs ;; + esac + ;; *) case "${target_cpu}" in tahoe | vax) bfd_target=${target_cpu} ;; |