Disable __int128 support on CUDA + Intel C++.

Fixes https://svn.boost.org/trac/boost/ticket/10369
This commit is contained in:
jzmaddock
2014-08-22 19:09:02 +01:00
parent 2662b12166
commit 053f0e420a

View File

@ -331,7 +331,7 @@ template<> struct assert_intrinsic_wchar_t<unsigned short> {};
# undef BOOST_NO_CXX11_FINAL # undef BOOST_NO_CXX11_FINAL
#endif #endif
#if defined(__LP64__) && defined(__GNUC__) && (BOOST_INTEL_CXX_VERSION >= 1310) #if defined(__LP64__) && defined(__GNUC__) && (BOOST_INTEL_CXX_VERSION >= 1310) && !defined(__CUDACC__)
# define BOOST_HAS_INT128 # define BOOST_HAS_INT128
#endif #endif