Files
haxcc/haxcc.ld
2025-04-04 22:06:22 +02:00

13 lines
252 B
Plaintext

SECTIONS
{
/**
* Define a custom section named 'haxmods' that is marked as READONLY.
*/
haxmods (READONLY) : {
PROVIDE(haxmods_begin = .);
KEEP(*(__haxmod))
PROVIDE(haxmods_end = .);
}
}
INSERT AFTER .text