Page 1 of 1
Error in Eclipse
Posted: Tue Apr 30, 2019 8:51 am
by TronManI
Hello Experts,
I am facing the below eclipse error when I run the eclipse.exe from the "eclipse-rtdruid3-photon-win32-x86_64_20190221_gh61" package.
Can you please help resolve the issue?
-TronManI
Re: Error in Eclipse
Posted: Tue Apr 30, 2019 10:56 am
by paolo.gai
It seems you are using a JRE version 144.
The version installed on my machine is 201. maybe that is the issue...
Apart from that, I see no other reason why it should fail...
Ciao,
PJ
Re: Error in Eclipse
Posted: Tue Apr 30, 2019 11:06 am
by nicola.serreli
Hello,
usually this kind of error are related to a mismatch between "bit versions": probably you are trying to run a 64bit version of eclipse using a 32bit version of java.
please, try this command in a command line shell (like
cmd, or
cygwin in windows):
if the running java is a 64bit one, you should find "64 bit" in the answer.
a 64 bit example:
Code: Select all
java -version
openjdk version "1.8.0_191"
OpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-2ubuntu0.18.04.1-b12)
OpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode)
a 32 bit example:
Code: Select all
java -version
java version "1.8.0_91"
java(TM) SE Runtime Environment (build 1.8.0_91-b15)
java HotSpot(TM) Client VM (build 25.91-b15, mixed mode)
If actually your java installation is a 32bit version, you should install the 64 bit one, or download the 32bit version of eclipse/RT-Druid.
Note that it is possible to have multiple installations of java and select the one to be used to run eclipse (see
https://wiki.eclipse.org/Eclipse.ini)
best regards,
Nicola
Re: Error in Eclipse
Posted: Tue Apr 30, 2019 11:33 am
by TronManI
Problem solved.I had to use 64-bit JVM on my machine.