| Crates.io | gnuv2_demangle |
| lib.rs | gnuv2_demangle |
| version | 0.1.0 |
| created_at | 2025-09-18 21:52:42.146745+00 |
| updated_at | 2025-09-18 21:52:42.146745+00 |
| description | GNU V2 C++ symbol demangler |
| homepage | |
| repository | https://github.com/Decompollaborate/gnuv2_demangle |
| max_upload_size | |
| id | 1845476 |
| size | 93,895 |
A GNU V2 C++ symbol demangler.
This crate demangles symbols for the outdated and no-longer-used V2 ABI mangling scheme of GNU g++. It is very unlikely this is actually the you are looking for, since this stuff is ancient.
Only use this crate if you are sure you want to use the g++ mangling scheme used in gcc 2.9 and older.
It is more likely you are looking for crates like
cpp_demangle,
symbolic-demangle
or cplus_demangle
c++filt, including certain
bugs. This behavior can be configured to avoid some inconsistencies and bugs
from the original c++filt implementation.no_std by default.
alloc.Add the following to your Cargo.toml:
[dependencies]
gnuv2_demangle = "0.1"
For a cli program, refer to g2dem.
use gnuv2_demangle::{demangle, DemangleConfig};
let config = DemangleConfig::new();
let demangled = demangle("do_thing__C6StupidRC6StupidT1", &config);
assert_eq!(
demangled.as_deref(),
Ok("Stupid::do_thing(Stupid const &, Stupid const &) const"),
);
I implemented this crate by throwing a lot of symbols at an old version of
c++filt (2.9 ish), looking the output and trying to make sense of the
demangling process.
Because of this, you can expect some inconsistencies, mismangled symbols and other issues while using this crate. If you find any problem feel free to reach out via Github issues or a PR.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
This library follows Semantic Versioning. We try to always keep backwards compatibility, so no breaking changes should happen until a major release (i.e. jumping from 1.X.X to 2.0.0).
To see what changed on each release visit either the CHANGELOG.md file or check the releases page on Github. You can also use this link to check the latest release.