This is the mail archive of the ecos-discuss@sourceware.cygnus.com mailing list for the eCos project.


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

Re: Building rommable images for the AEB-1C



> > /usr/cygnus/ecosSWtools-arm-990321/i686-pc-linux-gnu/lib/gcc-lib/arm-elf/2.9 
> > 
> > -ecosSWtools-arm-990321/../../../../arm-elf/bin/ld: warning: no memory 
> > region specified for section `.glue_7'
> > /usr/cygnus/ecosSWtools-arm-990321/i686-pc-linux-gnu/lib/gcc-lib/arm-elf/2.9 
> > 
> > -ecosSWtools-arm-990321/../../../../arm-elf/bin/ld: warning: no memory 
> > region specified for section `.glue_7t'
> 
> I don't understand these warnings at all [yes, I know what they mean, I just
> don't know how you created them].  

I've always gotten the "glue" sections when I build stuff for the ARM.
I had to add an output section to the target.ld file to make the
linker happy:

    .glue   ALIGN (0x1)  :      { . = . ; *(.glue*) } >  ram

The "glue" sections are empty, IIRC.

I'm using:

$ arm-elf-gcc --version
2.95.2

$ arm-elf-ld --version
GNU ld 2.9.5

$ arm-elf-as --version
GNU assembler 991018

-- 
Grant Edwards
grante@visi.com

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