From f8a79a97c7d12da43b111a756f09ee7ad5ea28e9 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 3 Mar 2020 10:36:29 -0300 Subject: Effective DisplayServer separation, rename X11 -> LinuxBSD --- platform/linuxbsd/pck_embed.ld | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 platform/linuxbsd/pck_embed.ld (limited to 'platform/linuxbsd/pck_embed.ld') diff --git a/platform/linuxbsd/pck_embed.ld b/platform/linuxbsd/pck_embed.ld new file mode 100644 index 0000000000..57a1994043 --- /dev/null +++ b/platform/linuxbsd/pck_embed.ld @@ -0,0 +1,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; -- cgit v1.2.3