libbacktrace icon indicating copy to clipboard operation
libbacktrace copied to clipboard

A C library that may be linked into a C/C++ program to produce symbolic backtraces

Results 63 libbacktrace issues
Sort by recently updated
recently updated
newest added

Incomplete since I can only support Windows. Tested on MinGW with GCC 7.3 & DWARF2 EH Fixes #12, at least for me ;)

* Provide project information to autotools * Add pkg-config file Resolves #65. The generated `libbacktrace.pc` would look like this: ``` prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: libbacktrace Description: A C library...

We got this request downstream for a .pc file: https://github.com/msys2/MINGW-packages/pull/7670

This is a different take on #72 and #26. Excerpt from the DEBUGINFOD(8) manual page about the requirement, with some reasoning about it: ``` /buildid/BUILDID/source/SOURCE/FILE If the given buildid is...

Around four years ago, libbacktrace learned to handle external (split) debuginfo, whereby it searches various distro standard locations by build-id. If this search is unsuccessful, it would be good to...

**OS:** Win10 Pro 20H2, 32-bit **Compiler:** gcc 11.2.0 (provided by MSYS2) **libbacktrace version:** master branch downloaded from Github on 2022-03-29 (also tested with the MSYS2 libbacktrace package, version r53.1da441c-3, built...

I tried cross compiled on MIPS and the static lib was generated fine ./mips-linux-gcc --version mips-linux-xgcc (Realtek RSDK-1.5.6p2) 4.4.6 Copyright (C) 2010 Free Software Foundation, Inc. ls ../rsdk-1.5.6-5281-EB-2.6.30-0.9.30.3-131105/lib/libbacktrace.a But getting...

I'm trying to get backtrace information for x86_64 executables on Windows, but the only Windows development environment I can really use to test this at the moment is Windows Insider...

## Problem I tried to get the stack info with libbacktrace on failure of C++ programs on mac os. My C++ code is compiled with `-fno-pie`, `-g`, but libbacktrace gave...

When you reach your process' open file descriptor limit, you can no longer produce a backtrace, because libbacktrace tries and fails to open the executable: ```text libbacktrace error: failed to...