I was having an issue with Eclipse IDE failing to launch with following error message: "JVM Terminated. Exit code=-1"

After some googling, I've semi-unintentionally found the solution and was able to get the IDE to launch correctly. What I did was to set -Xmx JVM argument in eclipse.ini to a value that is lower than the default value specified (-Xmx512m). Although I was able to get the IDE to launch, I was curious as to why it was happening and why this solution worked.

Here are some environment info:
Eclipse IDE: eclipse-rcp-galileo-SR1-win32
JVM: Java(TM) SE Runtime Environment (build 1.6.0_10-b33)
Physical Memory: 2GB

Available memory at launch time for >1GB.

Initially, I changed the value to 256m and Eclipse launch correctly and after some experiment I found out that it launches correctly until it is set to 348m. However, once the value is set to 349m, I get a dialog with the above error message. The full message is:

JVM terminated. Exit code=-1
-Dosgi.requiredJavaVersion=1.5
-Xmx349m
-XX:MaxPermSize=256m
-Djava.class.path=C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
-os win32
-ws win32
-arch x86
-showsplash C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\\plugins\org.eclipse.platform_3.3.201.v200909170800\splash.bmp
-launcher C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\eclipse.exe
-name Eclipse
--launcher.library C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519\eclipse_1206.dll
-startup C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
-product org.eclipse.epp.package.rcp.product
-vm c:\tools\java6\bin\..\jre\bin\client\jvm.dll
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xmx349m
-XX:MaxPermSize=256m
-Djava.class.path=C:\tools\eclipse-rcp-galileo-SR1-win32\eclipse\plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar

Does anyone have any idea or clue as to why this may be happening??

Thank you.

link|improve this question

46% accept rate
wow, scary, 512m is my standard value ;) hardware problem with physical memory? Is it the same limit after restarting the machine? – Andreas_D Jan 18 '10 at 15:46
Hmm. Interesting. If you look at the error message above, the jvm used by the core package is c:\tools\java6\bin\..\jre\bin\client\jvm.dll. It works fine if I do: eclipse -vm c:\tools\java6\jre\bin\javaw.exe -vmargs -Xms40m -Xmx512m And I get the same problem if I do: eclipse -vm c:\tools\java6\jre\bin\client\jvm.dll -vmargs -Xms256m -Xmx512m Something to do with jvm.dll? – blissfool Jan 19 '10 at 18:26
feedback

9 Answers

Try out this one

C:\dev\IDE\eclipse332\eclipse.exe -vm C:\dev\JDK\j2sdk1.4.2_06\bin\javaw.exe -vmargs -Xmx1024M -Xms512M

I also had problems with more memory. But this was working for me. I am sorry, but i do not know how to configure it correctly.

link|improve this answer
feedback

This blog mentions a similiar problem and provides a solution. And he's referring to this forum thread discussing the same exit code -1 issue with eclipse.

(Looks like I'm happy that my eclipse didn't crash like this .. yet)

link|improve this answer
Thanks. I've already read that thread. :) I know how to get my eclipse working... it's just bugging me as to why it's doing it... interestingly enough, I didn't have the problem with the java developer version package(eclipse-java-galileo-SR1-win32) which I have been using so far before downloading this package for plug-in development... – blissfool Jan 19 '10 at 18:32
Ugh. The default in java dev pkg was "-Xmx256m". When I changed it to 512m, crash! – blissfool Jan 19 '10 at 18:37
@Andreas_D: The link is now dead. Do you remember what it said? I'd love to see what they said about it... – Stephane Grenier Jan 5 at 22:43
feedback

I had the same problem. You must be running 64-bit Windows. For some reason Eclipse is looking for 32-bit Java Run time so you need to download and install 32 bit version. Also make sure Path Variable in Environment variables is set to 32 Bit Path

link|improve this answer
I do not have 64bit Windows and all paths are set correctly. I think there are numerous solution to this issue depending on the situation. One being what you've suggested, another being lowering -Xmx value and, yet another being using javaw.exe instead of jvm.dll. – blissfool Feb 11 '11 at 20:34
feedback

Thanks I had same issue, i changed from 1024 to 512 and it works. But still investigating was it issue with my system memory.

link|improve this answer
feedback

I managed to fix this by installing 32-bit JRE. Looks like eclipse is looking for 32-bit version

link|improve this answer
feedback

i got this JVM terminated. Exit code=-1 message to, after alot of google search i found out that my eclipse was only for 32 bit(europe 3.3.2) and i had windows 64 bit, so the path to my jdk was to my 64 bit programfiles folder, not to programfile(x86) folder and i changed that in my eclipse.ini to:

-showsplash org.eclipse.platform --launcher.XXMaxPermSize 256M -vm C:\Program Files (x86)\Java\jdk1.7.0\jre\bin\server\jvm.dll -vmargs -Dosgi.requiredJavaVersion=1.7 -Xms40m -Xmx256m

i dont know if its ontopic but if someone get the same message i hope this helps:)

link|improve this answer
feedback

I was also getting the same error, you can fix it by following the below steps.

  1. Open the 'eclipse.ini' file in the notepad

  2. Search for '-vm' if found change the value as '-vm C:\Program Files\Java\jdk1.6.0_23\jre\bin\javaw.exe' (depending on your java installation path)

  3. if you didn't find '-vm' in the 'eclipse.ini' file, then add the '-vm C:\Program Files\Java\jdk1.6.0_23\jre\bin\javaw.exe', anywhere I pasted under the '-showsplash'.

  4. launch the eclipse, by clicking on the 'eclipse.exe'.

Enjoy :) and let me know if still not working.

link|improve this answer
feedback

I managed to launch studio by editing ini and reducing XXMaxPermSize to 128m.

--launcher.XXMaxPermSize
128m
--launcher.defaultAction
openFile
-vmargs
-Xms512m
-Xmx1024m
link|improve this answer
feedback

I use the following to start eclipse. It's working:

E:\tools\eclipseR30\eclipse.exe -data E:\workspaces\r30 -vm C:\Java\jdk1.5.0_16\jre\bin\javaw.exe -jvmargs –Xms512M –Xmx512M

Or you can add -vm C:\Java\jdk1.5.0_16\jre\bin\javaw.exe in eclipse.ini.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.