Home  >  Article  >  How to set eclipse parameters

How to set eclipse parameters

anonymity
anonymityOriginal
2019-05-26 15:23:074511browse

ECLIPSE related parameters

How to set eclipse 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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn