https://github.com/rizinorg/rz-libdemangle
Rizin Library to demangle symbols
https://github.com/rizinorg/rz-libdemangle
hacktoberfest reverse-engineering rizin
Last synced: 11 months ago
JSON representation
Rizin Library to demangle symbols
- Host: GitHub
- URL: https://github.com/rizinorg/rz-libdemangle
- Owner: rizinorg
- Created: 2021-09-11T09:17:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-30T14:31:16.000Z (12 months ago)
- Last Synced: 2025-04-19T09:05:03.533Z (11 months ago)
- Topics: hacktoberfest, reverse-engineering, rizin
- Language: C
- Homepage:
- Size: 373 KB
- Stars: 9
- Watchers: 7
- Forks: 8
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSES/GPL-2.0-or-later.txt
Awesome Lists containing this project
README
# Rizin libdemangle
This library contains all rizin demanglers and is linked statically in rizin to provide demangling support in rizin
## Run tests with asan
```
meson -Dbuildtype=debugoptimized -Db_sanitize=address,undefined build
ninja -C build test
```
## Build and install cli tool
This cli tool does not require rizin.
### Install
```
meson --prefix=/usr -Denable_cli=true build
ninja -C build install
```
### Usage
```
demangle -s pascal 'OUTPUT_$$_init'
```
## Install library in prefix path
```
meson --prefix=/usr -Dinstall_lib=true build
ninja -C build install
```