> Am having a problem catching exceptions.
> I work with shared libraries, I throw an exception and catch it in the
> same dll. The problem is that it is not caught, instead I get a
> SIGABORT.
> The same code works for me on other Unix platforms, using the native
> compiler.
> Any ideas?

It's hard to tell, with as little information as you gave. A typical
problem is that not all code on the stack is compiled with
-fexceptions; in particular, C code is often not compiled that way.
There could be hundreds of other reasons as well, of course.

Regards,
Martin

Reply via email to