mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 12:29:23 +02:00
* Fixed stacksize for Wii
git-svn-id: trunk@17035 -
This commit is contained in:
parent
e78f195422
commit
5fc349eda7
@ -86,7 +86,7 @@ unit i_wii;
|
|||||||
maxCrecordalign : 8
|
maxCrecordalign : 8
|
||||||
);
|
);
|
||||||
first_parm_offset : 8;
|
first_parm_offset : 8;
|
||||||
stacksize : 32*1024*1024;
|
stacksize : 131072; // 128 kb
|
||||||
abi : abi_powerpc_sysv;
|
abi : abi_powerpc_sysv;
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -562,9 +562,8 @@ begin
|
|||||||
|
|
||||||
{ Call linker }
|
{ Call linker }
|
||||||
SplitBinCmd(Info.ExeCmd[1],binstr,cmdstr);
|
SplitBinCmd(Info.ExeCmd[1],binstr,cmdstr);
|
||||||
Replace(cmdstr,'$OPT',Info.ExtraOptions);
|
|
||||||
|
|
||||||
Replace(cmdstr,'$EXE',(maybequoted(ScriptFixFileName(ChangeFileExt(current_module.exefilename^,'.elf')))));
|
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,'$RES',(maybequoted(ScriptFixFileName(outputexedir+Info.ResName))));
|
||||||
Replace(cmdstr,'$STATIC',StaticStr);
|
Replace(cmdstr,'$STATIC',StaticStr);
|
||||||
Replace(cmdstr,'$STRIP',StripStr);
|
Replace(cmdstr,'$STRIP',StripStr);
|
||||||
|
Loading…
Reference in New Issue
Block a user