Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a quick way to determine the version of the Boost C++ libraries on a system?

share|improve this question

3 Answers

up vote 26 down vote accepted

Boost Informational Macros. You need: BOOST_VERSION

share|improve this answer
19  
If you want to figure it out manually (rather than in-code), the go to the include directory, and open up version.hpp. BOOST_VERSION takes a bit of deciphering, but BOOST_LIB_VERSION is pretty clear. The value of mine is currently "1_42" – T.E.D. Sep 14 '10 at 12:44
#include <boost/version.hpp>
#include <iostream>
#include <iomanip>

int main()
{
    std::cout << "Boost version: " << std::hex
              << ((BOOST_VERSION >> 20) & 0xF)
              << "."
              << ((BOOST_VERSION >> 8) & 0xFFF)
              << "."
              << (BOOST_VERSION & 0xFF)
              << std::endl;
    return 0;
}
share|improve this answer
+1 Thanks for giving an example. – AraK Sep 14 '10 at 12:40
10  
Why not just: std::cout << "Boost version: " << BOOST_LIB_VERSION;? – T.E.D. Sep 14 '10 at 12:46

Tested with boost 1.51.0:

std::cout << "Using Boost "     
          << BOOST_VERSION / 100000     << "."  // major version
          << BOOST_VERSION / 100 % 1000 << "."  // minior version
          << BOOST_VERSION % 100                // patch level
          << std::endl;

Output: Using Boost 1.51.0

share|improve this answer
1  
code provided by hkaiser does not work with boost 1.51.0 – Vertexwahn Oct 26 '12 at 14:05
works also with boost 1.52.0 – Vertexwahn Dec 21 '12 at 2:53
works also with boost 1.53.0 – Vertexwahn Mar 6 at 18:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.