reactos/sdk/cmake/init-section.lds
2021-03-23 11:18:43 +01:00

12 lines
264 B
Plaintext

/* Make sure the INIT section is at the end of the module so we can reclaim the space */
SECTIONS
{
INIT BLOCK(__section_alignment__) :
{
__init_start__ = . ;
*(INIT)
__init_end__ = . ;
}
}
INSERT BEFORE .reloc; /* .reloc is always at the end */