mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
36 lines
437 B
Text
36 lines
437 B
Text
|
SECTIONS
|
||
|
{
|
||
|
.data __image_base__ + __section_alignment__ :
|
||
|
{
|
||
|
*(.data)
|
||
|
*(SORT(.data*))
|
||
|
*(.rdata)
|
||
|
*(SORT(.rdata*))
|
||
|
*(.text)
|
||
|
*(SORT(.text*))
|
||
|
*(.bss)
|
||
|
*(COMMON)
|
||
|
}
|
||
|
|
||
|
.rsrc BLOCK(__section_alignment__) :
|
||
|
{
|
||
|
*(.rsrc)
|
||
|
*(SORT(.rsrc$*))
|
||
|
}
|
||
|
|
||
|
.reloc BLOCK(__section_alignment__) :
|
||
|
{
|
||
|
*(.reloc)
|
||
|
}
|
||
|
|
||
|
.edata BLOCK(__section_alignment__) :
|
||
|
{
|
||
|
*(.edata)
|
||
|
}
|
||
|
|
||
|
/DISCARD/ :
|
||
|
{
|
||
|
*(*)
|
||
|
}
|
||
|
}
|