
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4160 212acab6-be3b-0410-9dea-997c60f758d6
10 lines
201 B
Text
10 lines
201 B
Text
SECTIONS
|
|
{
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.rdata : { *(.rdata) }
|
|
.bss : { *(.bss) }
|
|
.idata : { *(.idata) }
|
|
.ndata BLOCK(__section_alignment__) : { [ .ndata ] }
|
|
.rsrc : { *(.rsrc) }
|
|
}
|