码迷,mamicode.com
首页 > 系统相关 > 详细

mac os x 10.10.3 安装protoc

时间:2015-04-22 22:01:08      阅读:398      评论:0      收藏:0      [点我收藏+]

标签:

 
 
Building from source

Download latest version of procbuffer. [https://code.google.com/p/protobuf/downloads/list].

  1. e.g  "wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2"

Untar the tar.bz2 file

  1. tar xfvj protobuf-2.5.0.tar.bz2 

Configure the protobuf. 

  1.  cd protobuf-2.5.0
  2. ./configure CC=clang CXX=clang++ CXXFLAGS=‘-std=c++11 -stdlib=libc++ -O3 -g‘ LDFLAGS=‘-stdlib=libc++‘ LIBS="-lc++ -lc++abi"

Make the source 

  1. make -j 4 
  2. sudo make install
 
在make -j 4时,可能出现如下错误
In file included from ./google/protobuf/stubs/common.h:41:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string:439:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm:628:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory:604:
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator:341:10: fatal error: __debug file not found

遇到如上错误:执行如下命令

echo ‘#define _LIBCPP_ASSERT(x, m) ((void)0)‘ | sudo tee -a /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug > /dev/null

 

reference:

http://sleepythread.blogspot.com/2013/11/installing-protoc-25x-compiler-google.html

https://github.com/JuliaLang/julia/issues/10822

http://stackoverflow.com/questions/29529455/missing-c-header-debug-after-updating-osx-command-line-tools-6-3

mac os x 10.10.3 安装protoc

标签:

原文地址:http://www.cnblogs.com/yanghuahui/p/4448728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!