forked from cfeclipse/cfeclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Command Line Switches
Peter Boughton edited this page Jan 18, 2012
·
1 revision
Also see Performance Settings.
You can also point to a specific JRE in the Eclipse command line:
For example:
C:\eclipse-3.2\eclipse.exe -vm "C:\Program Files\Java\jre1.5.0_09\bin\javaw" vmargs -Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
This points my Eclipse to the 1.5 install of JRE:
-vm "C:\Program Files\Java\jre1.5.0_09\bin\javaw"
This sets the memory usage of the vm:
vmargs -Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m
See the Eclipse [documentation](http://help.eclipse.org/help32/index.jsp?topi c=/org.eclipse.platform.doc.isv/reference/misc/runtime-options.html) for more info...