* elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Improve
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 7 May 2003 05:09:25 +0000 (05:09 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 7 May 2003 05:09:25 +0000 (05:09 +0000)
error message for mixing different-endian files.  Check for ABI
compatibility of input files with the selected emulation.

bfd/ChangeLog
bfd/elfxx-mips.c

index ca2a5d1f5ea0562918f760e823c9eb8570f2d721..fbb0ad740c9754207849f21a68dff91c94a91606 100644 (file)
@@ -1,3 +1,9 @@
+2003-05-06  Alexandre Oliva  <aoliva@redhat.com>
+
+       * elfxx-mips.c (_bfd_mips_elf_merge_private_bfd_data): Improve
+       error message for mixing different-endian files.  Check for ABI
+       compatibility of input files with the selected emulation.
+
 2003-05-05  Alan Modra  <amodra@bigpond.net.au>
 
        * elf32-i386.c (allocate_dynrelocs): For undef weak syms with
index 0c3a5d96fca3361c1a982aaf5b0b6df5a5822e52..c889115d1161d468c7b281ece92f6dfe23938761 100644 (file)
@@ -9174,12 +9174,25 @@ _bfd_mips_elf_merge_private_bfd_data (ibfd, obfd)
 
   /* Check if we have the same endianess */
   if (! _bfd_generic_verify_endian_match (ibfd, obfd))
-    return FALSE;
+    {
+      (*_bfd_error_handler)
+       (_("%s: endianness incompatible with that of the selected emulation"),
+        bfd_archive_filename (ibfd));
+      return FALSE;
+    }
 
   if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
       || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
     return TRUE;
 
+  if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
+    {
+      (*_bfd_error_handler)
+       (_("%s: ABI is incompatible with that of the selected emulation"),
+        bfd_archive_filename (ibfd));
+      return FALSE;
+    }
+
   new_flags = elf_elfheader (ibfd)->e_flags;
   elf_elfheader (obfd)->e_flags |= new_flags & EF_MIPS_NOREORDER;
   old_flags = elf_elfheader (obfd)->e_flags;
This page took 0.05463 seconds and 4 git commands to generate.