+

共识客户端部署部署

详细部署步骤

Posted by Coozw on 2022-09-14
Words 131 and Reading Time 1 Minutes
Viewed Times

系统 CentOS 7.2

拉取源码

1
git clone git@github.com:sigp/lighthouse.git

升级依赖
libclang
https://blog.csdn.net/henry14760002630/article/details/121195315

1
2
3
4
yum install centos-release-scl -y
yum install llvm-toolset-7 -y
scl enable llvm-toolset-7 bash
clang --version

cmake

1
2
3
4
5
6
7
wget https://cmake.org/files/v3.9/cmake-3.9.2.tar.gz
tar -zxvf cmake-3.9.2.tar.gz
./configure
make && make install
ln -s /usr/local/cmake-3.9.2/bin/*  /usr/bin/
cmake --version

gcc(https://www.jianshu.com/p/8d1d6dafc140)

1
2
3
4
yum -y install centos-release-scl
yum -y install devtoolset-8-gcc devtoolset-8-gdb devtoolset-8-gcc-c++ devtoolset-8-binutils
scl enable devtoolset-8 bash
echo “source /opt/rh/devtoolset-8/enable” >>/etc/profile

描述文档L:


...

...

00:00
00:00