This is the mail archive of the binutils@sources.redhat.com 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: GCC testsuite run before and after ~2.12.1 upgraded to pre-2.13


On Thu, Jul 18, 2002 at 09:09:27PM -0500, Loren James Rittle wrote:
> /usr/libexec/ld-elf.so.1: ./element_access.exe: too few PT_LOAD segments
> [... 37 additional, similar new failures in g++.log ...]

Well, that's the FreeBSD dynamic loader comlaining.  You'll need to
debug this a little further to find out why..

> ld: ./vbase8-10.exe: Not enough room for program headers (allocated 6, need 7)
This usually indicates a problem with linker scripts, or section
attributes.  For example, if we have a simple two segment layout
with a read-only segment followed by a read-write segment, then
the linker script (and orphan section placement code) should
place all ro sections before rw sections.  If something goes
wrong and we have a rw section being placed in the middle of the
ro sections, then we would need 4 segments, ro, rw, ro, rw.

-- 
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]