Kranar
Kranar

Reputation: 1156

How to build Boost using Visual Studio 2013

When building boost using the newly released Visual Studio 2013, the following error occurs:

Unknown compiler version - please run the configure tests and report the results

I am building boost using bjam via the following command:

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

I must build boost using the command prompt, I am unable to download a prebuilt version of boost.

Thanks.

Upvotes: 6

Views: 9640

Answers (2)

Marshall Clow
Marshall Clow

Reputation: 16690

The upcoming boost release (1.55.0, scheduled for early November) should support VS2013 (also scheduled for release in early November)

[ And yes, I know that VS2013 was "released for the web" already, but its' official release date is Nov 13. Silly marketing. ]

Upvotes: 5

e.tadeu
e.tadeu

Reputation: 5328

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

Upvotes: 8

Related Questions