bRPC 编译、安装与样例测试。
系统环境
- Ubuntu 18.04 以上
- gcc 4.x ~ 11.x
- brpc-1.5.0
3 个特定版本的关键依赖:
- gflags-2.2.2
- protobuf-3.20.0
- glog-0.4.0
后文的依赖和项目的路径:
/users/CS0522/bthread-dep/gflags-2.2.2/
/users/CS0522/bthread-dep/protobuf/
/users/CS0522/bthread-dep/glog-0.4.0/
/users/CS0522/custom-brpc/brpc/
安装依赖
安装其他依赖
openssl、leveldb、ibverbs,以及静态链接 leveldb 的依赖:
1 | sudo apt install -y libssl-dev libleveldb-dev libibverbs-dev librdmacm-dev libsnappy-dev |
安装关键依赖
按顺序安装!
安装 gflags:
1 | # /users/CS0522/bthread-dep/gflags-2.2.2 |
安装 protobuf:
1 | # /users/CS0522/bthread-dep/protobuf/ |
安装 glog:
1 | # /users/CS0522/bthread-dep/glog-0.4.0/ |
编译 brpc
1 | # /users/CS0522/custom-brpc/brpc/ |
echo 样例测试
修改 CMakeLists.txt
新的压缩包 custom-bprc.zip
中已经修改好:
1 | # /users/CS0522/custom-brpc/brpc/example/echo_c++/ |
编译
1 | # /users/CS0522/custom-brpc/brpc/example/echo_c++/ |
运行
1 | # /users/CS0522/custom-brpc/brpc/example/echo_c++/build/ |