Server-Root/libraries/build_protobuf.sh

13 lines
188 B
Bash
Raw Normal View History

2018-08-08 14:21:32 +00:00
cd protobuf
2018-08-09 09:33:43 +00:00
if [ -f build/src/.libs/libprotobuf.a ]; then
echo "protobuf already builded!"
exit 0
fi
2018-08-08 14:21:32 +00:00
./autogen.sh
cd build
../configure
make
2018-08-08 22:23:24 +00:00
#make check
2018-08-08 19:51:41 +00:00
sudo make install
sudo ldconfig