mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-13 05:20:44 +00:00
2005-05-09 H.J. Lu <hongjiu.lu@intel.com>
* ldmain.c (reloc_overflow): Use output_bfd if the symbol is defined in the ABS section.
This commit is contained in:
parent
282c312b74
commit
a6e1b90f78
@ -1,3 +1,8 @@
|
||||
2005-05-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* ldmain.c (reloc_overflow): Use output_bfd if the symbol
|
||||
is defined in the ABS section.
|
||||
|
||||
2005-05-06 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* emultempl/elf32.em (gld${EMULATION_NAME}_provide_init_fini_syms):
|
||||
|
@ -1450,7 +1450,9 @@ reloc_overflow (struct bfd_link_info *info ATTRIBUTE_UNUSED,
|
||||
case bfd_link_hash_defweak:
|
||||
einfo (_(" relocation truncated to fit: %s against symbol `%T' defined in %A section in %B"),
|
||||
reloc_name, entry->root.string,
|
||||
entry->u.def.section, entry->u.def.section->owner);
|
||||
entry->u.def.section,
|
||||
entry->u.def.section == bfd_abs_section_ptr
|
||||
? output_bfd : entry->u.def.section->owner);
|
||||
break;
|
||||
default:
|
||||
abort ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user