瀏覽代碼

* pass 2kb of parameters to ar at a time (instead of 200 bytes)

git-svn-id: trunk@5328 -
Jonas Maebe 19 年之前
父節點
當前提交
81fd4e865e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/link.pas

+ 1 - 1
compiler/link.pas

@@ -713,7 +713,7 @@ Implementation
             current := TStringListItem(SmartLinkOFiles.First);
             repeat
               nextcmd := cmdstr;
-              Replace(nextcmd,'$FILES',GetNextFiles(240 - length(nextcmd) + 6 - length(binstr) - 1, current));
+              Replace(nextcmd,'$FILES',GetNextFiles(2047, current));
               success:=DoExec(binstr,nextcmd,false,true);
             until (not assigned(current)) or (not success);
           end;