mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 21:19:26 +02:00
* max. 256 MB stack on win32
git-svn-id: trunk@464 -
This commit is contained in:
parent
1ca48d8a64
commit
44ff8e4426
@ -5,9 +5,14 @@
|
|||||||
{$goto on}
|
{$goto on}
|
||||||
{$inline on}
|
{$inline on}
|
||||||
|
|
||||||
{ 1Mb stack }
|
{$ifdef win32}
|
||||||
|
{ 256MB stack }
|
||||||
|
{ under windows the stack can't grow }
|
||||||
|
{$MEMORY 256000000}
|
||||||
|
{$else win32}
|
||||||
|
{ 1MB stack }
|
||||||
{$MEMORY 1000000}
|
{$MEMORY 1000000}
|
||||||
|
{$endif win32}
|
||||||
{ This reduces the memory requirements a lot }
|
{ This reduces the memory requirements a lot }
|
||||||
{$PACKENUM 1}
|
{$PACKENUM 1}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user