This is the mail archive of the
archer@sourceware.org
mailing list for the Archer project.
Re: C++ exceptions catching through GDB-patched .eh_frame
Jan Kratochvil <jan.kratochvil@redhat.com> writes:
> (2) The personality routine is always `__gxx_personality_v0' (by PLT).
That may be currently true for everything that gdb cares about, but
it's not *always* __gxx_personality_v0. On cygwin, or any other
target which uses setjmp/longjmp exceptions, it will be
__gxx_personality_sj0.
For Java, it will be __gcj_personality_sj0 or __gcj_personality_v0.
Ian