c++ - How to build boost Version 1.58.0 using Visual Studio 2015 (Enterprise) -
i build boost 1.58.0 using (new) visual studio 2015 (enterprise). in past proceeded in following way:
- download boost 1.58.0 www.boost.org
- extract files (e.g.
c:\thirdparty\vs2013\x64\boost_1_58_0
) - start visual studio 2013 x64 command prompt (
vs2013 x64 native tools command prompt
) - change boost directory (e.g.
cd c:\thirdparty\vs2013\x64\boost_1_58_0
) - execute
.\bootstrap.bat
- execute
.\b2 -j8 --toolset=msvc-14.0 address-model=64 --build-type=complete stage
- b2 -j8 --toolset=msvc-12.0 address-model=64 --build-type=complete stage --with-python
but in vs2015 there not vs2015 command prompt.
also vcvarsall.bat
missing used setup vs2013 command prompt.
how can compile source code of boost using vs2015?
i tried install qt , had same issue: vcvarsall.bat missing. in case problem unchecked visual c++ common tools.
i modified vs 2015 installation , added missing feature common tools visual c++ 2015:
after modification, file in c:\program files (x86)\microsoft visual studio 14.0\vc
Comments
Post a Comment