summaryrefslogtreecommitdiff
path: root/platform/linuxbsd/pck_embed.ld
blob: 57a1994043b8098a69b4619873184a43d14be91b (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 (INFO) :
	{
		/* binutils >= 2.30 allow it being zero-sized, but needs something between the braces to keep the section */
		. = ALIGN(8);
	}
}
INSERT AFTER .rodata;