Boost的安装和配置
简介:Boost是为C++语言标准库提供扩展的一些C++程序库的总称。Boost库是一个可移植、提供源代码的C++库,作为标准库的后备,是C++标准化进程的开发引擎之一,是为C++语言标准库提供扩展的一些C++程序库的总称。
安装包:https://www.boost.org/users/history/version_1_46_1.html
配置步骤:
1、解压
2、配置安装路径,命令如下
进入到解压后的目录下
cd path/to/boost_1_46_1
#配置安装路径默认安装到/usr/local下面的include和lib目录下
./bootstrap.sh
#如果需要安装到指定目录则在后面加上--prefix=你指定的路径
3、安装
./bjam install
4、验证并查看已安装的库
./bjam --show-libraries
5、Example
#include <iostream>
#include <boost/timer.hpp>
#include <boost/version.hpp>
using namespace std;
using namespace boost;
int main() {
boost::timer tm;
cout << tm.elapsed() <<endl;
cout << BOOST_VERSION << endl;
cout << BOOST_STDLIB << endl;
cout << BOOST_PLATFORM << endl;
timer t;
cout << t.elapsed_max() << endl;可度量的最大时间,以小时为单位
return 0;
}