红联Linux门户
Linux帮助

Ubuntu 15.04 clang++ 4.6编译boost 1.59

发布时间:2015-10-03 15:13:01来源:linux网站作者:csfreebird

Ubuntu 15.04已经可以直接通过apt-get insall 安装clang 3.6, 并且预装的gcc版本是4.9.2。这些安装过程在这里介绍。


首先下载boost源码

wget -O boost.1.59.tar.bz2 http://sourceforge.net/projects/boost/files/latest/download?source=files


解压

tar jxvf ./boost.1.59.tar.bz2  


指定clang工具,生成编译脚本

./bootstrap.sh --with-libraries=system,filesystem,log,thread,program_options --with-toolset=clang 


编译并安装

sudo ./b2 install --prefix=/usr   


等一会儿就好。


在ubuntu14.04上安装clang 3.6:http://www.linuxdiyf.com/linux/14259.html

Linux上安装使用Boost入门指导:http://www.linuxdiyf.com/linux/6396.html