From de5f166253bd6d671ebdd3f5b7ce1c79471c0789 Mon Sep 17 00:00:00 2001 From: O01eg Date: Thu, 5 Jan 2017 21:18:31 +0300 Subject: [PATCH] Use corrent name for libraries built with MS VS 2017 RC. --- include/boost/config/auto_link.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/include/boost/config/auto_link.hpp b/include/boost/config/auto_link.hpp index 56a16b0b..d4f3eabf 100644 --- a/include/boost/config/auto_link.hpp +++ b/include/boost/config/auto_link.hpp @@ -161,10 +161,15 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // vc12: # define BOOST_LIB_TOOLSET "vc120" +# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1910) + + // vc14: +# define BOOST_LIB_TOOLSET "vc140" + # elif defined(BOOST_MSVC) - // vc14: -# define BOOST_LIB_TOOLSET "vc140" + // vc15: +# define BOOST_LIB_TOOLSET "vc150" # elif defined(__BORLANDC__)