博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qpid第一课 Windows编译C++/ Qpid Client
阅读量:6427 次
发布时间:2019-06-23

本文共 1643 字,大约阅读时间需要 5 分钟。

一 浏览编译文档

    INSTALL-WINDOWS.txt文档描述了Windows编译Qpid的操作步骤以及注意事项,当前采用的是Microsoft Visual Studio 2015(VC14)编译Qpid,文档指定的编译器是Microsoft Visual Studio 2012(VC11)

二编译依赖库

Qpid源码编译需要的原料:

 * boost      <http://www.boost.org>                    (1.58)

 * CMake      <http://www.cmake.org>                    (3.2)

 * python     <http://www.python.org>                   (2.7.10)

 * ruby       <http://www.ruby-lang.org>                (2.2.2)

当前使用的是boost_1_59_0版本,CMake3.10.0rc1版本

如下库是可选的,所以没有安装

 * swig       <http://www.swig.org>                     (2.0.10)

 * perl       <http://www.perl.HELPME>                  (1.2.3)

 * nunit      <http://www.nunit.HELPME>                 (2.5.8)

 * doxygen

三 默认选择生成的编译错误

选择创建BUILD_BINDING_DOTNET,出现如下的生成错误

Could NOT find SWIG (missing: SWIG_EXECUTABLE SWIG_DIR) 

Building Dotnet bindings

CMake Error at bindings/qpid/dotnet/CMakeLists.txt:197 (message):

  No DOTNET binding support available for Visual Studio 14 2015

由于没有安装SWIG软件库,导致VS2015缺乏DOTNET binding套件,因此需要在CMake的配置选项中剔除BUILD_BINDING_DOTNET

选择创建BUILD_AMQP,出现如下的生成错误

CMake Error at src/amqp.cmake:47 (message):

  Qpid proton not found, required for amqp 1.0 support

Call Stack (most recent call first):

  src/CMakeLists.txt:591 (include)

由于没有安装Qpid proton,因此需要在CMake的配置选项中剔除BUILD_AMQP

CMake Deprecation Warning at CMakeLists.txt:138 (cmake_policy):

  The OLD behavior for policy CMP0022 will be removed from a future version

  of CMake.

  The cmake-policies(7) manual explains that the OLD behaviors of all

  policies are deprecated and that a policy should be set to OLD only under

  specific short-term circumstances.  Projects should be ported to the NEW

  behavior and not rely on setting a policy to OLD.

编译提醒:OLD语言特性即将在下一个CMake版本剔除,CMake3.2版本不会出现这个问题,不影响解决方案的生成

     本文转自fengyuzaitu 51CTO博客,原文链接:http://blog.51cto.com/fengyuzaitu/2071727,如需转载请自行联系原作者
你可能感兴趣的文章
REST API用得也痛苦
查看>>
test for windows live writer plugins
查看>>
Tiny210 U-BOOT(二)----配置时钟频率基本原理
查看>>
VS Code折腾记 - (3) 多图解VSCode基础功能
查看>>
『翻译』Node.js 调试
查看>>
我的iOS开发之路总结(更新啦~)
查看>>
Java NIO之拥抱Path和Files
查看>>
微信原图泄露的只能是 Exif ,你的隐私不在这!!!
查看>>
微信小程序教学第三章(含视频):小程序中级实战教程:列表篇-页面逻辑处理...
查看>>
页面间通信与数据共享解决方案简析
查看>>
Swift 中 Substrings 与 String
查看>>
作为一个开源软件的作者是一种什么样的感受?
查看>>
移动端适配知识你到底知多少
查看>>
TiDB 在 G7 的实践和未来
查看>>
重新认识javascript对象(三)——原型及原型链
查看>>
小学生学“数学”
查看>>
FastDFS蛋疼的集群和负载均衡(十七)之解决LVS+Keepalived遇到的问题
查看>>
深入剖析Redis系列(二) - Redis哨兵模式与高可用集群
查看>>
Nginx限制带宽
查看>>
All Web Application Attack Techniques
查看>>