加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install_and_compile.sh 560 Bytes
一键复制 编辑 原始数据 按行查看 历史
橘色的喵 提交于 2016-12-24 17:41 . first commit
#/bin/bash
# 解压并安装poco库
tar xzvf poco-1.7.6.tar.gz
cd poco-1.7.6
./configure --no-tests --no-samples --minimal --static
make
sudo make install
cd ..
# 安装sqlite3
tar xzvf sqlite-autoconf-3150200.tar.gz
cd sqlite-autoconf-3150200
./configure
make
sudo make install
cd ..
# 拷贝认证模块库
sudo cp -f thirdparty/libGBFPIA.so /usr/local/lib
# 编译服务器程序
cd prj_linux
make
cd ..
# 给可执行程序增加可执行权限
cd bin
chmod +x *
cd ..
# 删除多余的文件
rm -rf poco-1.7.6*
rm -rf sqlite-autoconf-3150200*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化