[CMAKE] Ensure the INIT section is placed at the end of a module. CORE-14683
[reactos.git] / sdk / cmake / init-section.lds
1 /* Make sure the INIT section is at the end of the module so we can reclaim the space */
2 SECTIONS
3 {
4 INIT BLOCK(__section_alignment__) :
5 {
6 __init_start__ = . ;
7 *(INIT)
8 __init_end__ = . ;
9 }
10 }
11 INSERT AFTER .reloc;