https://bugzilla.novell.com/show_bug.cgi?id=694751 https://bugzilla.novell.com/show_bug.cgi?id=694751#c3 Michael Matz <matz@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID Severity|Major |Normal --- Comment #3 from Michael Matz <matz@novell.com> 2011-07-21 15:46:44 UTC --- You linked your shared library incorrectly. In particular you're using ld directly, which is not going to work. One symptom of "not working" is exactly that unwinding through shared library borders doesn't work. In this particular case adding --eh-frame-hdr would have been enough, but there are other reasons why you shouldn't use ld directly to create shared libraries. Please always use the appropriate driver (gcc or g++):
gcc -shared -g -o libbt.so bt.o
Then the testcases will work. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.