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: .init .text .fini


Shaun Jackman <sjackman@gmail.com> writes:

> Why do the symbols _init and _fini sit in their own segments .init and
> .fini rather than in .text?

I can't think of any critical reason, but it is traditional, and it
makes it easy to look at the init and fini code.

> I'm trying to generate a binary suitable
> for a flash image in an embedded system where the start symbol is at
> the first address, but with the default linker script -- armelf.xc in
> my case -- _init from .init is being placed before _mainCRTStartup
> from .text.
> 
> Could the default order in ld/scripttempl/elf.sc be changed to .text
> .init .fini rather than the current .init .text .fini, or would this
> break something? Even better, could _init and _fini be placed in
> .text?

People developing for embedded systems must normally write their own
linker script anyhow, so this is not a very convincing reason to
change the default script.

Ian


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