windows编译boost

配置

1
./bootstrap.bat 

编译

1
./b2  stage --toolset=msvc-14.1 threading=multi  link=shared --build-type=complete

参数说明:

threading=multi多线程

--toolset=msvc-14.1使用vs2017编译

--with=all编译所有静态和动态库

--prefix=安装路径

link=shared编译动态库

link=static编译静态库

其它参数使用./b2 -help查看