0

I have installed flash builder plugin and i choose eclipse which i have.

While opening Falsh builder plugin with eclipse, getting error and showed a screen shot of the error message.

http://img856.imageshack.us/img856/5366/chpp.png

But if i open only eclipse it is working fine and no errors.. Can i know the reason and required any changes in eclipse or flash builder?

JeffryHouser
  • 39,401
  • 4
  • 38
  • 59
RKCY
  • 4,095
  • 14
  • 61
  • 97
  • I'm not sure I'm reading the log correctly, but it looks like your Eclipse Helios install is a 64-bit version, and the Flash Builder plug-in is 32-bit. Can you verify or refute this? I know that trying to run a mismatched set will give you errors, but I don't know which ones. – Bill Turner Oct 09 '13 at 15:41

2 Answers2

0

Java was started but returned exit code=13

error is caused when you are attempting to start Eclipse using the wrong version of the Java Virtual Machine (JVM).

Your eclipse.ini file contains a java version which is different from the one installed/set on your machine.

Here are some recommendations to correct this error:

http://www.ehow.com/how_4784069_terminated-exit-code-error-eclipse.html

Juned Ahsan
  • 67,789
  • 12
  • 98
  • 136
  • i have changed java version to 1.6 which is installed in my system . but still same issue is persist. – RKCY Oct 09 '13 at 09:02
0

Check your java version with command : java -version

And then compare it with the version of java shown in your error message of eclipse.

Maybe the version of of java that your eclipse support will be different from the installed java on your system.

Jhanvi
  • 5,069
  • 8
  • 32
  • 41
  • I had installed java 1.6 version. In eclipse it is showing as 1.5 version. now where can to add in eclipse configuration. – RKCY Oct 09 '13 at 06:35
  • Open the `eclipse.ini` and see the parameter `Dosgi.requiredJavaVersion=1.6`. `1.6` is mine. Set what ever you want to set. – Suresh Atta Oct 09 '13 at 06:41
  • @suresh:- i have tried the same but doesn't work and getting same error. – RKCY Oct 09 '13 at 06:47
  • @RaviKChowdary did you change the parameter in eclipse.ini? – Jhanvi Oct 09 '13 at 06:54
  • @Jhanvi :- where to change the parameter? – RKCY Oct 09 '13 at 06:58
  • refer this: http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.jst.j2ee.doc.user%2Ftopics%2Ftchangejavalevel.html and http://stackoverflow.com/questions/2540548/how-do-i-get-eclipse-to-use-a-different-compiler-version-for-java – Jhanvi Oct 09 '13 at 07:04