VC2008编译libthrift
thrift只提供了VC2010的sln文件。
用Project From Existing Code… 创建工程。
将 cpp/src/thrift 加入工程。
在Solution Explorer中,
去除 qt 目录。
添加 boost 包含目录。
添加 src 为包含目录,不然 #include 出错。
VC2008缺少 stdint.h, 创建到thrift/windows目录下,并添加为include目录。
#pragma once
#include
typedef boost::int8_t int8_t;
…
typedef boost::uint64_t uint64_t;
#define INT8_MIN (-128)
…
#define UINT64_MAX (UINT64_C(18446…))
去除VC2010 thrift.sln中没有的文件,无法编译:
Mutex.cpp, PosixThreadFactory.cpp, Monitor.cpp
TEvhttpClientChannel.cpp TEvhttpServer.cpp
TServer.cpp TNonblockingServer.cpp
TSSLSocket.cpp TSSLServerSocket.cpp
TZlibTransport.cpp
加上宏 HAVE_CONFIG_H, 或者 force include force_inc.h.
windows/tr1/functional中
#include
改为
#include
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: rabbitmq中的queueDeclare方法
queueDeclare Queue.DeclareOk queueDeclare() throws IOException; /** * Declare a queue * @see com.rabbitmq.client.AMQP.Queue.Declar…