1.打开"Microsoft Visual Studio 2015->Visual Studio Tools->Windows Desktop Command Prompts->VS2015 x86 本机工具命令提示符"编译32位平台库。
2.只生成一个库的话加上例如--with-system的编译选项,编译两个及以上使用空格分隔,避免生成东西太多、时间太长。
3.如果只编译生成64位库,增加属性address-model=64,如果没有这个属性的话,会默认生成32位和64位的库。
4.--toolset=msvc-14.0是Microsoft Visual Studio的版本,VS2015使用编译器为Microsoft Visual Studio 14.0,其它vs版本如下:
vs2003 | msvc-7.1 |
vs2005 | msvc-8.0 |
vs2008 | msvc-9.0 |
vs2010 | msvc-10.0 |
vs2012 | msvc-11.0 |
vs2013 | msvc-12.0 |
vs2015 | msvc-14.0 |
vs2017 | msvc-15.0 |
vs2019 | msvc-16.0 |
5.link=static要编译静态库版所以属性设置为static,如不要静态库则将static改为shared。
6.如果要生成Boost.Python库,需要先下载安装x64版的Python安装包,我用的版本是3.2.3。在使用这个库编写Python扩展DLL时,默认是使用动态库版的Boost.Python,要使用静态版的必须在C++项目中定义BOOST_PYTHON_STATIC_LIB宏,这样就不用在使用或发布扩展时带着boost_python-vc90-mt-1_50.dll一起了,当然扩展DLL的尺寸会大些,如果做实验没必要这样,编译又慢生成的文件也大。
编译所有工程64位lib库 | bjam.exe --toolset=msvc-14.0 architecture=x86 address-model=64 link=static --build-type=complete |
编译指定工程64位lib库 | bjam.exe --toolset=msvc-14.0 architecture=x86 address-model=64 link=static --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |
编译所有工程32和64位lib库 | bjam.exe --toolset=msvc-14.0 architecture=x86 link=static --build-type=complete |
编译指定工程32和64位lib库 | bjam.exe --toolset=msvc-14.0 architecture=x86 link=static --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |
编译所有工程32和64位dll库(动态链接C++标准库,生成debug/Release版) | bjam.exe --toolset=msvc-14.0 architecture=x86 link=shared runtime-link=shared --build-type=complete |
编译指定工程64位dll库(动态链接C++标准库,生成debug版) | bjam.exe --toolset=msvc-14.0 architecture=x86 address-model=64 link=shared runtime-link=shared variant=debug --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |
编译指定工程64位dll库(动态链接C++标准库,生成release版) | bjam.exe --toolset=msvc-14.0 architecture=x86 address-model=64 link=shared runtime-link=shared variant=release --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |
编译指定工程32位dll库(动态链接C++标准库,生成debug版) | bjam.exe --toolset=msvc-14.0 architecture=x86 link=shared runtime-link=shared variant=debug --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |
编译指定工程32位dll库(动态链接C++标准库,生成release版) | bjam.exe --toolset=msvc-14.0 architecture=x86 link=shared runtime-link=shared variant=release --build-type=complete --with-system --with-thread --with-date_time --with-filesystem --with-serialization --with-regex --with-python |