Browse Source

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 -
Károly Balogh 7 years ago
parent
commit
ad1742373a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_atari.pas

+ 1 - 1
compiler/systems/t_atari.pas

@@ -230,7 +230,7 @@ begin
   if UseVLink then
   if UseVLink then
     begin
     begin
       if create_smartlink_sections then
       if create_smartlink_sections then
-        GCSectionsStr:='-gc-all -sc -sd';
+        GCSectionsStr:='-gc-all -sc';
     end;
     end;
 
 
   ExeName:=current_module.exefilename;
   ExeName:=current_module.exefilename;