1

I have tried doing some of the fixes online, like: - making sure that I downloaded the correct version of Eclipse, 64 bit - Eclipses supports Java 8, the one that I have installed - reinstalled the IDE 3 times, but got the same problem

I am pretty big noob when it comes to these types of problems...

Here is a screen shot of the error:

enter image description here

mr nooby noob
  • 1,299
  • 2
  • 25
  • 47
  • You have a 64 bit Eclipse and 32 bit Java. They must both be 64 bit or both 32 bit. – greg-449 May 16 '15 at 20:18
  • @greg-449 thank you very very much! That was it. I had the 32 bit version of Java instead of the 64 bit. I guess I either downloaded the wrong one somehow or it was already installed...Thanks again! :D – mr nooby noob May 17 '15 at 21:13

1 Answers1

1

Add this line at the top of eclipse.ini

-vm 
C:\Program Files\Java\jdk1.8.0_20\bin 

Please check the name of folder you have in your system.

sparsh610
  • 1,315
  • 2
  • 19
  • 48