Linux源码安装boost

下载代码

官网下载,如选择1.60.0

编译安装

tar xvf boost_1_60_0.tar.gz
cd boost_1_60_0
./bootstrap.sh
./b2 -a cxxflags='-fPIC -std=c++11' install --prefix=./build threading=multi boost.locale.icu=off#编译好的库在build文件夹中
make install --prefix=/usr #指定安装目录,没有默认头文件在/usr/local/include/boost中,库在/usr/local/lib下

你可能感兴趣的:(工具,linux,boost)