1. 程式人生 > >ubuntu 編譯protobuf

ubuntu 編譯protobuf

編譯protobuf

1. https://github.com/google/protobuf/releases
2. https://github.com/google/protobuf/blob/master/src/README.md
3. 下載protobuf-3.5.1.tar.gz
4.解壓進入目錄

tar -zxvf protobuf-3.5.1.tar.gz
cd protobuf-3.5.1/
./autogen.sh
./configure
make
make check
sudo make install

5.檢查安裝成功

protoc –version


6. error:

./autogen.sh: 48: autoreconf: not found
是在不同版本的 tslib 下執行 autogen.sh 產生。它們產生的原因一樣,是因為沒有安裝automake 工具,執行安裝就行
sudo apt-get install autoconf automake libtool