[ubuntu]ubuntu18.04上源码编译protobuf
Posted FL1623863129
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ubuntu]ubuntu18.04上源码编译protobuf相关的知识,希望对你有一定的参考价值。
安装依赖
sudo apt update
sudo apt install libprotobuf-dev protobuf-compiler cmake git -y
下载源码:
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.19.4/protobuf-all-3.19.4.tar.gz
tar -zxvf protobuf-all-3.19.4.tar.gz
你也可以下载其他版本源码或者最新的,比如:
git clone https://github.com/protocolbuffers/protobuf.git
开始编译:
cd protobuf-3.19.4
./autogen.sh
./configure
make -j8
sudo make install
sudo ldconfig # refresh shared library cache
检查是否安装成功:
protoc --version
以上是关于[ubuntu]ubuntu18.04上源码编译protobuf的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu18.04编译ZLMediakit支持webrtc
Ubuntu18.04源码编译Carla0.9.13保姆级教程