Object-C编译的Protobuf
因工作需要,要编译Object-C可用的Protocbuf,开始查资料,
http://www.cnblogs.com/uniy/archive/2011/12/21/2296405.html
结果执行完
A. 下载Protocol Buffers将下载解压后的文件存放至Applications目录下,进到ProtocolBuffers-2.2.0-Source目录看看会发现 有个src目录。用命令切换至ProtocolBuffers-2.2.0-Source目录下。
下载地址: http://code.google.com/p/metasyntactic/downloads/list
B. ./autogen.sh
C. ./configure (如果说没有权限,chmod +x configure)
D. make
之后发现src下没有protoc这个可执行文件,看下log
./autogen.sh: line 28 : autoreconf: command not found
是因为autoconf没安装,继续查资料
找到安装autoconf的方法
http://igaojie.com/webdev/562.html
curl -O http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz
tar -xzvf m4-1.4.13.tar.gz
cd m4-1.4.13
./configure –prefix=/usr/local
make
sudo make install
cd ..
curl -O http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz
tar -xzvf autoconf-2.65.tar.gz
cd autoconf-2.65
./configure –prefix=/usr/local
make
sudo make install
cd ..
curl -O http://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz
tar xzvf automake-1.11.tar.gz
cd automake-1.11
./configure –prefix=/usr/local
make
sudo make install
cd ..
curl -O http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz
tar xzvf libtool-2.2.6b.tar.gz
cd libtool-2.2.6b
./configure –prefix=/usr/local
make
sudo make install
安装完成后重新执行
cd /Applications/ProtocolBuffers-2.2.0-Source
./autogen.sh
./configure
make
发现make之后出现error:
google/protobuf/message.cc:130:60:error:implicit instantiation of undefined
继续查资料,
http://blog.csdn.net/fangzhangsc2006/article/details/17364057
在ProtocolBuffers-2.2.0-Source/src/google/protobuf/message.cc中头部加上#include <istream>
重新编译protobuf,
protoc终于出来了。
Object-C编译的Protobuf的更多相关文章
- QT中使用MinGW 编译的protobuf库--包含库的生成和使用
		QT中使用MinGW 编译的protobuf库--包含库的生成和使用 0前言 1准备工作 2生成protobuf库文件 3在QT中测试protobuf的使用 4结语 0前言 最近要在QT中使用prot ... 
- VS2013编译google protobuf 出现问题error C3861: “min”:
		问题描述: 今天用vs2013编译protobuf 2.4.1 报错: 错误 3 error C3861: "max": 找不到标识符 f:\google\protobuf\pro ... 
- centos 编译 安装 protobuf
		link:http://dbua.iteye.com/blog/1633079 yum -y install gcc+ gcc-c++ yum -y install make 下载protobuf-2 ... 
- ubuntu编译安装protobuf
		测试环境:Ubuntu 16.04 LTS 到protobuf的release页面 下载源码:https://github.com/protocolbuffers/protobuf/releases/ ... 
- Windows下编译Google.Protobuf在Qt(C++)中使用与Unity3d(C#)交互
		1.首先从Github-Protobuf下载代码,本文下载的版本号是3.1.0. 2.仔细查看各个README,有相关的资源下载和编译说明. 3.在一个方便的地方创建一个Install类型的文件夹,放 ... 
- mac 安装protobuf,并编译
		因公司接口协议是PB文件,需要将 PB 编译成JAVA文件,且MAC 电脑,故整理并分享MAC安装 google 下的protobuf 文件 MAC 安装protobuf 流程 1.下载 http ... 
- Ubuntu编译protobuf
		个人博客地址:http://www.bearoom.xyz/2019/08/24/ubunt-protobuf/ 因为编译了tensorflow C++的版本,然后提示protobuf的版本不对应引起 ... 
- Tensorflow object detection API ——环境搭建与测试
		1.开发环境搭建 ①.安装Anaconda 建议选择 Anaconda3-5.0.1 版本,已经集成大多数库,并将其作为默认python版本(3.6.3),配置好环境变量(Anaconda安装则已经配 ... 
- 玩转动态编译 - 高级篇:一,IL访问静态属性和字段
		IL介绍 通用中间语言(Common Intermediate Language,简称CIL,发音为"sill"或"kill")是一种属于通用语言架构和.NET ... 
随机推荐
- kmp算法简明教程
			在字符串s中寻找模式串p的位置,这是一个字符串匹配问题. 举例说明: i = 0 1 2 3 4 5 6 7 8 9 10 11 12 13 s = a b a a c a b a a a b a a ... 
- 什么是CSS清除浮动?
			在非IE浏览器(如Firefox)下,当容器的高度为auto,且容器的内容中有浮动(float为left或right)的元素,在这种情况下,容器的高度不能自动伸长以适应内容的高度,使得内容溢出到容器外 ... 
- Keywords Search
			Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ... 
- 使用get方式提交数据
			get提交代码 import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLE ... 
- 二手奢侈品电商Vestiaire Collective融资2000万美元
			巴黎奢侈品电商Vestiaire Collective获得了2000万美元的C轮融资,投资方包括知名出版集团Condé Nast.Idinvest.Balderton和Ventech,其中Condé ... 
- [Java] JAVA程序员您需要学习的25个标准
			(1) 你需要精通面向对象分析与设计(OOA/OOD).涉及模式(GOF,J2EEDP)以及综合模式.你应该了解UML,尤其是class,object,interaction以 及statediagr ... 
- js技巧总结
			很早以前看到的代码,同时加上一些我在项目中用到的代码,感觉很实用,在这里记录下来,怕忘记了,有些代码忘记在哪看到的了,所以就不贴网址了,感谢各位大神的分享!如果有其他的好的方法,欢迎留言~ 1.取整的 ... 
- 【Mood-11】值得学习的国内外Android开发者信息
			国内 Android 开发者信息: 昵称 GitHub 博客 介绍 罗升阳 Luoshengyang@csdn Android 源码分析 邓凡平 innost@csdn 阿拉神农 魏祝林 ... 
- Js 实现五级联动
			js实现多级联动的方法很多,这里给出⼀种5级联动的例子,其实可以扩展成N级联动,在做项目的时候碰到了这样⼀个问题但是有不能从数据库中动态的加载这些选项,所以只有想办法从单个的页面着手来处理了,应为项目 ... 
- POJ 1860 Currency Exchange (最短路)
			Currency Exchange Time Limit:1000MS Memory Limit:30000KB 64bit IO Format:%I64d & %I64u S ... 
