gimli-rs / addr2line

A cross-platform `addr2line` clone written in Rust, using `gimli`
https://docs.rs/addr2line
Apache License 2.0
315 stars 62 forks source link

Replace `Context::new` with `Loader::new` #296

Closed philipc closed 6 months ago

philipc commented 6 months ago

The Loader encapsulates the process of loading the DWARF data and keeping it alive so that the Context can refer to it. It also handles tasks such as loading dSYM or DWO files.

This allows us to remove the object crate from the public API.

Closes #253