The libunwind package contains a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://github.com/libunwind/libunwind/releases/download/v1.8.2/libunwind-1.8.2.tar.gz
Download MD5 sum: 0124a38fb752aa5492635f35d089f6b7
Download size: 960 KB
Estimated disk space required: 24 MB (with tests)
Estimated build time: 0.2 SBU (with tests)
texlive-20250308 (for latex2man)
First, fix a problem when building with gcc-15:
sed -i '/func.s/s/s//' tests/Gtest-nomalloc.c
Install libunwind by running the following commands:
./configure --prefix=/usr --disable-static && make
To test the results, issue: make check.
Now, as the root
user:
make install
--disable-static
: This
switch prevents installation of static versions of the libraries.