红联Linux门户
Linux帮助

在ubuntu14.04编译protobuf-c for arm版本

发布时间:2017-01-13 09:55:41来源:linux网站作者:coding梦想_起点
摘要:protobuf-c,也就是Google Protocol Buffers针对c语言版本的实现,libprotobuf-c是使用纯c语言实现的encoding和decoding,如何通过交叉编译让其运行在arm平台上呢?
 
首先要编译出protobuf2.6.0版本,参考:ubuntu14.04下编译protobuf2.6.0(http://www.linuxdiyf.com/linux/27763.html)
 
1、打包下载protobuf-c,地址:https://github.com/protobuf-c/protobuf-c
2、解压后得到protobuf-c-master文件夹,进入该文件夹执行如下命令
3、./autogen.sh
4、./configure --host=arm-linux-gnueabi
5、make
6、等待完成,最终会在protobuf-c-master /protobuf-c/.libs目录下生成.so动态库
在ubuntu14.04编译protobuf-c for arm版本
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27764.html