Mac OS下从源码编译gRPC
本帖最后由 zhaohuarong 于 2021-5-10 14:42 编辑gRPC简介
https://www.grpc.io/
1.先安装XCode
2.安装所需要的依赖库
brew install autoconf automake libtool shtool
brew install gflags
3.下载grpc
git clone https://github.com/grpc/grpc
cd grpc
git submodule update --init
4.编辑
mkdir -p cmake/build
cd cmake/build
cmake ../..
make install
页:
[1]