1.必须安装boost。最新的稳定版是1.48.0。
1.1.先下载:http://sourceforge.net/projects/boost/files/boost/1.48.0/
1.2.安装过程和以前的老版本有些不同,看自带软件包里的index.html就可以了:
$ ./bootstrap.sh //默认安装到/usr/local/include/boost 和/usr/local/lib下
$ ./b2 install
1.3接下来设置环境变量自动导入:
#!/bin/sh #boost settings BOOST_ROOT=/opt/boost_1_48 BOOST_INCLUDE=/usr/local/include/boost BOOST_LIB=/usr/local/lib export BOOST_ROOT BOOST_INCLUDE BOOST_LIB 注意: linux程序运行时加载共享库出现的错误: "error while loading shared libraries: xxxx: cannot open shared object file: No such file or directory" 解决步骤: 1、使用find命令查找缺失的xxxx共享库文件所在位置。参考:#find 目录 -name "xxxx*" 2、将找到的目录位置写入 /etc/ld.so.conf 配置文件,这个文件记录了编译时使用的动态链接库的路径。 3、然后使用ldconfig命令,使配置生效。
2.安装libevent(选择noblokingserver必须安装libevent,如果出现noblokingserver相关的错误就是没有安装libevent)。
wget http://monkey.org/~provos/libevent-1.4.13-stable.tar.gz
tar xvzf libevent-1.4.13-stable.tar.gz
cd libevent-1.4.13-stable
./configure && make
make install
3.接下来就是安装thrift,我下载的是最新的thrift0.8.0版本,进入thrift0.8.0目录:
.
/configure
--with-cpp --with-boost
--without-python
--without-csharp --without-java--without-erlang --without-perl --without-php--without-php_extension --without-ruby --without-haskell--without-go
#make
make
#install
make
install
- C++
- Boost 1.33.1+
- libevent (optional, to build the nonblocking server)
- zlib (optional)
- Java
- Java 1.5+
- Apache Ant
- Apache Ivy (recommended)
- Apache Commons Lang (recommended)
- SLF4J
- C#: Mono 1.2.4+ (and pkg-config to detect it) or Visual Studio2005+
- Python 2.4+ (including header files for extension modules)
- PHP 5.0+ (optionally including header files for extensionmodules)
- Ruby 1.8+ (including header files for extension modules)
- Erlang R12 (R11 works but not recommended)
- Perl 5
- Bit::Vector
- Class::Accessor
安装完thrift先试验一下。进入thrift下的tutorial,编译给出的例子:
会在gen-cpp目录下生成一些文件。然后进入CPP目录,进行编译:
有可能遇到错误,提示: hton*declarations will not be visible to thecompiler。这是thrift的一个bug,可能有的版本没有该错误,但是我安装的这个版本有。解决的办法是:
使用g++编译时加入 -DHAVE_NETINET_IN_H
这样可以使预处理器include进 netinet/in.h in thrift/protocol/TPrototol.h,这样 hton* declarations will be visible to the compiler.
下面是一个老外对这个bug的说明:
TProtocol.h has the following lines which cause the compilererror when HAVE_NETINET_IN_H is not defined.
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
This might be a bug in the Thrift configure script which somehowskips the define.
针对上面的那个例子,修改CPP文件夹里的Makefile,在编译行加入相应的参数: