summaryrefslogtreecommitdiff
path: root/bfd/elf32-gen.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2001-03-27 02:00:34 +0000
committerH.J. Lu <hjl@lucon.org>2001-03-27 02:00:34 +0000
commitfb9a72f3c5d90cc9441c9a8ded5e29d1ba7776b7 (patch)
treeb76105995b85bcc23827b048cf57647d92682194 /bfd/elf32-gen.c
parent2dc82d74b5017d3680e2423c7d7f7f8b342c29ed (diff)
downloadbinutils-redhat-fb9a72f3c5d90cc9441c9a8ded5e29d1ba7776b7.tar.gz
2001-03-26 H.J. Lu <hjl@gnu.org>
* elf32-gen.c (elf32_generic_link_add_symbols): New. Check if there are any relocations for generic ELF. (bfd_elf32_bfd_link_add_symbols): Defined to elf32_generic_link_add_symbols. * elf64-gen.c (elf64_generic_link_add_symbols): New. Check if there are any relocations for generic ELF. (bfd_elf64_bfd_link_add_symbols): Defined to elf64_generic_link_add_symbols.
Diffstat (limited to 'bfd/elf32-gen.c')
-rw-r--r--bfd/elf32-gen.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/bfd/elf32-gen.c b/bfd/elf32-gen.c
index 47da53b1bc..f67887069a 100644
--- a/bfd/elf32-gen.c
+++ b/bfd/elf32-gen.c
@@ -58,6 +58,37 @@ elf_generic_info_to_howto_rel (abfd, bfd_reloc, elf_reloc)
bfd_reloc->howto = &dummy;
}
+static boolean
+elf32_generic_link_add_symbols (abfd, info)
+ bfd *abfd;
+ struct bfd_link_info *info ATTRIBUTE_UNUSED;
+{
+ asection *o;
+
+ /* Check if there are any relocations. */
+ for (o = abfd->sections; o != NULL; o = o->next)
+ if ((o->flags & SEC_RELOC) != 0)
+ {
+ Elf_Internal_Ehdr *ehdrp;
+
+ ehdrp = elf_elfheader (abfd);
+ if (abfd->my_archive)
+ (*_bfd_error_handler) (_("%s(%s): Relocations in generic ELF (EM: %d)"),
+ bfd_get_filename (abfd->my_archive),
+ bfd_get_filename (abfd),
+ ehdrp->e_machine);
+ else
+ (*_bfd_error_handler) (_("%s: Relocations in generic ELF (EM: %d)"),
+ bfd_get_filename (abfd),
+ ehdrp->e_machine);
+
+ bfd_set_error (bfd_error_wrong_format);
+ return false;
+ }
+
+ return bfd_elf32_bfd_link_add_symbols (abfd, info);
+}
+
#define TARGET_LITTLE_SYM bfd_elf32_little_generic_vec
#define TARGET_LITTLE_NAME "elf32-little"
#define TARGET_BIG_SYM bfd_elf32_big_generic_vec
@@ -66,6 +97,7 @@ elf_generic_info_to_howto_rel (abfd, bfd_reloc, elf_reloc)
#define ELF_MACHINE_CODE EM_NONE
#define ELF_MAXPAGESIZE 0x1
#define bfd_elf32_bfd_reloc_type_lookup bfd_default_reloc_type_lookup
+#define bfd_elf32_bfd_link_add_symbols elf32_generic_link_add_symbols
#define elf_info_to_howto elf_generic_info_to_howto
#define elf_info_to_howto_rel elf_generic_info_to_howto_rel