NSIS/SCons/Config/linker_script

11 lines
201 B
Text
Raw Normal View History

SECTIONS
{
.text : { *(.text) }
.data : { *(.data) }
.rdata : { *(.rdata) }
.bss : { *(.bss) }
.idata : { *(.idata) }
.ndata BLOCK(__section_alignment__) : { [ .ndata ] }
.rsrc : { *(.rsrc) }
}