I am getting when I start Eclipse Helios on Windows 7.
Failed to create the Java Virtual Machine

My eclipse.ini looks as follows:
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
-vm
P:\Programs\jdk1.6\bin
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms120m
-Xmn100m
-Xmx1024m
My JAVA_HOME is correctly set as far as I can tell. Any ideas on how to fix this would be really appreciated
Things I have tried so far:
- Adding the full path to javaw.exe
-vm P:\Programs\jdk1.6\bin\\bin\javaw.exe - removing the
-vmoption all together - removing
--launcher.XXMaxPermSizefixes the issue but causes permgen errors - removing the value
512of--launcher.XXMaxPermSizefixes the issue but causes permgen errors - reducing
-Xmxto512malso fixes the issue.
Why can i not use '1024m' for '-Xmx' and '--launcher.XXMaxPermSize'



