1 Star 0 Fork 7

gameboys84/log4z

forked from Gitee 极速下载/log4z 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make.sh 952 Bytes
一键复制 编辑 原始数据 按行查看 历史
zsummer 提交于 2020-06-11 20:27 . auto make script
#!/bin/bash
if [ ! -d build_linux ]; then
mkdir build_linux
fi
cd build_linux
if [ $# -gt 0 ] && [ $1 = "max" ]; then
echo "has search max version"
if [ -f /usr/bin/g++-8 ]; then
cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-8 -DCMAKE_CXX_COMPILER=/usr/bin/g++-8 $* ../ -DCMAKE_BUILD_TYPE=Release
make -j2
cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-8 -DCMAKE_CXX_COMPILER=/usr/bin/g++-8 $* ../ -DCMAKE_BUILD_TYPE=Debug
make -j2
elif [ -f /usr/bin/g++-6 ]; then
cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-6 -DCMAKE_CXX_COMPILER=/usr/bin/g++-6 $* ../ -DCMAKE_BUILD_TYPE=Release
make -j2
cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-6 -DCMAKE_CXX_COMPILER=/usr/bin/g++-6 $* ../ -DCMAKE_BUILD_TYPE=Debug
make -j2
else
cmake $* ../
make -j2
fi
else
cmake $* ../ -DCMAKE_BUILD_TYPE=Release
make -j2
cmake $* ../ -DCMAKE_BUILD_TYPE=Debug
make -j2
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/gameboys84/log4z.git
git@gitee.com:gameboys84/log4z.git
gameboys84
log4z
log4z
master

搜索帮助