Has anyone had any luck getting JBuilder 4 to run on the Mac OS X PB?
JBuilder 3.5 seams to work (or at least 85% of it works).
With JBuilder 3.5 I was able to get it to install by using the following:
./install.bin LAX_VM `which java`
I wasn't able to find a similar way around the "unrecognized JVM" in JBuilder 4 so installed it on a Windows system and copied the directory structure to my Mac OS X box.
I created a start-up script which seams to get JBuilder 4 to start but it freezes shortly after the splash screen appears on screen.
Here's what I'm seeing in my console as JBuilder begins loading:
<SNIP>
[systemx:Applications/JBuilder4/bin] brian% ./jbuilder.sh
ls: ext/*.jar: No such file or directory
JBuilder 4 Professional
Licensed to Brian Scardina, ConfusedMonkey, Inc.
Copyright (c) 1996-2000 Inprise Corporation. All rights reserved.
Exception occurred during event dispatching:
java.lang.NoSuchMethodError
at com.borland.primetime.ide.Browser.<init& ;gt;(Unknown Source)
at com.borland.jbuilder.rb.run(Unknown Source)
at javax.swing.SystemEventQueueUtilities.processRunna bleEvent(SystemEventQueueUtilities.java:366)
at javax.swing.SystemEventQueueUtilities.access$0(Sys temEventQueueUtilities.java:362)
at javax.swing.SystemEventQueueUtilities$RunnableTarg et.processEvent(SystemEventQueueUtilities.java:403 )
at java.awt.Component.dispatchEventImpl(Component.jav a:2398)
at java.awt.Component.dispatchEvent(Component.java:23 11)
at java.awt.EventQueue.dispatchEvent(EventQueue.java: 288)
at java.awt.EventDispatchThread.pumpOneEvent(EventDis patchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispa tchThread.java:92)
at java.awt.EventDispatchThread.run(EventDispatchThre ad.java:83)
</SNIP>
The following is the script I am using to run JBuilder:
<SNIP>
#!/bin/sh
cd `dirname $0`/../lib
java -Xverify:none -Xms8m -Xmx128m -Xminf0.2 -Xmaxf0.2 -cp /System/Library/Frameworks/JavaVM.framework/Versions/1.2/Classes/jpda.jar:`ls -1 ext/*.jar *.jar | awk '$0 != "lwtoolkit.jar" {printf "%s:", $0}'` com.borland.jbuilder.JBuilder
</SNIP>
Any ideas or suggestions?
thanks in advance for the help.
-Brian