diff options
author | Alan Modra <amodra@gmail.com> | 2005-03-22 14:49:16 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-03-22 14:49:16 +0000 |
commit | 11d2f718eb85e809ae4dbc185083947bdfca4eb0 (patch) | |
tree | e9c9ccf77c8aa1615a850f52723a6cdca4c4e508 /ld/emultempl | |
parent | 52a43e710025c249ec5d6d87ca60a9e7b82209ee (diff) | |
download | gdb-11d2f718eb85e809ae4dbc185083947bdfca4eb0.zip gdb-11d2f718eb85e809ae4dbc185083947bdfca4eb0.tar.gz gdb-11d2f718eb85e809ae4dbc185083947bdfca4eb0.tar.bz2 |
bfd/
* elflink.c (elf_link_add_object_symbols): Set SEC_EXCLUDE on
.gnu.warning.* sections.
ld/
* emultempl/elf32.em (gld${EMULATION_NAME}_before_allocation): Set
SEC_EXCLUDE on .gnu.warning sections.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/elf32.em | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 1acedb4..00805d5 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -1105,6 +1105,10 @@ ${ELF_INTERPRETER_SET_DEFAULT} /* Clobber the section size, so that we don't waste copying the warning into the output file. */ s->size = 0; + + /* Also set SEC_EXCLUDE, so that symbols defined in the warning + section don't get copied to the output. */ + s->flags |= SEC_EXCLUDE; } } } |