diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-13 19:27:21 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-13 19:27:21 +0000 |
commit | 56b10d6deef0d04f29d898a70fa2d0dfb0f104e4 (patch) | |
tree | cd62e7d4249eecc334aab02348805fbfb5ffbbcf /bfd/configure.in | |
parent | d14a8a061ea2d10c8c64279ac458d00ba30f480f (diff) | |
download | gdb-56b10d6deef0d04f29d898a70fa2d0dfb0f104e4.zip gdb-56b10d6deef0d04f29d898a70fa2d0dfb0f104e4.tar.gz gdb-56b10d6deef0d04f29d898a70fa2d0dfb0f104e4.tar.bz2 |
* ieee.c: (ieee_object_p) cast NULL correctly.
* configure.in: added harris host
Diffstat (limited to 'bfd/configure.in')
-rw-r--r-- | bfd/configure.in | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/bfd/configure.in b/bfd/configure.in index 138a467..94be9c3 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -23,7 +23,9 @@ mips) m88k) case "${host_vendor}" in motorola) - my_host=delta88 ;; + my_host=delta88 ;; + harris) + my_host=harris ;; *) case "${host_os}" in dgux) my_host=dgux ;; @@ -55,9 +57,9 @@ i386) case "${host_vendor}" in *) case "${host_os}" in - sysv) my_host=i386v ;; - mach) my_host=i386mach ;; - msdos) my_host=dose ;; + sysv*) my_host=i386v ;; + mach*) my_host=i386mach ;; + msdos*) my_host=dose ;; esac ;; esac @@ -180,6 +182,12 @@ none|nyu|sco) tahoe | vax) bfd_target=${target_cpu} ;; esac ;; +harris) + case "${target_cpu}" in + m88k) bfd_target=m88kbcs ;; + esac + ;; + motorola) case "${target_cpu}" in m88k) bfd_target=m88kbcs ;; |