Baz
Baz

Reputation: 13155

Which Boost version should I use with a C++03-capable compiler?

My compiler supports C++03. Which version of boost should I therefore use? If I was using an earlier version of C++, how would I establish the boost version?

Upvotes: 2

Views: 502

Answers (2)

Igor R.
Igor R.

Reputation: 15085

Every boost version has its "tested compilers" list (scroll this page to the end). This is the place where you should check whether your compiler version is supported or not.

Upvotes: 1

Armen Tsirunyan
Armen Tsirunyan

Reputation: 133112

Whichever. Boost libraries are smart enough to detect your C++ version and compiler and with some preprocessor magic provide implementations that will work with it. So you could as well use the latest version which has more bugs fixed and broader functionality.

Upvotes: 8

Related Questions