编译VS2013环境下的boost库的命令行语句

64位编译:

 从开始菜单启动Visual Studio 2013的vs2013 x64兼容工具命令行,然后转到boost根文件夹,运行bootstrap.bat生成x64版的b2.exe(我的是1.62版本的,是b2.exe,低版本的是bjam.exe)。
 然后,运行如下命令:

b2.exe stage --build-type=minimal --toolset=msvc-12.0 link=static runtime-link=shared threading=multi debug release address-model=64  
原文地址:https://www.cnblogs.com/xingzhensun/p/6266077.html