diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-12 01:16:45 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-12 01:16:45 +0000 |
commit | d36bdf4005fd1698873ff704d27fad0f5009f0ed (patch) | |
tree | d121fcf12299b9ae17da1606ff544505daa703ef | |
parent | 00dff7538a85184b6028a5780bc08039f69d0d8e (diff) | |
download | gdb-d36bdf4005fd1698873ff704d27fad0f5009f0ed.zip gdb-d36bdf4005fd1698873ff704d27fad0f5009f0ed.tar.gz gdb-d36bdf4005fd1698873ff704d27fad0f5009f0ed.tar.bz2 |
* config.bfd: Recognize i[34]86-*-solaris2* specifically rather
than using *-*-solaris2* (i486-unknown-solaris2 is i386-elf, not
i486-elf which doesn't exist).
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rwxr-xr-x | bfd/config.bfd | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3111050..16956d0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +Sat Sep 11 18:13:42 1993 Jim Kingdon (kingdon@poseidon.cygnus.com) + + * config.bfd: Recognize i[34]86-*-solaris2* specifically rather + than using *-*-solaris2* (i486-unknown-solaris2 is i386-elf, not + i486-elf which doesn't exist). + Fri Sep 10 12:56:36 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * coffswap.h (coff_swap_aouthdr_out): For ALPHAECOFF, force diff --git a/bfd/config.bfd b/bfd/config.bfd index 9a9fa37..47e9f6e 100755 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -27,6 +27,7 @@ case "${canon}" in hppa*-*-hpux*) bfd_name=hppahpux ;; hppa*-*-osf) bfd_name=hppa-elf ;; i[34]86-*-sysv4*) bfd_name=i386-elf ;; + i[34]86-*-solaris2*) bfd_name=i386-elf ;; i[34]86-*-sysv*) bfd_name=i386-coff ;; i[34]86-*-isc*) bfd_name=i386-sco ;; # gets core dump reading right i[34]86-*-sco*) bfd_name=i386-sco ;; |