* max. 256 MB stack on win32

git-svn-id: trunk@464 -
This commit is contained in:
florian 2005-06-21 20:05:40 +00:00
parent 1ca48d8a64
commit 44ff8e4426

View File

@ -5,9 +5,14 @@
{$goto on}
{$inline on}
{ 1Mb stack }
{$ifdef win32}
{ 256MB stack }
{ under windows the stack can't grow }
{$MEMORY 256000000}
{$else win32}
{ 1MB stack }
{$MEMORY 1000000}
{$endif win32}
{ This reduces the memory requirements a lot }
{$PACKENUM 1}