标签:
get the grpc source file..
1 git clone https://github.com/grpc/grpc 2 git submodule update --init --recursive 3 cd third-party/protobuf 4 ./autogen.sh #this step consist of a step of curl getting gmock, might failed.. advice is to use thunder to download in advance.. for more info, see this file.. 5 ./configure --prefix=/usr 6 make 7 make install 8 ldconfig 9 export PKG_CONFIG_PATH=/lib/pkgconfig/ 10 cd ../.. 11 make 12 make install
标签:
原文地址:http://www.cnblogs.com/sansna/p/5771219.html