mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
* ensure passing valid stacksize to emxbind
git-svn-id: trunk@29700 -
This commit is contained in:
parent
e1b37dcc46
commit
7e15bf6c2d
@ -520,10 +520,10 @@ begin
|
||||
StackSizeKB := 64
|
||||
else if StackSizeKB > (512 shl 10) then
|
||||
StackSizeKB := 512 shl 10;
|
||||
Replace(cmdstr,'$STACKKB',tostr((stacksize+1023) shr 10));
|
||||
Replace(cmdstr,'$STACKKB',tostr(StackSizeKB));
|
||||
{When an EMX program runs in DOS, the heap and stack share the
|
||||
same memory pool. The heap grows upwards, the stack grows downwards.}
|
||||
Replace(cmdstr,'$DOSHEAPKB',tostr((stacksize+1023) shr 10));
|
||||
Replace(cmdstr,'$DOSHEAPKB',tostr(StackSizeKB));
|
||||
Replace(cmdstr,'$STRIP ', StripStr);
|
||||
Replace(cmdstr,'$MAP ', MapStr);
|
||||
Replace(cmdstr,'$APPTYPE',AppTypeStr);
|
||||
|
Loading…
Reference in New Issue
Block a user