Reputation: 31
Screens shot: http://prntscr.com/26jl07
Java version: http://prntscr.com/26jmz3
Below is my eclipse.ini
file:
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20130807-1835
-product
org.eclipse.epp.package.standard.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
C:\Program Files (x86)\Java\jre7\bin
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms512m
-Xmx1024m
-XX:+UseParallelGC
-XX:PermSize=256M
-XX:MaxPermSize=512M
I would really appreciate some help. thank you!
Upvotes: 0
Views: 92
Reputation: 11841
You are trying to run a 64 bit version of Eclipse using 32 bit Java. This is not possible.
To resolve the problem:
Upvotes: 2