How to build Boost (I tried version 1.48.0) with Visual Studio C++ 11? bootstrap.bat
cannot find toolset vc11
. I added toolset vc11 to F:\Programming\boost_1_48_0\tools\build\v2\engine\build.bat
but got a message:
ERROR: Cannot determine the location of the VS Common Tools folder.
EDIT: The Ferruccio answer works for VS 2012 Express and Boost 1.51.0 too.
C++11
compliant (I got here while buildingBoost
, which's build section nowadays only mentions their need forC++11
compliant compiler, and NOT with whatMSVC
version they testedBoost
). Microsoft says "Support for C11 and C17 standards is available in Visual Studio 2019 version 16.8 and later", but not tested their claim yet. – Sherl