If you need to statically link leveldb, install libsnappy-dev as well.
**compile**
git clone this repo. cd into the repo and run: sh config_brpc.sh --headers=/usr/include
--libs=/usr/lib
**run example**
cd into example/echo_c++, make, run echo_server and echo_client
**run examples with cpu/heap profilers**
machine running the code.
## Ubuntu/LinuxMint/WSL
### compile
1. install common deps: git g++ make libssl-dev
2. install gflags protobuf leveldb: libgflags-dev libprotobuf-dev libprotoc-dev protobuf-compiler libleveldb-dev. If you need to statically link leveldb, install libsnappy-dev as well.
3. git clone this repo. cd into the repo and run
```
$ sh config_brpc.sh --headers=/usr/include --libs=/usr/lib
```
4. make
### run example
```
$ cd example/echo_c++
$ make
$ ./echo_server &
$ ./echo_client
```
### run examples with cpu/heap profilers
Install libgoogle-perftools-dev and re-run config_brpc.sh before compiling
**compile tests**
### compile tests
Install gmock and gtest, use the gtest embedded in gmock and don't install libgtest-dev