2005-05-08 H.J. Lu <hongjiu.lu@intel.com>

PR 939
	* elflink.c (elf_link_output_extsym): Use output_bfd if
	h->root.u.def.section is bfd_abs_section_ptr when reporting
	error.
This commit is contained in:
H.J. Lu 2005-05-08 13:43:48 +00:00
parent 6006a3a1ec
commit cfca085c35
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2005-05-08 H.J. Lu <hongjiu.lu@intel.com>
PR 939
* elflink.c (elf_link_output_extsym): Use output_bfd if
h->root.u.def.section is bfd_abs_section_ptr when reporting
error.
2005-05-07 H.J. Lu <hongjiu.lu@intel.com>
* elf-bfd.h (elf_backend_data): Update special_sections to

View File

@ -6379,7 +6379,9 @@ elf_link_output_extsym (struct elf_link_hash_entry *h, void *data)
{
(*_bfd_error_handler)
(_("%B: %s symbol `%s' in %B is referenced by DSO"),
finfo->output_bfd, h->root.u.def.section->owner,
finfo->output_bfd,
h->root.u.def.section == bfd_abs_section_ptr
? finfo->output_bfd : h->root.u.def.section->owner,
ELF_ST_VISIBILITY (h->other) == STV_INTERNAL
? "internal"
: ELF_ST_VISIBILITY (h->other) == STV_HIDDEN