JSmooth generates the wrong JVM flag when the user
wishes to allocate more memory for a java application.
The Wrapper generates a -Xms flag. The correct flag is -Xmx
-Xmx is the maximum memory allocation for the VM, while -Xms is the initial memory allocation (the initial chunk allocated at startup).
Just checked, jsmooth 0.9.7 manages both correctly.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=39502
Originator: NO
-Xmx is the maximum memory allocation for the VM, while -Xms is the initial memory allocation (the initial chunk allocated at startup).
Just checked, jsmooth 0.9.7 manages both correctly.