Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tetsuo-cpp/sleigh

CMake wrapper for SLEIGH
https://github.com/tetsuo-cpp/sleigh

Last synced: 3 days ago
JSON representation

CMake wrapper for SLEIGH

Awesome Lists containing this project

README

        

# SLEIGH

SLEIGH is a machine language translation and disassembly engine that is leveraged as part of the Ghidra decompiler.

This repository exposes a CMake build for SLEIGH so that it can be integrated into other projects.

### Build

```sh
mkdir build/
cd build/
cmake \
-DCMAKE_INSTALL_PREFIX="" \
-G Ninja \
../
cmake --build .
cmake --build . --target install
```