Skip to main content



      Home
Home » Eclipse Projects » Eclipse Platform » FreeBSD Eclipse NoClassDefFoundError
FreeBSD Eclipse NoClassDefFoundError [message #95161] Wed, 16 July 2003 15:22 Go to next message
Eclipse UserFriend
I have acquired and installed the 2.1.1 freebsd eclipse. Having unzipped
it into a directory in my user area, I was able to run and exercise the
tool. I moved it to a common location so multiple users could run a
'vetted version' specifiying their own workspace usin a perl script.

:
:
exec "cd /jdk/eclipse/bsd-eclipse2.1.1/; ./eclipse -debug -data $workspace
-ws=motif";
:

Unfortunately once the insatllation was moved the error below occurs. I
can still run it from my own login account just not the copy in a
different location. Any idea appreiated.




Debug-Options:
file:/jdk/eclipse/bsd-eclipse2.1.1/.options
Install URL:
file:/jdk/eclipse/bsd-eclipse2.1.1/
java.lang.NoClassDefFoundError:
org/eclipse/ui/internal/dialogs/PropertyPageManager
at
org.eclipse.ui.internal.WorkbenchActionBuilder.makeActions(W orkbenchActionBuilder.java:989)
at
org.eclipse.ui.internal.WorkbenchActionBuilder.buildActions( WorkbenchActionBuilder.java:184)
at
org.eclipse.ui.internal.WorkbenchWindow.<init>(WorkbenchWindow.java:295)
at
org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workben ch.java:1058)
at
org.eclipse.ui.internal.Workbench.openFirstTimeWindow(Workbe nch.java:1067)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:874)
at org.eclipse.ui.internal.Workbench.run(Workbench.java:1373)
at
org.eclipse.core.internal.boot.InternalBootLoader.run(Intern alBootLoader.java:858)
at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:291)
at org.eclipse.core.launcher.Main.run(Main.java:747)
at org.eclipse.core.launcher.Main.main(Main.java:583)
Re: FreeBSD Eclipse NoClassDefFoundError [message #95268 is a reply to message #95161] Wed, 16 July 2003 17:04 Go to previous message
Eclipse UserFriend
Originally posted by: muelleimer.usenet.katzien.de

Hallo!

* Mike Shipkowski <michael.shipkowski@sas.com> wrote:
> I have acquired and installed the 2.1.1 freebsd eclipse. Having unzipped

BTW, it would be nice to get this 'non default platforms' download
locations also listed somewhere on the eclipse.org site...

Where can I have a look how the BSD packages are made?

> exec "cd /jdk/eclipse/bsd-eclipse2.1.1/; ./eclipse -debug -data $workspace
> -ws=motif";
^^^^^^^^^

Can you also run the gtk version?

> file:/jdk/eclipse/bsd-eclipse2.1.1/.options

enabled all the options?

> java.lang.NoClassDefFoundError:
> org/eclipse/ui/internal/dialogs/PropertyPageManager

This all look like some of your plugins got excluded: have a look at
<workspace>/.metadata/.config/platform.cfg and see if there are any
site.x.lists.x=<plugin paths> entries.

I just "fixed" that in the debian packages by doing this in the
startscript:

platform="$WORKSPACE/.metadata/.config/platform.cfg"
if [ -w $platform ] ; then
excluded=grep "list" $platform
if [ "$excluded" != "" ] ; then
bak="$WORKSPACE/.metadata/.config/platform.cfg.bak"
mv $platform $bak
echo "Backed up bogus platform.cfg..."
sed 's/.*\.list.*//g' < $bak > $platform
fi
fi

This is a really crude hack, but I was so fed up with this after
one afternoon debugging my packageing scrips just to find the problem
in this %&$§%& file...

This are related bugreports, but with differnt plugins:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=192176
https://bugs.eclipse.org/bugs/show_bug.cgi?id=37321

Jan
Previous Topic:how is the "dirty with respect to CVS" computation done?
Next Topic:Installing the help system as an infocenter
Goto Forum:
  


Current Time: Sun Aug 31 13:36:42 EDT 2025

Powered by FUDForum. Page generated in 0.03029 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top