13 lines
252 B
Plaintext
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
|