diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-01-22 10:47:42 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-01-24 12:21:05 +0200 |
commit | 625c4bdacef4173f94200632362e25e537ad5d21 (patch) | |
tree | c9e043ce1a65e945055bd805db6891a999bc9e7e /platform/linuxbsd/pck_embed.ld | |
parent | 0bcc0e92b3f0ac57d4c4650722f347593a258572 (diff) | |
download | redot-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.ld | 10 |
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; |