From ad1742373a7cab566a6ee62d0dea257273c62b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1roly=20Balogh?= Date: Wed, 27 Dec 2017 01:01:41 +0000 Subject: [PATCH] atari: remove -sd vlink option. this stops the linker from merging the bss segment into the data segment shaving off about 8K from the Hello, world! size. the data segment is merged into a single one on atari anyway, so this argument is not needed git-svn-id: trunk@37826 - --- compiler/systems/t_atari.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_atari.pas b/compiler/systems/t_atari.pas index 8865decdf5..eee9f69067 100644 --- a/compiler/systems/t_atari.pas +++ b/compiler/systems/t_atari.pas @@ -230,7 +230,7 @@ begin if UseVLink then begin if create_smartlink_sections then - GCSectionsStr:='-gc-all -sc -sd'; + GCSectionsStr:='-gc-all -sc'; end; ExeName:=current_module.exefilename;