编译1.35.0时要在bjam的命令行参数中添加 --build-type=complete 来指明需要编译全
部的版本
1. 编译不带ICU支持的boost库
在console窗口输入:
bjam --without-python --toolset=msvc-8.0 --build-type=complete stage
安装则输入:
bjam --without-python --toolset=msvc-8.0 --build-type=complete install
2. 编译具有ICU支持的boost库
首先必须编译ICU库才能够编译boost库,在console窗口输入:
bjam -sICU_PATH=d:/ICU --without-python --toolset=msvc-8.0 --build-type=complete stage
安装则输入:
bjam -sICU_PATH=d:/ICU --without-python --toolset=msvc-8.0 --build-type=complete install
注:1、bjam可以自已编译,也可以在官网上下载编译好的bjam。
2、如果你先前没有编译boost的经验,请先阅读“boost1.3.4.0编译方法”,不然可能无法编译通过。