blob: fe09144d887e979566f0451aee53b30192a52cfa (
plain)
1
2
3
4
5
6
7
8
9
10
|
SECTIONS
{
/* Add a zero-sized section; the exporter will patch it to enclose the data appended to the executable (embedded PCK) */
pck 0 (NOLOAD) :
{
/* Just some content to avoid the linker discarding the section */
. = ALIGN(8);
}
}
INSERT AFTER .rodata;
|