undefined symbol: _Unwind_Resume
Hey there.
Well, I think I have a problem with my gcc compiler, and linking with some libraries.
I installed a package and everything worked fine, until I used a Java API, which used a library 'librqljni.so'.
The problem was that while running a java testing class, which was provided with the package, I got this error message:
librqljni.so: undefined symbol: _Znwj
I looked it up in google, and found out that gcc wasn't linking with a library. So I added '-lsupc++' (that was the proposed solution) in the Makefile, where making the 'librqljni.so'.
On testing again, I now got this error message:
librqljni.so: undefined symbol: _Unwind_Resume
Again, I searched the google for an answer, but couldn't fing anything satisfying. I got the idea that it has to do with linking with hidden libraries (?).
Does anybody have a clue what to do?
I'm using Mandrake 9.0, gcc 3.2
Thank you in advance,
Tony
|