This is the mail archive of the crossgcc@cygnus.com mailing list for the crossgcc project.


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

Re: Help needed with linking


I think I've solved my own problem. In a flurry of desperation
I tried some new things today.

I had previously added the line

	*(.rel.dyn)

to the .data section of my linker script. That only made ld
very unhappy. Today I added this to the script and it fixed
the problem without, as best as I can tell so far, breaking
anything else.

        .ignore (NOLOAD) : {
                *(.rel.dyn)
        } >user

I'd still be interested in other ideas to fix the problem. My
script works now but I would like to avoid any surprises in
the future.
_______________________________________________
New CrossGCC FAQ: http://www.objsw.com/CrossGCC
_______________________________________________
To remove yourself from the crossgcc list, send
mail to crossgcc-request@cygnus.com with the
text 'unsubscribe' (without the quotes) in the
body of the message.

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