boost库安装
下面介绍我在docker上安装boost库的步骤
- wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz
- tar zxvf boost_1_64_0.tar.gz
- cd boost_1_64_0
- ./bootstrap.sh --with-libraries=all --with-toolset=gcc //
--with-libraries
指定编译哪些boost库
,all的话就是全部编译,只想编译部分库的话就把库的名称写上,之间用 , 号分隔即可 - ./b2 toolset=gcc
- ./b2 install --prefix=/usr
- ldconfig