Ubuntu18.04安装Thrift 0.9.3

安装相关的依赖包

sudo apt-get install automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config

下载 thrift-0.9.3.tar.gz

解压,进入主目录 thrift-0.9.3

./configure

./configure --with-cpp --with-boost --without-python --without-csharp --with-java --without-erlang --without-perl --with-php --without-php_extension --without-ruby --without-haskell --without-go

如果后续要gdb调试,这里可以加上 -ggdb3: 参考

./configure CXXFLAGS='-ggdb3' ……

 

make (这里比较久)

sudo make install 

验证

thrift -version

 

总结:

thrift 其他版本安装中总出现一些暂时无法解决的问题,所以先用0.9.3,安装比较顺利

安装中出现的错误,要么是库缺少了,要么需要sudo,多google 可以解决

 

转自:

Ubuntu18.04安装Thrift

你可能感兴趣的:(thrift)