views:

2278

answers:

7

The list of installed JRE's is empty, when I click "add" the only options I'm given are - Execution Environment Description, Standard 1.1.x VM, Standard VM.

There's no option for a MacOS Default JRE and choosing standard VM results in the usual "Standard VM not supported on MacOS".

Eclipse Galileo, Mac OS X 10.5.8.

Any suggestions much appreciated

+1  A: 

You have an "add" button in there which lets you add a new JVM. In fact, there should even be a "look for JVMs" button.

If you really don't have one handy, just download a JDK from Sun and then use add to add it to your list of JVMs, and set it to be the default.

Carl Smotricz
When you click "add" you have to choose what type of VM to add. The only options are "Standard VM","Standard 1.1.x VM" and "Execution Environment Description". Choosing one of these results in "Standard VM not supported on MacOS" error. All the searches I've done on the problem suggests there is supposed to be a "MacOS Default" option available as well. I know the location of the JVMs, just can't add one. Clicking the search button brings up the 'operation in progress' dialogue for less than half a second before it fails.
Jonathon
The JDKs from Sun do not work on Mac OS X. On Mac OS X, one must use the version of the JVM/JDK provided by Apple.
Michael Aaron Safyan
Sorry about that! I got it working without a problem on my MacBook and naturally forgot exactly how I did it.
Carl Smotricz
+1  A: 

I'm not sure what exactly your question is...

If you want to know where the JVM/JDK resides on Mac OS X, the various versions can be found in /System/Library/Frameworks/JavaVM.framework/Versions. Just add one of these to Eclipse.

jackrabbit
+3  A: 

The "Standard VM not supported on MacOS" message has been seen since eclipse3.3 (2006!).

The bug 156343 reports it fixed in the... eclipse3.6M2 (Helios, M2 released in September 2009, final version to be released in June 2010)


If there is no JVM at all, try to specify one explicitly in the eclipse.ini (like the one I propose, except I use Windows-like path), and see if there is still no JVM proposed in this list after restart.
Check that also with Helios3.6M3 (latest Milestone currently available, and check if all the issue is still there.


A current workaround (that is, if a default VM was there in the first place) would be to, for example for a JDK like the JRockit one:

add the JRockit VM's jars as libraries.
The Mac's classes will take precedence (since they're on the boot classpath) but you'll also be able to see any specifics in the Jar of the attached bundle.

To keep JDT sane, you should probably ensure that the Mac's VM comes first in the .classpath though ...


The 3.6M2 will authorize this, for instance:

alt text

VonC
I think this bug report assumes the person already has the Mac VM added, I don't even have that much as there's no option to add a Mac VM.
Jonathon
@Jonathon: true, but could you try the 3.6M2 (or M3 for that matter) and check if you can add a Mac VM with it?
VonC
@VonC I installed Helios and you're right, I have the option to add MacOS JVM, helios picks up the mac jre's automatically and assigns the correct one. My Galileo version is the one bundled with PDT, and has a lot of plugins already added, is there anyway I can port those plugins over to Helios, or at least get Helios to pick up the "available software sites" ?
Jonathon
A: 

If you want OSX's built-in JVM, then you can add it as a Mac OSX VM, else the comment of VonC tells you what to do.

Zoltán Ujhelyi
A: 

I had this exact problem with the same version of Eclipse and Mac OS X. A minor detail note, it was the PHP version of Eclipse. I couldn't determine a resolution within Eclipse, but downloading the normal version of Eclipse yielded the ability to select the Mac VM.

James Pearce
+6  A: 

I just had the same problem and I was able to fix it. I had installed Eclipse for PHP (PDT) because I couldn't get PDT to work with Eclipse classic. I then found out that with the new install, Java files won't run! But there's a simple solution:

Go to Help->Install New Software...

Select:

Galileo - http://download.eclipse.org/releases/galileo

Under Programming Languages choose:

Eclipse Java Development Tools 3.5.1.r351_v20090810-0600-7r88FEoFI0WTo6Az-1qFRHm37ChJ

Install and you'll find your JREs!

Joshua
+1  A: 

1) Follow Joshua's answer: "Help->Install New Software... Select: Galileo - http://download.eclipse.org/releases/galileo Under Programming Languages choose: Eclipse Java Development Tools 3.5.x..."

2) Then go to Eclipse -> Preferences -> Java -> Installed JREs.

3) Click ADD.

4) Under 'Installed JRE Types" you should see the previously missing "MacOS X VM". Select this and click NEXT.

5) Click the BROWSE button next to the JRE home field, and the dialog box should say "Select the root directory of the JRE installation"

6) Browse to /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home

7) Click OPEN.

8) In the JRE name field type "JVM 1.5"

9) From there you should just be able to click FINISH and have your JRE available.

I used this to fix a missing JRE error building a Google App Engine project.

Rendall