Ubuntu 18.04 comes with libboost1.65-dev. Thankfully, I am able to upgrade libboost (to version 1.69 or 1.70) using PPAs. However, these PPAs do not come with latest boost libraries such as chrono, atomic, math, etc. How do I install libboost1.69 along with libboost-math1.69 and other boost libraries in Ubuntu 18.04?
31 Answer
Unzip the source:
./bootstrap.sh --prefix=/usr && ./b2 stage threading=multi link=sharedNow, as the root user:
./b2 install threading=multi link=shared && ln -svf detail/sha1.hpp /usr/include/boost/uuid/sha1.hppInstructions can be found from here.