From 7bdb84544f8ba9ea6784603de74d70b1725fab2f Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 9 Jan 2004 00:52:02 +0000 Subject: [PATCH] turn on auto link support for Intel (from John Maddock) [SVN r21551] --- include/boost/config/auto_link.hpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/include/boost/config/auto_link.hpp b/include/boost/config/auto_link.hpp index 4f78f4cc..8afb177e 100644 --- a/include/boost/config/auto_link.hpp +++ b/include/boost/config/auto_link.hpp @@ -81,7 +81,9 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // // Only include what follows for known and supported compilers: // -#if defined(BOOST_MSVC) || defined(__BORLANDC__) +#if (defined(BOOST_MSVC) && defined(_MSC_EXTENSIONS)) \ + || defined(__BORLANDC__) \ + || (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200)) #ifndef BOOST_VERSION_HPP # include @@ -122,6 +124,11 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y. // CBuilder 6: # define BOOST_LIB_TOOLSET "bcb" +#elif defined(__ICL) + + // Intel C++, no version number: +# define BOOST_LIB_TOOLSET "iw" + #endif //