Skip to content

Instantly share code, notes, and snippets.

@edwardstock
Forked from 1duo/centos.install.boost.md
Last active April 2, 2018 15:23
Show Gist options
  • Save edwardstock/5d4458f78f124588b680fcfed63daac2 to your computer and use it in GitHub Desktop.
Save edwardstock/5d4458f78f124588b680fcfed63daac2 to your computer and use it in GitHub Desktop.
Install Boost library from source on CentOS 7.
wget https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.gz
  • Unzip
tar -xzf boost_1_65_1.tar.gz && cd boost_1_65_1
  • Bootstrap and Install
./bootstrap.sh --prefix=/opt/boost
./b2 install --prefix=/opt/boost --with=all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment