summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/pck_embed.ld
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-01-22 10:47:42 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-01-24 12:21:05 +0200
commit625c4bdacef4173f94200632362e25e537ad5d21 (patch)
treec9e043ce1a65e945055bd805db6891a999bc9e7e /platform/linuxbsd/pck_embed.ld
parent0bcc0e92b3f0ac57d4c4650722f347593a258572 (diff)
downloadredot-engine-625c4bdacef4173f94200632362e25e537ad5d21.tar.gz
[Linux] Add support for PCK embedding section with non GNU-ld linkers.
Diffstat (limited to 'platform/linuxbsd/pck_embed.ld')
-rw-r--r--platform/linuxbsd/pck_embed.ld10
1 files changed, 0 insertions, 10 deletions
diff --git a/platform/linuxbsd/pck_embed.ld b/platform/linuxbsd/pck_embed.ld
deleted file mode 100644
index 57a1994043..0000000000
--- a/platform/linuxbsd/pck_embed.ld
+++ /dev/null
@@ -1,10 +0,0 @@
-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;