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?