Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 563 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 563 Bytes

cargo-demangle

Crates.io Crates.io

Demangles the detected symbols using rustc-demangle.

Usage

First install:

cargo install cargo-demangle

Then:

  • Demangle from stdin
    cargo objdump --release -- -d | cargo demangle | bat -l asm
  • Demangle from a file print to stdout
    cargo demangle somefile.asm
  • Demangle from a file and write the result to the same file
    cargo demangle -i somefile.asm