Ubuntu boost库 安装

1、下载boost源码

     1)手动下载:boost源码下载

      2)自动下载:wget -c 'https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.bz2' -O ./boost_1_69_0.tar.bz2

2、解压到一个目录

      tar -zxvf boost_1_69_0.tar.bz2

3、正常编译:

      cd boost_1_69_0

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

4、安装boost库

      ./b2 install --prefix=/usr

     --prefix:boost库的安装目录,不加此参数,默认安装在/usr/local目录下

你可能感兴趣的:(Ubuntu boost库 安装)