* limit IDE stack to 3M on windows to avoid trouble at IDE startup at least on XP x64

git-svn-id: trunk@12650 -
This commit is contained in:
florian 2009-02-01 19:21:10 +00:00
parent 9869a2b29d
commit 56ef86333d

View File

@ -14,12 +14,15 @@
**********************************************************************}
program FP;
{$ifdef IncRes}
{$ifdef Windows}
{ some windows versions, namely at least XP x64 don't like if the IDE stack
is too big }
{$maxstacksize 3000000}
{$ifdef IncRes}
{$R fpw32t.rc}
{$R fpw32ico.rc}
{$endif Windows}
{$endif IncRes}
{$endif Windows}
{$I globdir.inc}
(**********************************************************************)