forked from boostorg/config
Merge pull request #38 from aminiussi/cudaintel
Only define BOOST_COMPILER if not already done
This commit is contained in:
@ -34,11 +34,14 @@
|
|||||||
# define BOOST_INTEL_STDCXX0X
|
# define BOOST_INTEL_STDCXX0X
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef BOOST_INTEL_STDCXX0X
|
#if !defined(BOOST_COMPILER)
|
||||||
#define BOOST_COMPILER "Intel C++ C++0x mode version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
|
# if defined(BOOST_INTEL_STDCXX0X)
|
||||||
#else
|
# define BOOST_COMPILER "Intel C++ C++0x mode version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
|
||||||
#define BOOST_COMPILER "Intel C++ version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
|
# else
|
||||||
|
# define BOOST_COMPILER "Intel C++ version " BOOST_STRINGIZE(BOOST_INTEL_CXX_VERSION)
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define BOOST_INTEL BOOST_INTEL_CXX_VERSION
|
#define BOOST_INTEL BOOST_INTEL_CXX_VERSION
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
|
Reference in New Issue
Block a user