diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-10-01 20:15:48 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-10-01 20:15:48 +0000 |
commit | 161ac690ee5bdd48c440d7602110b48603976154 (patch) | |
tree | 7121e9c81599168e7fd924d509f35d4f16a79f00 | |
parent | 50622dea73415071f6dbcdad5797326d175f1526 (diff) | |
download | gdb-161ac690ee5bdd48c440d7602110b48603976154.zip gdb-161ac690ee5bdd48c440d7602110b48603976154.tar.gz gdb-161ac690ee5bdd48c440d7602110b48603976154.tar.bz2 |
Tue Oct 1 16:14:22 1996 Joel Sherrill <joel@oarcorp.com>
* config.bfd (mips*-*-rtems*): New target, like mips*-*-elf*.
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rwxr-xr-x | bfd/config.bfd | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index bddced0..1575adb 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 1 16:14:22 1996 Joel Sherrill <joel@oarcorp.com> + + * config.bfd (mips*-*-rtems*): New target, like mips*-*-elf*. + Tue Oct 1 12:31:39 1996 Ian Lance Taylor <ian@cygnus.com> * elflink.h (elf_link_add_object_symbols): Only put a symbol from diff --git a/bfd/config.bfd b/bfd/config.bfd index 7dd0aaf..3258401 100755 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -234,6 +234,12 @@ case "${targ}" in targ_underscore=yes ;; +# start-sanitize-m32r + m32r-*-*) + targ_defvec=bfd_elf32_m32r_vec + ;; +# end-sanitize-m32r + m68*-apollo-*) targ_defvec=apollocoff_vec ;; @@ -382,7 +388,7 @@ case "${targ}" in targ_defvec=bfd_elf32_littlemips_vec targ_selvecs="bfd_elf32_bigmips_vec bfd_elf64_bigmips_vec bfd_elf64_littlemips_vec" ;; - mips*-*-elf*) + mips*-*-elf* | mips*-*-rtems*) targ_defvec=bfd_elf32_bigmips_vec targ_selvecs="bfd_elf32_littlemips_vec bfd_elf64_bigmips_vec bfd_elf64_littlemips_vec" ;; |