解压boost_1_55_0.tar.gz,进入目录,然后执行:
#这里只编译system,thread,locale,filesystem这四个库,其他的库我们基本用不到
./bootstrap.sh --with-libraries=system,thread,filesystem,date_time --with-toolset=gcc


./bootstrap.sh --with-libraries=all --with-toolset=gcc
./b2 toolset=gcc

稍等一会,编译成功.安装吧。
#这里如果运行./b2 install 命令,库默认安装在/usr/local/lib目录下,头文件在/usr/local/include/boost目录下.
./b2 install
安装完毕!
如果无法生成thread库,则使用C++11编译:
./bjam --with-thread stage cxxflags="-std=c++11"
./b2 install