before_install.linux.sh 272 字节
Newer Older
Y
Yu Yang 已提交
1 2
#!/bin/bash
set -e
3 4 5 6 7 8 9 10 11 12 13

cd /tmp
wget https://github.com/google/protobuf/archive/v3.0.2.tar.gz -O protobuf.tar.gz
tar xf protobuf.tar.gz
cd protobuf*
./autogen.sh
./configure
make -j 2 install
cd ..
rm -rf protobuf*

Y
Yu Yang 已提交
14 15 16 17 18
pushd /usr/src/gtest
cmake .
make
sudo cp *.a /usr/lib
popd