From 3b2868feaf4d25e97c2300d1fbd589dffd086945 Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 1 Aug 2005 10:23:28 +0000 Subject: [PATCH] * remove ld 2.16 specific line git-svn-id: trunk@778 - --- compiler/systems/t_linux.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 59e35512c5..61e8fe8845 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -492,7 +492,6 @@ begin linkres.add(' . = ALIGN (0x1000) - ((0x1000 - .) & (0x1000 - 1)); . = DATA_SEGMENT_ALIGN (0x1000, 0x1000);'); linkres.add(' .dynamic : { *(.dynamic) }'); linkres.add(' .got : { *(.got) }'); - linkres.add(' . = DATA_SEGMENT_RELRO_END (12, .);'); linkres.add(' .got.plt : { *(.got.plt) }'); linkres.add(' .data :'); linkres.add(' {'); @@ -512,6 +511,7 @@ begin linkres.add(' __bss_start = .;'); linkres.add(' .bss :'); linkres.add(' {'); + linkres.add(' *(.dynbss)'); linkres.add(' *(.bss .bss.* .gnu.linkonce.b.*)'); linkres.add(' *(COMMON)'); {Align here to ensure that the .bss section occupies space up to