Linux下编译Thrift 0.7.0

四号程序员 – Linux下编译Thrift 0.7.0

Linux下编译Thrift 0.7.0

对与版本更新频繁的项目一直都没有好感。比如Cassandra,比如Thrift,天天更新的能靠谱么……

Anyway,用什么不是我能决定的了,还是老老实实编译Thrift吧……

需求就是,至少(也只需要)支持C++和Python

Thrift的依赖写着boost,不加with-boost就不给编译with-cpp唉……

1#configure
2./configure --with-cpp --with-python  --with-boost --without-csharp --without-java --without-erlang --without-perl --without-php --without-php_extension --without-ruby --without-haskell --without-go
3 
4#make
5make
6 
7#install
8sudo make install
原文地址:https://www.cnblogs.com/lexus/p/2778374.html