10-11-2010, 02:19 PM
(10-11-2010, 11:06 AM)winter01942 Wrote: I have the same problem~~
i managed go get a screen shot of the command screen
it says:
Running JPCSP 32bit...
Error occured during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine
can anybody help?
i have the laest java version 6 update 21 already~
THX
im running on
intel core 2 quad Q8400 2.66Ghz
2.5Gb RAM
ATI radeon 4850
BTW i found out that the commit log for version r1626 states that :
Changed default heap size (in Windows batch files) to 1024Mb
is this why i am getting "Could not reserve enough space for object heap" ??
Hmm... Actually, it's not exactly that part that is the problem, but it seems that it's the other flag we removed.
In your batch file, you should find this: "-Xmx1024m". That setting sets the maximum heap size for Java. However, your system is not setting a proper minimum value. Try adding before that setting, in the batch file, the following: "-Xms128m".
The line should look like this: "-Xms128m -Xmx1024m".