blob: a23013ba7ae6bebdd8a6ca777c95a4a8028f3468 (
plain)
1
2
3
4
5
6
7
8
9
10
|
SECTIONS
{
/* The exporter will patch this section to enclose the data appended to the executable (embedded PCK) */
pck 0 (INFO) : AT ( ADDR (.rodata) + SIZEOF (.rodata) )
{
/* binutils < 2.30 need some actual content for the linker not to discard the section */
BYTE(0);
}
}
INSERT AFTER .rodata;
|