mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 10:12:21 +08:00
mips-big-* target
This commit is contained in:
@ -1,10 +1,14 @@
|
|||||||
Sat Mar 7 10:33:41 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
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
|
* coff-i960.c (icoff_little_vec): add COFF_SWAP_TABLE so we can run
|
||||||
endian 960 code.
|
gdb on little-endian 960 code.
|
||||||
* archive.c (compute_and_write_armap): indirect symbols should go
|
* archive.c (compute_and_write_armap): indirect symbols should go
|
||||||
into the archive header too.
|
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)
|
Thu Mar 5 23:51:42 1992 John Gilmore (gnu at cygnus.com)
|
||||||
|
|
||||||
* coff-msym.c: Move this file from gdb/ecoff.c. It
|
* 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.
|
to the files built on MIPS-based hosts.
|
||||||
* Makefile.in: Add rule for coff-msym.
|
* 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)
|
Sun Mar 1 22:32:58 1992 Per Bothner (bothner@cygnus.com)
|
||||||
|
|
||||||
* coff-rs6000.c: Move core file functions into separate
|
* 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
|
* hosts/h-sparc.h: Removed prototype for bogus function
|
||||||
'emset' (presumably should have been 'memset' - which is there).
|
'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)
|
Thu Feb 27 09:24:56 1992 Steve Chamberlain (sac at thepub.cygnus.com)
|
||||||
|
|
||||||
* aoutx.h (translate_from_native_sym_flags): when creating an
|
* 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
|
leaving it blank. If an output section can't be found for a
|
||||||
symbol, then don't core dump.
|
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)
|
Wed Feb 26 19:40:59 1992 Steve Chamberlain (sac at thepub.cygnus.com)
|
||||||
|
|
||||||
* bfd.c: lint
|
* bfd.c: lint
|
||||||
|
@ -52,6 +52,11 @@ m68k)
|
|||||||
;;
|
;;
|
||||||
sony) my_host=news ;;
|
sony) my_host=news ;;
|
||||||
sun) my_host=sun3 ;;
|
sun) my_host=sun3 ;;
|
||||||
|
apollo*)
|
||||||
|
case "${host_os}" in
|
||||||
|
sysv*) my_host=apollo68v ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -90,7 +95,7 @@ tahoe)
|
|||||||
|
|
||||||
vax)
|
vax)
|
||||||
case "${host_os}" in
|
case "${host_os}" in
|
||||||
ultrix) my_host=vaxult ;;
|
ultrix*) my_host=vaxult ;;
|
||||||
*) my_host=vaxbsd ;;
|
*) my_host=vaxbsd ;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@ -187,8 +192,22 @@ sgi)
|
|||||||
bfd_target=irix3 ;;
|
bfd_target=irix3 ;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
big)
|
||||||
|
case "${target_cpu}" in
|
||||||
|
mips)
|
||||||
|
bfd_target=irix3 ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
tandem)
|
||||||
|
bfd_target=m68k-aout
|
||||||
|
;;
|
||||||
|
|
||||||
none|nyu|sco)
|
none|nyu|sco)
|
||||||
case "${target_cpu}" in
|
case "${target_cpu}" in
|
||||||
|
m68k) case "${target_os}" in
|
||||||
|
os68k) bfd_target=m68k-aout ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
i386) bfd_target=i386-coff ;;
|
i386) bfd_target=i386-coff ;;
|
||||||
a29k) case "${target_os}" in
|
a29k) case "${target_os}" in
|
||||||
aout) bfd_target=a29k-aout ;;
|
aout) bfd_target=a29k-aout ;;
|
||||||
|
Reference in New Issue
Block a user