Centos编译安装grpc

相关工具

yum install -y gcc gcc-c++ autoconf libtool
yum install epel-release
sudo yum install make automake gcc gcc-c++ kernel-devel autoconf libtool pkg-config
yum groupinstall -y “Development Tools”

如果报 Get "https://proxy.golang.org/golang.org/x/crypto“错误 设置以下代理

go env -w GOPROXY=https://goproxy.cn

source code

git clone https://github.com/grpc/grpc.git
cd grpc
git submodule update --init

在grpc/cmake下建立build文件夹
cd grpc/cmake/build
执行:
cmake -DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF -DBUILD_SHARED_LIBS=ON -D CMAKE_INSTALL_PREFIX=/opt/grpc …/…

如果出现以下错误

Module or Group ‘“Development’ is not available.
尝试以下方法解决
cd /etc/yum.repos.d
sudo wget http://public-yum.oracle.com/public-yum-el5.repo
cd /etc/pki/rpm-gpg/
sudo wget https://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5

再执行
yum groupinstall -y “Development Tools”
或者
yum --disablerepo=‘epel’ groupinstall “Development Tools”

你可能感兴趣的:(c++,centos,linux,运维)