linux编译boost
linux编译boost
配置
1 | ./bootstrap.sh --prefix=/usr/local/boost |
1 | ./bootstrap.sh --prefix=/usr/local/boost --stagedir=./stage --build-dir=./build/ |
参数说明:
--prefix=/usr/local/boost
安装路径
--stagedir
库文件的路径
--build-dir
临时文件路径
编译
1 | ./b2 install --with=all --prefix=/usr/local/boost |
参数说明:
--with=all
编译所有静态和动态库
--prefix=/usr/local/boost
安装路径
link=shared
编译动态库
link=static
编译静态库
其它参数使用./b2 -help
查看
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 张拓的博客!