mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-24 05:59:45 +00:00
4ae8645b43
* add wasm arch * fix bug * delete todo & add wasm into readme
11 lines
381 B
Bash
Executable File
11 lines
381 B
Bash
Executable File
# Capstone disassembler engine (www.capstone-engine.org)
|
|
# Build Capstone libs for X86 only (libcapstone.so & libcapstone.a) on *nix with CMake & make
|
|
# By Nguyen Anh Quynh, 2019
|
|
|
|
# Uncomment below line to compile in Diet mode
|
|
# cmake -DCMAKE_BUILD_TYPE=Release -DCAPSTONE_BUILD_DIET=ON -DCAPSTONE_X86_ONLY=1 ..
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCAPSTONE_X86_ONLY=1 ..
|
|
|
|
make -j8
|