diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-05-10 01:07:30 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-05-10 01:07:30 +0000 |
commit | baf6e97fe34d64813e70c232c69127c5ad031ace (patch) | |
tree | e774e5c9d944131bc5cbe30643bcd6f55cf7d959 /ld | |
parent | a6e1b90f78109a93688a5935ab3efc0d8b49e0e3 (diff) | |
download | gdb-baf6e97fe34d64813e70c232c69127c5ad031ace.zip gdb-baf6e97fe34d64813e70c232c69127c5ad031ace.tar.gz gdb-baf6e97fe34d64813e70c232c69127c5ad031ace.tar.bz2 |
2005-05-09 H.J. Lu <hongjiu.lu@intel.com>
* emultempl/elf32.em (gld${EMULATION_NAME}_provide_bound_symbols):
Don't use a removed section.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emultempl/elf32.em | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 9da68d5..646ab62 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,10 @@ 2005-05-09 H.J. Lu <hongjiu.lu@intel.com> + * emultempl/elf32.em (gld${EMULATION_NAME}_provide_bound_symbols): + Don't use a removed section. + +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. diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 69b5c26..3705c25 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1454,6 +1454,8 @@ gld${EMULATION_NAME}_provide_bound_symbols (const char *sec, const char *end) { asection *s = bfd_get_section_by_name (output_bfd, sec); + if (s && bfd_section_removed_from_list (output_bfd, s)) + s = NULL; _bfd_elf_provide_section_bound_symbols (&link_info, s, start, end); } |