onepseudoxy
onepseudoxy

Reputation: 580

eclipse error after the loading

after the start of the eclipse, it shows me an error dialog(see the image):enter image description here

Can some one tell me how to resolve that problem.

Upvotes: 1

Views: 112

Answers (2)

Konstantin Komissarchik
Konstantin Komissarchik

Reputation: 29139

It looks like your JVM is 64-bit (based on "Program Files" vs "Program Files (x86)" and your Eclipse is 32-bit. The combination is incompatible.

You need to download a 64-bit version of Eclipse or 32-bit version of the JVM.

If you choose to get 32-bit JVM, you may need to tell Eclipse where to find it if it keeps finding the 64-bit one after install. To do this add the following lines to your eclipse.ini:

-vm
[some-path]/javaw.exe

Upvotes: 1

Zoltán Ujhelyi
Zoltán Ujhelyi

Reputation: 13858

I'd look for detailed log files present in the .metadata/.log folder of the workspace. If Eclipse does not start, it provides log information there.

Upvotes: 1

Related Questions