blob: a5ec1f871357b5c4693ccc3dbb173513b524f109 [file] [log] [blame]
Nguyen Anh Quynh9ede5c12019-02-01 13:43:18 +08001# Capstone disassembler engine (www.capstone-engine.org)
2# Build Capstone libs for X86 only (libcapstone.so & libcapstone.a) on *nix with CMake & make
3# By Nguyen Anh Quynh, 2019
4
5# Uncomment below line to compile in Diet mode
Nguyen Anh Quynh5cec47a2019-02-01 13:50:18 +08006# cmake -DCMAKE_BUILD_TYPE=Release -DCAPSTONE_BUILD_DIET=ON -DCAPSTONE_X86_ONLY=1 ..
Nguyen Anh Quynh9ede5c12019-02-01 13:43:18 +08007
8cmake -DCMAKE_BUILD_TYPE=Release -DCAPSTONE_X86_ONLY=1 ..
9
10make -j8