Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anfedotoff/libunwind-sys
Low-level bindings for the libunwind library
https://github.com/anfedotoff/libunwind-sys
Last synced: about 2 months ago
JSON representation
Low-level bindings for the libunwind library
- Host: GitHub
- URL: https://github.com/anfedotoff/libunwind-sys
- Owner: anfedotoff
- License: mit
- Created: 2020-02-02T15:53:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-17T15:40:26.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T18:38:20.265Z (3 months ago)
- Language: Rust
- Size: 860 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![crates.io](https://img.shields.io/crates/v/libunwind-sys.svg)](https://crates.io/crates/libunwind-sys)
# libunwind-sysThis Rust crate provides low-level bindings for the [libunwind] library.
Supported targets:
* x86_64-unknown-linux-gnu;
* i686-unknown-linux-gnu;
* i586-unknown-linux-gnu;
* arm-unknown-linux-gnueabihf;
* x86_64-unknown-linux-musl.Tests are provided only for x86_64-unknown-linux-gnu target.
[libunwind]: https://www.nongnu.org/libunwind/
## Installation
First, compile `libunwind` as a shared library and install it. Add this crate to your `Cargo.toml`:
```toml
[dependencies]
libunwind-sys = "0.5.1"
```
## LicenseThis crate is licensed under the [MIT license].
[MIT license]: LICENSE