stacktrace
stacktrace copied to clipboard
C++ library for storing and printing backtraces.
I'm trying to build boost with clang and get the library `boost_stacktrace_backtrace` at the end. If we use a process like this to just build stacktrace: ``` ./bootstrap.sh --with-toolset=clang cd...
AIX doesn't provide dladdr syscall. This patch implements a minimal version in order to be able to compile stacktrace.
When I do a simple stacktrace there is a memory leak that I do not expect: ``` int main() { int counter = 0; while (counter < 1000) { std::cout
I'm building this program based on the first example in the documentation: ``` #define BOOST_STACKTRACE_USE_ADDR2LINE #include #include void bar(int n) { if (n
### Environment Package Name/Version: **boost/1.76.0** Operating System+version: **Linux Ubuntu 20.04.3 LTS** (in docker) Compiler+version: **GCC 9** Docker image: **ubuntu/latest** ### Description I find it does not show the line number...
I'm building on Linux with mingw-w64 and the compiler fails to link to Dbgeng, presumably because the library name is in lower case ``` > find /opt/mingw-w64-build/ -name '*bgeng*' /opt/mingw-w64-build/x86_64-w64-mingw32/x86_64-w64-mingw32/include/dbgeng.h...
Added initial cmake, for now just builds existing library. I will try to add c++/clr support and C# support later on, that's why want to go with cmake. This is...
Boost: `1.72.0` OS: `Windows 7 x64`, `cygwin dll 3.1.2` Compiler: `cygwin/gcc 7.4.0` ``` PATH: "C:/Windows/system32" PATH: "C:/Windows" PATH: "C:/Windows/system32/Wbem" PATH: "c:/cygwin/3.0.x/bin" PATH: "c:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/bin" >pushd "d:/_3dparty/cygwin_gcc_x86/utility/boost/boost_1_72_0-build" >"d:/_3dparty/_src/utility/boost/boost_1_72_0/b2.exe" "-sBOOST_ROOT=d:/_3dparty/_src/utility/boost/boost_1_72_0"...
Compiler: MSVC 2019 - 16.8.5 x64 Operating system: Windows Server 2019 Build Mode: Release with Debug Info Boost version: 1.74.0 When trying to use boost stacktrace functionality on Windows in...
We don't have `addr2line` on macos. I wonder how we can get line information use our macro configuration. I used `brew` to install `boost`, and the version is `1.69.0`. After...