windows上编译boost库
说明
C++11出现前的很多“新”C++特性是在Boost库里面出现的,深度学习框架Caffe用到了Boost。编译Boost是为了解决历史遗留问题,新开发库应当直接用C++11或更高的C++标准来获得新的语言特性、库函数。
Boost使用自己的构建工具。早期叫bjam,新版叫b2。执行bootstrap命令后生成b2.exe和bjam.exe,执行哪个都一样。执行编译时是在“黑框框”(cmd命令行)中运行的,而不是在Visual Studio这样的IDE里编译,因此一旦有编译错误找起来略微麻烦。
Boost是一系列模块的组合,需要哪个子模块就编译它。例如需要filesystem模块,编译时指定--with-filesystem
。
基本设定
- boost源码版本:boost1.61.0
- 解压到F:\zhangzhuo\lib\boost-1.61.0目录
- python:我的系统同时存在python2和python3(miniconda设定的),
--with-python
会很友好的编译出py2和py3的包 - (可选)project-config.jam文件,用来配置项目中的一些设定,例如VS编译器、Python版本等
- (可选)b2构建工具的文档:https://boostorg.github.io/build/manual/master/index.html
- (可选)指定toolset的版本,实际上是VC的编译器toolset的版本:(来自b2文档)
Visual Studio 2019-14.2
Visual Studio 2017—14.1
Visual Studio 2015—14.0
Visual Studio 2013—12.0
Visual Studio 2012—11.0
Visual Studio 2010—10.0
Visual Studio 2008—9.0
Visual Studio 2005—8.0
Visual Studio .NET 2003—7.1
Visual Studio .NET—7.0
Visual Studio 6.0, Service Pack 5—6.5
编译
1. bootstrap
进入目录:
f:
cd F:\zhangzhuo\lib\boost-1.61.0
执行bootstrap脚本:
bootstrap.bat
输出:
F:\zhangzhuo\lib\boost-1.61.0>bootstrap.bat
Building Boost.Build engine
Bootstrapping is done. To build, run:
.\b2
To adjust configuration, edit 'project-config.jam'.
Further information:
- Command line help:
.\b2 --help
- Getting started guide:
http://boost.org/more/getting_started/windows.html
- Boost.Build documentation:
http://www.boost.org/build/doc/html/index.html
2. 修改源码(编译报错处理)
问题1:libs\python\src\converter\builtin_converters.cpp(51): error C2440: 'return': cannot convert from 'const char *' to 'void *'
我用的是boost1.61.0,解决办法:修改libs/python/src/converter/convert_to_cstring.cpp
,找到convert_to_cstring()
函数,修改前若干行为:
#if PY_VERSION_HEX < 0x03000000
void* convert_to_cstring(PyObject* obj)
{
return PyString_Check(obj) ? PyString_AsString(obj) : 0;
}
#elif PY_VERSION_HEX < 0x03070000
void* convert_to_cstring(PyObject* obj)
{
return PyUnicode_Check(obj) ? _PyUnicode_AsString(obj) : 0;
}
#else
void* convert_to_cstring(PyObject* obj)
{
return PyUnicode_Check(obj) ? const_cast<void*>(reinterpret_cast<const void*>(_PyUnicode_AsString(obj))) : 0;
}
#endif
参考:
https://stackoverflow.com/questions/54991157/cant-compile-boost-python-1-65-1-with-msvc2015
3. 编译脚本
boost根目录新建vs2013-x64.bat,内容:
b2.exe toolset=msvc-12.0 --build-type=complete address-model=64 ^
--with-serialization ^
--with-system ^
--with-date_time ^
--with-regex ^
--with-filesystem ^
--with-timer ^
--with-chrono ^
--with-program_options ^
--with-thread ^
--with-python ^
--stagedir="test"
其中--stagedir
指定的目录为test,它下面有个lib目录,把编译好的dll和lib都放在这里了。
执行构建:把输出重定向到日志方便查错:
vs2013-x64.bat > log.txt 2>&2
旧版内容:
要用xx
库,编译boost时就指定--with-xx
。例如:
# 下载并解压boost_1.58
# 进入boost_1.58目录
bjam.exe toolset=msvc-14.0 --build-type=complete address-model=64 --with-serialization --with-system --with-date_time --with-regex --with-filesystem --with-timer --with-chrono --with-program_options --with-thread --with-python --stagedir="test"
说明:
msvc-14.0表示visual studio 2015
--stagedir指定的目录为test,它下面有个lib目录,把编译好的dll和lib都放在这里了。
windows上编译boost库的更多相关文章
- IOS上编译boost库
环境:xcode9mac os 10.13 1.下载boost库并解压2.cd到解压后的文件包内,执行 sh bootstrap.sh(解压后会得到这个脚本文件).3.执行./b2 编译整个库.4.经 ...
- windows下编译Boost库
下载源码 boost_1_66_0.7z 生成编译工具 D:\Project\boost_1_66_0> bootstrap.bat 配置Python环境变量(使用VS2017自带的32位pyt ...
- 在windows上编译apr库
环境: win7_x64旗舰版.VS2015企业版.CMake3.8 一.下载apr相关库 1.1)expat下载地址:https://github.com/libexpat/libexpat/rel ...
- Windows上编译Boost
Boost做得很好,有自己的build系统,可以几乎一键式编译,这才是尼玛世界一流质量的良心开源库啊. 将Boost 1.49.0解压到boost/boost_1_49_0里面,然后在boost目录底 ...
- [ZZ] 在windows上编译Mesa3d opengl32库
在windows上编译Mesa3d opengl32库 cheungmine http://blog.csdn.net/ubuntu64fan/article/details/8061475 Mesa ...
- 如何在WINDOWS下编译BOOST C++库 .
如何在WINDOWS下编译BOOST C++库 cheungmine 2008-6-25 写出来,怕自己以后忘记了,也为初学者参考.使用VC8.0和boost1.35.0. 1)下载boost ...
- 利用openssl管理证书及SSL编程第2部分:在Windows上编译 openssl
利用openssl管理证书及SSL编程第2部分:在Windows上编译 openssl 首先mingw的环境搭建,务必遵循下文: http://blog.csdn.net/ubuntu64fan/ar ...
- 在windows上编译wireshark源代码
终于在windows上成功编译了wireshark源代码,个中酸辛,都是泪..只能说要多试! windows上编译wireshark共用到三个东西:wireshark源代码.python.cygwin ...
- 在Mac/Linux/Windows上编译corefx遇到的问题及解决方法
这两天尝试在Mac/Linux/Windows三大平台上编译.NET跨平台三驾马车(coreclr/corefx/dnx)之一的corefx(.NET Core Framework),结果三个平台的编 ...
随机推荐
- Python运维开发基础08-文件基础【转】
一,文件的其他打开模式 "+"表示可以同时读写某个文件: r+,可读写文件(可读:可写:可追加) w+,写读(不常用) a+,同a(不常用 "U"表示在读取时, ...
- 【转】gcc命令中参数c和o混合使用的详解
gcc -c a.c 编译成目标文件a.o gcc a.c 生成执行文件a.exe gcc -o a -c a.c 编译成目标文件a gcc -o a a.c 生成执行文件a. ...
- Ionic-轮播图ion-slide-box
官方用法介绍:http://www.ionic.wang/js_doc-index-id-44.html 用法 <ion-slide-box> <ion-slide> < ...
- JAVA中获取键盘输入的方法总结
Java程序开发过程中,需要从键盘获取输入值是常有的事,但Java它偏偏就没有像c语言给我们提供的scanf(),C++给我们提供的cin()获取键盘输入值的现成函数!下面介绍三种解决方法: 方法一: ...
- MVC 基于 AuthorizeAttribute 实现的登陆权限控制
代码的执行顺序是 OnAuthorization–>AuthorizeCore–>HandleUnauthorizedRequest. 如果AuthorizeCore返回false时,才会 ...
- iOS weak 内存释放问题
我们都知道weak 关键字可以解决内存不释放问题,但是使用上有些讲究. 看代码: import UIKit var str = "Hello, playground" class ...
- 12c rac On redhat 7
1 准备工作 1.1 关于GRID的一些变化 1.1.1 简化的基于映像的Oracle Grid Infrastructure安装 从Oracle Grid Infrastructure 12 ...
- Hibrenate之事务的理解以及代码编写
3 事务概念 事务(Transaction)是并发控制的单位,是用户定义的一个操作序列.这些操作要么都做,要么都不做,是一个不可分割的工作单位.通过事务,SQL Server能将逻辑相关的一组操作绑定 ...
- Confluence 6 启用 HTTP 压缩
在屏幕的右上角单击 控制台按钮 ,然后选择 基本配置(General Configuration) 链接. 在左侧的面板中选择 通用配置(General Configuration). 启用 HTTP ...
- Android 自动化测试框架
Android常用的自动化测试工具框架: Monkey,MonkeyRunner,UIAutomator,Robotium,Appium,Monkey Talk...... 但这些工具框架都是什么呢有 ...