This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: PR ld/3958: ELF linker failed to handle relocation against STN_UNDEF


On Sat, Mar 03, 2007 at 03:04:22PM -0800, H. J. Lu wrote:
> But we shouldn't use STN_UNDEF to indicate relocations
> against symbols from removed input sections since STN_UNDEF simply
> means 0 as the symbol value for relocation.

Agreed.  We should instead either relocate against the corresponding
symbol from the kept section and emit a reloc against that symbol, or
zero the section contents and emit an R_*_NONE reloc.  The difficulty
is that this means touching all the ELF backend relocate_section
functions, because we need the reloc howto function to know which bits
need zeroing.  Also, the section contents will need to be cleared on
a relocatable link.

I suppose I should look at doing this, since it was my idea to use a
reloc against STN_UNDEF as a means of passing the info through ld -r.

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]