xref: /reactos/sdk/cmake/init-section.lds (revision 7115d7ba)
1/* Make sure the INIT section is at the end of the module so we can reclaim the space */
2SECTIONS
3{
4  INIT BLOCK(__section_alignment__) :
5  {
6    __init_start__ = . ;
7    *(INIT)
8    __init_end__ = . ;
9  }
10}
11/*INSERT AFTER .reloc;*//*This is what we actually want to do, but do not dare due to LD bug ROSBE-154*/
12INSERT AFTER .rsrc; /*This is what we do instead to at least fix CORE-14683*/
13