ubuntu下编译boost
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下编译boost相关的知识,希望对你有一定的参考价值。
目前测试在linux下编译boost的两个可行方法:1、下载发布的release版本包;2、github的编译指引。
这里主要简单说明一下第二种方法。
一、下载发布的源码版本包编译
可参考http://www.cnblogs.com/oloroso/p/4632848.html
二、github的编译指引 https://github.com/boostorg/boost/wiki/Getting-Started
1、安装配置git工具
安装:
git config --global user.name "My Name"
git config --global user.email [email protected]
2、git下载boost源码
git clone --recursive https://github.com/boostorg/boost.git 这一步一定要加上--recursive递归下载boost依赖的所有库代码,要不然后续编译不成功
3、检测依赖创建编译工具b2
cd boost
git checkout develop # or whatever branch you want to use
./bootstrap.sh 检测依赖创建编译工具b2
4、编译
./b2
编译的时候可能会长一点,可编译成功。
以上是关于ubuntu下编译boost的主要内容,如果未能解决你的问题,请参考以下文章