You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
430 B
9 lines
430 B
|
4 days ago
|
SECTIONS {
|
||
|
|
/* By default, in LLD 16, .lrodata is placed immediately after .rodata.
|
||
|
|
* However, .lrodata can be very large in our compiled models, which leads to
|
||
|
|
* relocation out-of-range errors for relative relocations. So we place it
|
||
|
|
* after other the sections that are referenced from .text using relative
|
||
|
|
* relocations. This is the default behavior in GNU ld. */
|
||
|
|
.lrodata : { *(.lrodata) }
|
||
|
|
} INSERT AFTER .bss;
|