Re: [Java-gnome-developer] undefined reference to `org::gnu::gtk::Entry::class$'
Brought to you by:
afcowie
From: Andrew O. <ove...@re...> - 2006-11-24 16:09:06
|
On Fri, 2006-24-11 at 16:29 +0100, Jean-Christian de Rivaz wrote: > jcdr@citron:~/workspace/Simple$ LANG=3DUS gcj-4.1 > --classpath=3D/usr/share/java/gtk2.10.jar:/usr/share/java/glib0.4.jar:/us= r/share/java/glade2.12.jar -L /usr/lib/jni -lglibjni-0.4 -lgtkjni-2.10 -lgl= adejni-2.12 /usr/lib/gcj/gtk2.10.jar.so src/ch/eclis/test/Simple.java You're mixing the old C++ ABI and the new BC-ABI. The .jar.so file is a BC-ABI .so. You'll need to add -findirect-dispatch to your compilation line to make that work. However, you should probably read about the BC-ABI and gcj-dbtool. I don't have any pointers OTTOMH, but google should probably find some stuff. HTH, Andrew |