gsym-rs 0.1.0

Pure-Rust reader, writer, and Linux ELF/DWARF converter for LLVM GSYM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Command-line suite: the `gsymtool` binary and interoperability with LLVM.
//!
//! Both modules drive real processes on a Linux host. The `gsymtool` binary
//! pins its own feature set, so these tests only need `convert` for the
//! in-process conversion `interop` performs before handing bytes to LLVM.

#![cfg(all(target_os = "linux", feature = "convert"))]

#[path = "../common/tools.rs"]
mod tools;

mod gsymtool;
mod interop;