打造boost的trhead环境
windows下的环境
1.官网下载boost_1_68_0解压后用VS2010的命令行工具运行bootstrap.bat
2.用VS2005命令行工具运行
bjam.exe link=static runtime-link=static --build-type=complete --with-regex --with-thread --with-chrono --with-date_time
就能生成需要的库了
linux下的环境
1.解压后 sh bootstrap.sh
2.运行
./bjam --layout=tagged --build-type=complete --with-thread --with-chrono --with-date_time --with-date_time
这样就生成动态库和静态库了
要使用静态库的话就在g++里面 直接全路径.a文件即可