repo.or.cz
/
gwm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move initialisation code into its own section, if supported by the linker.
[gwm.git]
/
gwm.ld
blob
d6d061746b362bf305ad383b424912afbb9de863
1
SECTIONS
2
{
3
. = ALIGN (4096);
4
init_start = .;
5
.gwminit.text : { init*(.text ) }
6
.gwminit.rodata : { init*(.rodata ) }
7
. = ALIGN (4096);
8
init_end = .;
9
}
10
INSERT AFTER .text;