Crates.io | falcon_capstone |
lib.rs | falcon_capstone |
version | 0.5.2 |
source | src |
created_at | 2017-11-09 13:52:54.53944 |
updated_at | 2023-02-15 02:25:01.737502 |
description | Capstone bindings in rust |
homepage | https://github.com/falconre/falcon_capstone |
repository | https://github.com/falconre/falcon_capstone |
max_upload_size | |
id | 38737 |
size | 70,492 |
This is a fork of Mm7's capstone bindings for Rust, which can be found here.
Vendored work thanks to @marirs and @mnaza.
In Cargo.toml include
[dependencies]
falcon_capstone = { git = "https://github.com/falconre/falcon_capstone", branch = "master", features = ["vendored"] }
In Cargo.toml include
[dependencies]
falcon_capstone = { git = "https://github.com/falconre/falcon_capstone", branch = "master" }
For any reason if its not getting compiled in macOS complaining about capstone/capstone.h not found
although you have it, compile using the following method:
CPATH="/usr/local/include" LIBRARY_PATH="/usr/local/lib" cargo b
assuming that /usr/local/include
has the header files of capstone and /usr/local/lib
having the capstone lib files.
This is because CLANG in macOS has its include
and lib
path in a different folder location which might not be in the search path.
License: LGPL-3