Home >Common Problem >How to set eclipse parameters
ECLIPSE related parameters
You can set some parameters for ECLIPSE startup in the command line or ECLIPSE.INI file:
-data myworkspace can Specify your own workspace
-vm javapath You can specify which JAVA VM to use
-nl locale Define the locale
When setting VM parameters, put them after -vmargs:
-vmargs -Djava.util.logging.config.file=mylog.properties Set the log file location. You can see the log in the CONSOLE view in debugging state.
-vmargs -Xms settings JVM initialization heap memory size
-vmargs -Xmx Set the JVM maximum heap memory size
-vmargs -Xss Set the JVM stack memory size
-vmargs -XX:MaxPermSize Set the maximum memory used by Permanent Generation.
-vmargs -XX:PermSize Set the program Permanent Generation memory size.
The above is the detailed content of How to set eclipse parameters. For more information, please follow other related articles on the PHP Chinese website!