1 Star 0 Fork 0

pete.leong / keystone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make-common.sh 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
BUILDTYPE='Release'
# on MacOS, do not build universal binaries by default
ARCH=''
# by default we do NOT build 32bit on 64bit system
LLVM_BUILD_32_BITS=0
# by default we build libraries & kstool
# but we can skip kstool & build libraries only
BUILD_LIBS_ONLY=0
while [ "$1" != "" ]; do
case $1 in
lib_only)
BUILD_LIBS_ONLY=1
;;
lib32)
LLVM_BUILD_32_BITS=1
;;
debug)
BUILDTYPE='Debug'
;;
macos-no-universal)
ARCH='' # do not build MacOS universal binaries
;;
macos-universal)
ARCH='i386;x86_64' # build MacOS universal binaries
;;
*)
echo "ERROR: unknown parameter \"$1\""
usage
exit 1
;;
esac
shift
done
1
https://gitee.com/eversafe/keystone.git
git@gitee.com:eversafe/keystone.git
eversafe
keystone
keystone
master

搜索帮助