How can I compile Boost with VS2013 (64-bit)

I use the following command to compile Boost 1.55 beta 1:

b2 --toolset = msvc-12.0 architecture = x86 address-model = 64 stage

The result is a bunch of these errors:

error C3861: 'assert_not_arg': identifier not found

There is a list of suggested patches for working with VS2013 here , but I have no idea how to use them. This seems to have a similar problem described here , but I was wondering if anyone had any success with Boost 64-bit for VS2013 (I don't mind using the older version of boost, but they don't seem to support the MSVC 12.0 compiler).

+7
c ++ boost visual-studio-2013
source share
1 answer

Built with the latest SVN repository build and seems to work using the commands above.

+4
source share

All Articles