From 311ff5e49ee85061862e66d900ad4ccb1cda5547 Mon Sep 17 00:00:00 2001 From: ths Date: Tue, 25 Jul 2006 09:17:56 +0000 Subject: [PATCH] * elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Allow linking of objects for compatible machine types. --- bfd/ChangeLog | 5 +++++ bfd/elfxx-mips.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f23d35b85e..3d76b52d5d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2006-07-25 Thiemo Seufer + * elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Allow + linking of objects for compatible machine types. + +2006-07-25 Thiemo Seufer + * elfxx-mips.c (mips_elf_next_relocation): Tighten check to test also for same symbol. diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 5a65d42461..5239938822 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -10854,7 +10854,9 @@ _bfd_mips_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd) = elf_elfheader (ibfd)->e_ident[EI_CLASS]; if (bfd_get_arch (obfd) == bfd_get_arch (ibfd) - && bfd_get_arch_info (obfd)->the_default) + && (bfd_get_arch_info (obfd)->the_default + || mips_mach_extends_p (bfd_get_mach (obfd), + bfd_get_mach (ibfd)))) { if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), bfd_get_mach (ibfd))) -- 2.11.0