VS2010下Boost1.55.0配置

  1. 打开程序菜单,选择Visual Studio Tools里面的 Visual Studio 命令提示。

  2. 转到解压后的Boost所在目录,输入Bootstrap,执行完毕会生成b2.exe。
    输入(目录下的bjam.exe和b2.exe是完全相同的,可以互换)
    b2 --toolset=msvc-10.0 --build-type=complete stage
    (若要构建Boost 64位版本函数库,则输入b2 --toolset=msvc-10.0 --build-type=complete architecture=x86 address-model=64 stage
    编译时间较长,耐心等待。会生成bjam。

你可能感兴趣的:(boost)