backward-cpp icon indicating copy to clipboard operation
backward-cpp copied to clipboard

A beautiful stack trace pretty printer for C++

Results 110 backward-cpp issues
Sort by recently updated
recently updated
newest added

Could be nice to fix some -Wold-style-cast warnings: ``` In file included from backward-cpp/backward.cpp:36: backward-cpp/backward.hpp: In member function ‘virtual backward::ResolvedTrace backward::TraceResolverLinuxImpl::resolve(backward::ResolvedTrace)’: backward-cpp/backward.hpp:1788:47: warning: use of old-style cast to ‘Dwarf_Addr’ {aka...

# How to store back trace info to a file? I want to store this segment fault info to a file, how to realize(or configuration) it ? Thanks!

question

Hi, When I'm using the SignalHandling to print stack traces on signals, I sometimes get only a few lines out of the trace, and the app crashes before the whole...

question

This can be useful when the library loads before the file paths are known. For example, if this is being used in a library and the path information is only...

Thank you for making this library, it's very useful to us! This PR tries to address a couple of minor pain points we encountered when using the library: * Makes...

Hey, while installing the library in my project i got 2 compiler warnings due to my pedantic settings ("/W4" under Windows, "-Wall -Wextra -Werror -Wno-long-long -Wpedantic" under linux). It would...

I have build binutils-2.21.1 for gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux ,and add code to me cmake as add_subdirectory(/work/project//thirdLib/backward-cpp ./xxyy) INCLUDE_DIRECTORIES(/work/project//thirdLib/backward-cpp) ...... link_directories(/test/binutils/binutils-2.21.1/123-arm/build_arm/lib) add_backward(mydemoso) but it always tells me -- Could NOT find libdw (missing:...

For the record (might go to the docs?), compiling with clang 7 on arm (`armv6k-unknown-linux-gnueabihf`) resulted in undefined symbol `_Unwind_GetIPInfo`; this was solved by linking against `-lunwind` from llvm. Feel...

question

backward-cpp already supports loading debug symbols from a separate file. But currently, a separate file with debug symbols has to be located in the current working directory while the [GDB...

In some case, I run the software as service, does it put the dump information to log file?