vc2008/2015, linux, mingw 和 mac 环境编译 boost_1_62_0

来源:互联网 发布:windows 95 iso 编辑:程序博客网 时间:2024/06/03 14:06
*** 进入 VC2008/2015 命令行:
cd boost_1_62_0
bootstrap.bat (生成 bjam 程序)
vc2008 编译:
bjam stage --toolset=msvc-9.0 --build-type=complete --with-filesystem --with-thread
vc2015 编译:
bjam stage --toolset=msvc-14.0 --build-type=complete --with-filesystem --with-thread
单独编译其他常用库(vc2015 把 9.0 改为 14.0):
bjam stage --toolset=msvc-9.0 --build-type=complete --with-filesystem
bjam stage --toolset=msvc-9.0 --build-type=complete --with-thread
bjam stage --toolset=msvc-9.0 --build-type=complete --with-locale
bjam stage --toolset=msvc-9.0 --build-type=complete --with-regex
bjam stage --toolset=msvc-9.0 --build-type=complete --with-date_time
bjam stage --toolset=msvc-9.0 --build-type=complete --with-atomic
bjam stage --toolset=msvc-9.0 --build-type=complete --with-program_options

bjam stage --toolset=msvc-9.0 --build-type=complete --with-filesystem --with-thread --with-locale --with-regex --with-date_time --with-atomic --with-program_options -j 4


*** linux 环境编译(centos 为例) : 
sudo ./bjam install --with-filesystem


*** mingw 环境编译:
bjam -q --toolset=gcc --with-thread
bjam -q --toolset=gcc --with-filesystem


*** mac 环境编译:
~chmod +x bootstrap.sh
./bootstrap.sh
./b2 toolset=clang --with-filesystem
~./b2 toolset=clang cxxflags="-arch x86_64" linkflags="-arch x86_64" --with-filesystem