Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I force Eclipse to use Sun Java?

Before installing Eclipse, I had OpenJDK as the default JVM. Recently I changed it to Sun Java.

I did this because Eclipse Helios was running really slow. Unfortunately, it is still slow... Do you have any ideas how to force it to use Sun Java?

I could reinstall Eclipse, however I have already installed the Android SDK, so I would have to install that again. After all, I don't think that's the correct way of solving the problem. I'm using Ubuntu 10.10.

$ java -version  
java version "1.6.0_22" 
Java(TM) SE Runtime Environment (build1.6.0_22-b04) 
Java HotSpot(TM) 64-Bit Server VM (build 17.1-b03, mixed mode)

I would be grateful for any help.

like image 776
Dan Avatar asked Dec 29 '22 02:12

Dan


1 Answers

Edit $ECLIPSE_HOME/eclipse.ini and add the following before the vmargs option.

-vm
/opt/path/to/sun-jdk-1.6.0.02/bin/java
like image 56
dogbane Avatar answered Dec 30 '22 15:12

dogbane