打开Developer Command Prompt for VS2015命令行窗口
切换到boost目录下面执行bootstrap
然后
全部编译的命令行:bjam --toolset=msvc-14.0 --build-type=complete stage
部分编译的命令行:bjam --toolset=msvc-14.0 --with-date_time --with-thread
编译成64位的命令:bjam --toolset=msvc-14.0 address-model=64 --build-type=complete stage
编译成64位的命令:b2 --toolset=msvc-14.0 address-model=64 --build-type=complete stage
查看需要编译库的命令行:bjam --show-libraries
