2
0
Эх сурвалжийг харах

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

git-svn-id: trunk@5328 -
Jonas Maebe 18 жил өмнө
parent
commit
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;