浏览代码

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 年之前
父节点
当前提交
ad1742373a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/systems/t_atari.pas

+ 1 - 1
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;