How to create Boost with Visual Studio 2013

When creating boost using the recently released Visual Studio 2013, the following error occurs:

Unknown compiler version - run configure tests and report the results

I create boost with bjam with the following command:

bjam% BJAM_PROCESSORS% --toolset = msvc --build-type = complete msvc -stagedir = stage stage

I have to create boost using the command line, I cannot load the pre-created version of boost.

Thanks.

+6
source share
2 answers

The upcoming version of boost (1.55.0, scheduled for early November) should support VS2013 (a release is also planned for early November)

[And yes, I know that VS2013 has already been "released for the Internet", but its official release date is November 13th. Stupid marketing. ]

+5
source

You should get the latest version from the SVN server, then use toolset=msvc-12.0 .

+7
source

Source: https://habr.com/ru/post/956179/


All Articles