mirror of
https://github.com/keystone-engine/keystone
synced 2026-06-08 15:15:30 +00:00
15 lines
390 B
Bash
Executable File
15 lines
390 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# 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" ..
|
|
fi
|
|
|
|
time make -j8
|
|
|