* Fixed stacksize for Wii

git-svn-id: trunk@17035 -
This commit is contained in:
Legolas 2011-02-27 19:27:12 +00:00
parent e78f195422
commit 5fc349eda7
2 changed files with 2 additions and 3 deletions

View File

@ -86,7 +86,7 @@ unit i_wii;
maxCrecordalign : 8
);
first_parm_offset : 8;
stacksize : 32*1024*1024;
stacksize : 131072; // 128 kb
abi : abi_powerpc_sysv;
);

View File

@ -562,9 +562,8 @@ begin
{ Call linker }
SplitBinCmd(Info.ExeCmd[1],binstr,cmdstr);
Replace(cmdstr,'$OPT',Info.ExtraOptions);
Replace(cmdstr,'$EXE',(maybequoted(ScriptFixFileName(ChangeFileExt(current_module.exefilename^,'.elf')))));
Replace(cmdstr,'$OPT',Info.ExtraOptions);
Replace(cmdstr,'$RES',(maybequoted(ScriptFixFileName(outputexedir+Info.ResName))));
Replace(cmdstr,'$STATIC',StaticStr);
Replace(cmdstr,'$STRIP',StripStr);