Skip to content
Snippets Groups Projects
make-lib.sh 390 B
Newer Older
Nguyen Anh Quynh's avatar
Nguyen Anh Quynh committed

# Run this with "debug" option to compile Keystone with debug info
if [ -n "$1" ]
then
# compile with DEBUG option
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=OFF -DLLVM_TARGETS_TO_BUILD="all" -G "Unix Makefiles" ..
else
# default compile
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DLLVM_TARGETS_TO_BUILD="all" -G "Unix Makefiles" ..
Nguyen Anh Quynh's avatar
Nguyen Anh Quynh committed
time make -j8