This allows for individual modules to extend the main linker script, primarily to add their own sections to interate over. Remove the main shared_* linker scripts.
10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
SECTIONS {
|
|
.init ALIGN(8) : {
|
|
. = ALIGN(8);
|
|
__lk_init = .;
|
|
KEEP (*(.lk_init))
|
|
__lk_init_end = .;
|
|
}
|
|
}
|
|
INSERT AFTER .rodata;
|