This is the mail archive of the
binutils@sources.redhat.com
mailing list for the binutils project.
Re: ld -lgen -ladm causes assert failure in gnu ld 2.12.1 and 2.13 under Solaris 2.7 or 2.8
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Nick Clifton <nickc at redhat dot com>
- Cc: ark at research dot att dot com, bug-binutils at gnu dot org, binutils at sources dot redhat dot com
- Date: Thu, 19 Sep 2002 23:49:36 +0200
- Subject: Re: ld -lgen -ladm causes assert failure in gnu ld 2.12.1 and 2.13 under Solaris 2.7 or 2.8
- References: <200208292039.g7TKdoH13441@europa.research.att.com> <m3ptvaxcyd.fsf@north-pole.nickc.cambridge.redhat.com> <200209191439.g8JEdEL08064@europa.research.att.com> <m3bs6uvt0y.fsf@north-pole.nickc.cambridge.redhat.com> <200209191923.g8JJNTV01948@europa.research.att.com> <m3znudslk4.fsf@north-pole.nickc.cambridge.redhat.com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Thu, Sep 19, 2002 at 10:42:51PM +0100, Nick Clifton wrote:
> [ 4] .rela.dyn RELA 0000042c 00042c 00006c 0c A 2 0 4
> [ 5] .rela.plt RELA 00000498 000498 000024 0c A 2 f 4
>
> Which is completely different, and the ".rela.got" section has gone
> missing!
That's because of -zcombreloc (now the default).
All SHF_ALLOC .rela.* sections but .rela.plt are merged into .rela.dyn and
sorted for faster runtime lookup.
Jakub