vote up 3 vote down star

I want to install a SIGSEGV and friends handler in C++ to print a stack trace and exit on a crash.

backtrace_symbols_fd from glibc is almost what I want, but it doesn't symbolize calls in anonymous namespaces. However, gdb deals with that just fine (I have symbols compiled in, DWARF etc).

What library would you recommend for my situation?

flag

1 Answer

vote up 1 vote down

Have you looked at abi::__cxa_demangle - this should correctly demangle the output from backtrace_symbols.

link|flag
Thanks, but it's not the point. I can live with a mangled symbol name - but for anonymous namespace I get no symbol name! That's the problem. – phjr Sep 3 at 16:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.