24 Star 44 Fork 8

Gitee 极速下载/bcos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bcosorg/bcos
克隆/下载
build.sh 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
#
# 一键安装脚本说明
#1 build.sh在centos和Ubuntu版本测试成功;
#2 所有Linux发行版本请确保yum和git已安装,并能正常使用;
#3 如遇到中途依赖库下载失败,一般和网络状况有关,请到https://github.com/bcosorg/lib找到相应的库,手动安装成功后,再执行此脚本
#
#!/bin/sh
#install nodejs
sudo yum install -y nodejs
sudo npm install -g cnpm --registry=https://registry.npm.taobao.org
sudo cnpm install -g babel-cli babel-preset-es2017
echo '{ "presets": ["es2017"] }' > ~/.babelrc
#install solc
wget https://github.com/ethereum/solidity/releases/download/v0.4.13/solc-static-linux
sudo cp solc-static-linux /usr/bin/solc
sudo chmod +x /usr/bin/solc
#install console
sudo cnpm install -g ethereum-console
#install deps
sudo yum -y install cmake3
sudo yum install -y openssl openssl-devel
chmod +x scripts/install_deps.sh
./scripts/install_deps.sh
#build bcos
mkdir -p build
cd build/
if grep -Eqi "Ubuntu" /etc/issue || grep -Eq "Ubuntu" /etc/*-release; then
cmake -DEVMJIT=OFF -DTESTS=OFF -DMINIUPNPC=OFF ..
else
cmake3 -DEVMJIT=OFF -DTESTS=OFF -DMINIUPNPC=OFF ..
fi
make -j2
# sudo make install
sudo cp eth/bcoseth /usr/local/bin/
cd ..
cd ./tool
cnpm install
cd ..
cd ./systemcontractv2
cnpm install
if [ ! -f "/usr/local/bin/bcoseth" ]; then
echo 'bcoseth build fail!'
else
echo 'bcoseth build succ! path: /usr/local/bin/bcoseth'
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/bcos.git
git@gitee.com:mirrors/bcos.git
mirrors
bcos
bcos
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385