summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-01-24 17:21:15 +0000
committermarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-01-24 17:21:15 +0000
commit48dbe9aa8ee3957cf75bea7b7fa7112384d23c57 (patch)
tree363d5c7cb4eb30f4d85f0223b4111f4315c95538
parent900b515155cbc9170bffa8c25027b6ca76ee997f (diff)
downloadfpc-48dbe9aa8ee3957cf75bea7b7fa7112384d23c57.tar.gz
# revisions: 48254
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/fixes_3_2@48403 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/systems/t_amiga.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/systems/t_amiga.pas b/compiler/systems/t_amiga.pas
index 163fbc9066..95eea92610 100644
--- a/compiler/systems/t_amiga.pas
+++ b/compiler/systems/t_amiga.pas
@@ -260,6 +260,7 @@ begin
Add(' .data : {');
Add(' PROVIDE(_DATA_BASE_ = .);');
Add(' *(.data .data.* .gnu.linkonce.d.*)');
+ Add(' *(fpc.resources)');
Add(' VBCC_CONSTRUCTORS_ELF');
Add(' }');
Add(' .ctors : { *(.ctors .ctors.*) }');
@@ -291,6 +292,7 @@ begin
Add(' .plt : { *(.plt) }');
Add(' .bss : {');
Add(' *(.bss .bss.* .gnu.linkonce.b.*)');
+ Add(' *(fpc.reshandles)');
Add(' *(COMMON)');
Add(' }');
Add(' .bss68k : { *(BSS bss) }');