reactos/kbdlayout.lds
Hermès Bélusca-Maïto 49ab546ac3 Sync up with trunk r61578.
svn path=/branches/ntvdm/; revision=61579
2014-01-11 00:00:10 +00:00

36 lines
437 B
Plaintext

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/ :
{
*(*)
}
}