1 Star 0 Fork 130

shenbing/cppweb

forked from 寻根/cppweb 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
configure 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
寻根 提交于 2021-04-14 15:29 . cppweb.1.1.0版本
#!/bin/bash
name=`uname`
setup=cppshell/setup
if [ "$name" == "Linux" ]
then
setup=cppshell/setup
else
setup=cppshell/setup.exe
if [ `pwd | wc -w` -gt 1 ]
then
echo 'current path has space character'
return -1
fi
fi
echo 'initialize configure'
echo '---------------------------------------------'
if [ -d C:/Windows/System32 ]
then
mkdir -p product/win/lib
mkdir -p product/win/dll
mkdir -p product/win/bin
gccpath=`pwd`/product/win/gcc/bin
if [ -d $gccpath ]
then
if [ `which g++ 2> /dev/null | wc -l` -eq 0 ]
then
export PATH=$PATH:$gccpath
echo '' >> $HOME/.bash_profile
echo 'export PATH=$PATH:'$gccpath >> $HOME/.bash_profile
fi
fi
if [ -f product/win/lib/openssl/lib/ssl.lib ]
then
cp product/win/lib/openssl/lib/*.dll product/win/bin
echo '1.check openssl success'
else
echo 'please install openssl first'
return -1
fi
else
mkdir -p product/lib
mkdir -p product/dll
mkdir -p product/bin
if [ `which openssl 2> /dev/null | wc -l` -eq 0 ]
then
echo 'please install openssl first'
return -1
else
echo '1.check openssl success'
fi
fi
if [ -f cppshell/setup.cpp ]
then
rm -rf $setup
g++ -std=c++11 cppshell/setup.cpp -o $setup
if [ ! -f $setup ]
then
echo "compiler don't support c++11"
return -1
fi
echo '2.check g++ compiler success'
else
echo '2.skip g++ compiler check'
fi
if [ `which javac 2> /dev/null | wc -l` -gt 0 ]
then
echo '3.check java compiler success'
else
echo '3.skip java module initialize'
fi
echo '4.create product directory success'
if [ -f $setup ]
then
$setup && rm $setup
fi
source ~/.bash_profile
if [ -z $SOURCE_HOME ]
then
echo 'export environment variable failed'
return -1
fi
echo '5.export environment variable success'
sleep 1
echo '---------------------------------------------'
echo ''
echo '>>> initialize build-essential success'
echo ''
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/shenbing19880101/cppweb.git
git@gitee.com:shenbing19880101/cppweb.git
shenbing19880101
cppweb
cppweb
master

搜索帮助