mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-09 22:06:08 +02:00
* win64 can't grow the stack either so make $memory big enough
git-svn-id: trunk@4609 -
This commit is contained in:
parent
6cef7db5a6
commit
bfa6ec847a
@ -6,11 +6,15 @@
|
|||||||
{$inline on}
|
{$inline on}
|
||||||
|
|
||||||
{$ifdef win32}
|
{$ifdef win32}
|
||||||
{ 256MB stack }
|
{ 256 MB stack }
|
||||||
{ under windows the stack can't grow }
|
{ under windows the stack can't grow }
|
||||||
{$MEMORY 256000000}
|
{$MEMORY 256000000}
|
||||||
|
{$elsif win64}
|
||||||
|
{ 512 MB stack }
|
||||||
|
{ under windows the stack can't grow }
|
||||||
|
{$MEMORY 512000000}
|
||||||
{$else win32}
|
{$else win32}
|
||||||
{ 1MB stack }
|
{ 1 MB stack }
|
||||||
{$MEMORY 1000000}
|
{$MEMORY 1000000}
|
||||||
{$endif win32}
|
{$endif win32}
|
||||||
{ This reduces the memory requirements a lot }
|
{ This reduces the memory requirements a lot }
|
||||||
|
Loading…
Reference in New Issue
Block a user