Good morning,
I’m running Ant build in MyEclipse, and get an out of memory when the javaw reaches about 101,000k.
I tried a number of ways to increase the heap size, but in the Windows Task Manager, I can see that even though the javaw that MyEcllipse starts with has an increased heap size, the heap size for the javaw that is forked by Ant build through MyEclipse still doesn’t increase, because the javaw for the Ant build always has an out of memory at about 101,000k.
I’ve tried the following:
– set ANT_OPTS=-Xmx512M in Windows Environment Vriable
– changed the Antbuild to the like of <javac fork=”yes” memoryMaximumSize=”512M” …/>
– start MyEclipse from command line: d:\eclipse\eclipse.exe -vmargs -Xms128m -Xmx320m
– added -Xmx through MyEclipse Run_Run
– added -Xmx for MyEclipse\Weindows\Preference\..\ installed JRE
– modified xdoclet setting in MyEclipse.
Nothing increased the heap size for the forked javaw. >:-[
Could you please advise what might be wrong?
Thank you!