cargo-binutils 0.4.0

Proxy for LLVM tools like llvm-nm, llvm-objdump and llvm-size
Documentation
1
2
3
4
5
6
7
8
9
10
const EXAMPLES: &str = "

EXAMPLES

`cargo objdump --lib --release -- -d`                   - disassemble
`cargo objdump --bin foo --release -- -s -j .rodata`    - prints the contents of the .rodata section";

fn main() {
    cargo_binutils::Tool::Objdump.cargo_exec(Some(EXAMPLES))
}