diff options
author | Nick Clifton <nickc@redhat.com> | 2005-12-23 12:29:36 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-12-23 12:29:36 +0000 |
commit | 12ac1cf5374e06e54207ad961bcd4b721d5843b5 (patch) | |
tree | b5ed8c6fdd5845c4aec07eaa58e39620ef87a8fe /bfd/elfxx-mips.h | |
parent | 69d246d9338a35e64b2244835ac6e77164be668a (diff) | |
download | gdb-12ac1cf5374e06e54207ad961bcd4b721d5843b5.zip gdb-12ac1cf5374e06e54207ad961bcd4b721d5843b5.tar.gz gdb-12ac1cf5374e06e54207ad961bcd4b721d5843b5.tar.bz2 |
PR 1150
* elf-bfd.h (struct elf_backend_data): New field 'elf_backend_ignore_undef_symbol'.
* elfxx-target.h (elf_backend_ignore_undef_symbol): Define to NULL if not
already defined.
(elfNN_bed): Initialise the elf_backend_ignore_undef_symbol field.
* elfxx-mips.c (_bfd_mips_elf_ignore_undef_symbol): New function.
* elfxx-mips.h (elf_backend_ignore_undef_symbol): Define and prototype.
* elflink.c (elf_link_output_extsym): Check elf_backend_ignore_undef_symbol
before reporting an undefined symbol in a shared library.
Diffstat (limited to 'bfd/elfxx-mips.h')
-rw-r--r-- | bfd/elfxx-mips.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/elfxx-mips.h b/bfd/elfxx-mips.h index 3af342a..07e661d 100644 --- a/bfd/elfxx-mips.h +++ b/bfd/elfxx-mips.h @@ -129,6 +129,8 @@ extern bfd_vma _bfd_mips_elf_sign_extend (bfd_vma, int); extern void _bfd_mips_elf_merge_symbol_attribute (struct elf_link_hash_entry *, const Elf_Internal_Sym *, bfd_boolean, bfd_boolean); +extern bfd_boolean _bfd_mips_elf_ignore_undef_symbol + (struct elf_link_hash_entry *); extern const struct bfd_elf_special_section _bfd_mips_elf_special_sections []; @@ -137,3 +139,4 @@ extern const struct bfd_elf_special_section _bfd_mips_elf_special_sections []; #define elf_backend_special_sections _bfd_mips_elf_special_sections #define elf_backend_eh_frame_address_size _bfd_mips_elf_eh_frame_address_size #define elf_backend_merge_symbol_attribute _bfd_mips_elf_merge_symbol_attribute +#define elf_backend_ignore_undef_symbol _bfd_mips_elf_ignore_undef_symbol |