Eclipse 3.6 'Helios' - fix for outofmem Permgen space crashing issue
So, I played a bit with the Eclipse 3.6 Helios release today.
Here's just a quickie post, to help anyone who may encounter the above issue.
If you are getting the following error condition with the new Eclipse 3.6 Helios release: error message -
‘Unhandled event loop exception. Permgen space.’, try modifying the eclipse.ini settings to look like the following:
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-XX:PermSize=256m
-XX:MaxPermSize=256m
-Xms512m
-Xmx512m
-Dide.gc=true
Here's just a quickie post, to help anyone who may encounter the above issue.
If you are getting the following error condition with the new Eclipse 3.6 Helios release: error message -
‘Unhandled event loop exception. Permgen space.’, try modifying the eclipse.ini settings to look like the following:
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-XX:PermSize=256m
-XX:MaxPermSize=256m
-Xms512m
-Xmx512m
-Dide.gc=true
Comments
Post a Comment