Eclipse INI Configuration Problem

I am working on a project that is really large, and even if I increase the virtual memory, when I upgrade the project, Eclipse will fail. The error is a java heap space error.

This is the current setting:

-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
512M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms256m
-Xmx512m

If I increase it more, Eclipse will not start.

+3
source share
1 answer

A few comments:

Even if they are not heap space parameters, they can affect the performance of Eclipse.

+2
source

All Articles