When trying to build Boost 1.54 for Visual Studio 2013 Preview (MSVC12) it warns:
Unknown compiler version - please run the configure tests and report the results
and then fails with error:
boost_1_54_0\boost/iterator/detail/facade_iterator_category.hpp(166) : error C2039: 'assert_not_arg' : is not a member of 'boost::mpl'
And looks like old libs from MSVC11 are not compatible.
I really-really want to test new IDE/Compiler version and need boost. So, is it possible to use boost with new Visual Studio 2013 Preview?
I was able to build Boost 1.54 (and a project depending on it) thanks to several patches provided by Lars Viklund. At the time of the writing, the first two of the patches were committed to the SVN - revision 85177.
Yes. It is possible.
Possible solutions are:
svn co http://svn.boost.org/svn/boost/trunk boost-trunk
. For a time when you reading this, issue can be already fixed by contributors.EDIT: 26 aug 2013
Looks like boost folks fixed these issues. Latest SVN revision
svn co http://svn.boost.org/svn/boost/trunk boost-trunk
builds fine. Thanks to them!EDIT: 4 dec 2013
Quote from TheArtTrooper comment:
Happy boosting!
If you use the auto-linking boost feature, you'll also need to patch boost/config/auto_link.hpp. I changed the file to:
I had this issue with Visual Studio 2013 Update 4 and Boost 1.54, update to Boost 1.57 fixed it.