Server-Root/libraries/build_protobuf.sh
2018-08-09 09:33:43 +00:00

13 lines
188 B
Bash
Executable File

cd protobuf
if [ -f build/src/.libs/libprotobuf.a ]; then
echo "protobuf already builded!"
exit 0
fi
./autogen.sh
cd build
../configure
make
#make check
sudo make install
sudo ldconfig