Windows平台下boost库的编译和调用

2020-03-20  本文已影响0人  JasonLiThirty

视频教程:https://www.bilibili.com/video/av97877351/

下载

编译

打开任意VS工程:VS->Project->Properties::Genneral::Plateform Toolset(VS2015为v140)

在开始菜单的VS菜单项里打开“Developer Command Prompt for VS2015”,进入boost目录

命令行运行bootstrap.bat,会在根目录下生产bjam.exeb2.exe(bjam的升级版),project-config.jambootstrap.log四个文件

//示例-编译除boost::python库之外的boost库
bjam stage --toolset=msvc-14.0 --without-python --stagedir="E:\Learning\Boost" link=static runtime-link=shared threading=multi address-model=64

会在E:\Learning\Boost下生成一个lib目录,目录里是编译好的boost的lib库

bjam编译参数说明

stage/install:stage表示只生成库,install还会生成包含头文件的include目录,但编译时间较长;默认是stage。

--stagedir/prefix:stage时使用stagedir,install时使用prefix,表示编译生成文件的路径。

bjam install --toolset=msvc-14.0 --without-python --prefix="E:\Learning\Boost" link=static runtime-link=shared threading=multi address-model=64

--build-type:complete 编译所有boost库;默认complete。

bjam stage --toolset=msvc-14.0 --build-type=complete --stagedir="E:\Learning\Boost" link=static runtime-link=shared threading=multi address-model=64

--without/with:选择不编译/编译哪些库。默认是全部编译。

查看boost包含库的命令是bjam --show-libraries

//boost::python lib
bjam stage --toolset=msvc-14.0  --with-python --stagedir="E:\Learning\Boost" link=static threading=multi address-model=64

--toolset:指定编译器,可选的如borland、gcc、msvc-14.0(VS2025)等。

link:生成动态链接库/静态链接库。

bjam stage --toolset=msvc-14.0 --build-type=complete --stagedir="E:\Learning\Boost" link=shared runtime-link=shared threading=multi address-model=64
7.png

runtime-link:动态/静态链接C/C++运行时库。同样有shared和static两种方式。

threading:单/多线程编译。现在基本都是multi方式了。

address-model:64位平台还是32位平台,不填就两种平台的库都会编译。

debug/release:debug版本,release版本,不填就两种版本的库都会编译。

bjam stage --toolset=msvc-14.0  --with-atomic --stagedir="E:\Learning\Boost" link=static threading=multi address-model=64 debug

boost库的命名特点

//link=static runtime-link=shared
libboost_atomic-vc140-mt-gd-x64-1_69.lib
libboost_atomic-vc140-mt-x64-1_69.lib
//link=static runtime-link=static
libboost_atomic-vc140-mt-sgd-x64-1_69.lib
libboost_atomic-vc140-mt-s-x64-1_69.lib
//link=shared runtime-link=shared
boost_atomic-vc140-mt-gd-x64-1_69.dll
boost_atomic-vc140-mt-gd-x64-1_69.lib
boost_atomic-vc140-mt-x64-1_69.dll
boost_atomic-vc140-mt-x64-1_69.lib

开头_库名称-编译器版本-[多线程]-[static版本][debug版本]-平台-版本号

link参数和runtime-link的组合

link runtime-link 运行要求 应用工程设置
static static libboost_atomic-vc140-mt-sgd-x64-1_69.lib libboost_atomic-vc140-mt-s-x64-1_69.lib /MTd/MT
static shared libboost_atomic-vc140-mt-gd-x64-1_69.lib libboost_atomic-vc140-mt-x64-1_69.lib /MDd/MD
shared shared boost_atomic-vc140-mt-gd-x64-1_69.dll boost_atomic-vc140-mt-gd-x64-1_69.lib boost_atomic-vc140-mt-x64-1_69.dll boost_atomic-vc140-mt-x64-1_69.lib
shared static 没有这种组合

# VS工程的使用配置

#define BOOST_PYTHON_STATIC_LIB
#define BOOST_NUMPY_STATIC_LIB
#include <boost/python.hpp>
#include <boost/python/numpy/ndarray.hpp>

示例

#include <iostream>
#include <boost/format.hpp>
#include <iomanip>


int main()
{
    std::cout << boost::format("%s:%d+%d=%d\n") % "sum" % 1 % 2 % (1 + 2);

    boost::format fmt("(%1% + %2%) * %2% = %3%\n");
    fmt % 2 % 5 %((2+5)*5);
    std::cout << fmt.str();

    fmt.parse("%|05d|\n%|-8.3|f\n%| 10S|\n%|05X|\n");
    std::cout << fmt % 62 % 2.236 % "123456789" % 48;

    fmt.clear();  
    //std::cout << fmt.str();  //error after call clear function
    std::cout << fmt % 56 % 1.125 % "987654321" % 32;

    boost::format fmtPro("%1% %2% %3% %2% %1% \n");
    std::cout << fmtPro % 1 % 2 % 3;

    fmtPro.bind_arg(2, 10);
    std::cout << fmtPro % 1 % 3;

    fmtPro.clear();
    std::cout << fmtPro % boost::io::group(std::showbase, std::oct, 111) % 333;

    fmtPro.clear_binds();
    fmtPro.modify_item(1, boost::io::group(std::hex, std::right, std::showbase, std::setw(8), std::setfill('*')));
    std::cout << fmtPro % 49 % 20 % 100;

    std::cout << 1 / 2;

    return 0;
}

上一篇 下一篇

猜你喜欢

热点阅读