您的位置:首页 > 其它

Mac安装thrift-0.10.0

2017-08-08 09:47 274 查看

安装Xcode

App store里安装。不安装这个会出现无法编译boost的问题。

安装boost

http://www.boost.org/

下载安装包,解压缩。

./bootstrap.sh --prefix=/usr/local/
./b2 threading=multi address-model=64 variant=release stage install


安装libevent

http://libevent.org/

brew install openssl

到/usr/local/Cellar/openssl目录下查看,应该有1.0.2l,接下来建立软连接
ln -s /usr/local/Cellar/openssl/1.0.2l/include/openssl/ libevent_home/include/openssl

./config --prefix=/usr/local/
make
make install


安装thrift

官网下载0.10.0的包

https://thrift.apache.org/download

brew install autoconf
brew install libtool
brew install automake

./configure --prefix=/usr/local --with-boost=/usr/local --with-libevent=/usr/local LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include'

make

sudo make install

thrift -version 验证
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  mac