forked from boostorg/config
Prefix "Unknown compiler version ..." messages with "boost:".
Makes it easier to figure out which library is outputing such messages during compilation.
This commit is contained in:
@ -19,9 +19,9 @@
|
|||||||
// last known compiler version:
|
// last known compiler version:
|
||||||
#if (__BORLANDC__ > 0x613)
|
#if (__BORLANDC__ > 0x613)
|
||||||
//# if defined(BOOST_ASSERT_CONFIG)
|
//# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
//# else
|
//# else
|
||||||
//# pragma message( "Unknown compiler version - please run the configure tests and report the results")
|
//# pragma message( "boost: Unknown compiler version - please run the configure tests and report the results")
|
||||||
//# endif
|
//# endif
|
||||||
#elif (__BORLANDC__ == 0x600)
|
#elif (__BORLANDC__ == 0x600)
|
||||||
# error "CBuilderX preview compiler is no longer supported"
|
# error "CBuilderX preview compiler is no longer supported"
|
||||||
|
@ -22,9 +22,9 @@
|
|||||||
// last known and checked version is 0x621
|
// last known and checked version is 0x621
|
||||||
#if (__CODEGEARC__ > 0x621)
|
#if (__CODEGEARC__ > 0x621)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
# pragma message( "Unknown compiler version - please run the configure tests and report the results")
|
# pragma message( "boost: Unknown compiler version - please run the configure tests and report the results")
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
// last known and checked version is 4245:
|
// last known and checked version is 4245:
|
||||||
#if (__COMO_VERSION__ > 4245)
|
#if (__COMO_VERSION__ > 4245)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -120,6 +120,6 @@
|
|||||||
// last known and checked version is ...:
|
// last known and checked version is ...:
|
||||||
#if (__DMC__ > 0x848)
|
#if (__DMC__ > 0x848)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -318,11 +318,11 @@
|
|||||||
// last known and checked version is 4.9:
|
// last known and checked version is 4.9:
|
||||||
#if (BOOST_GCC_VERSION > 40900)
|
#if (BOOST_GCC_VERSION > 40900)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
// we don't emit warnings here anymore since there are no defect macros defined for
|
// we don't emit warnings here anymore since there are no defect macros defined for
|
||||||
// gcc post 3.4, so any failures are gcc regressions...
|
// gcc post 3.4, so any failures are gcc regressions...
|
||||||
//# warning "Unknown compiler version - please run the configure tests and report the results"
|
//# warning "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
// last known and checked version is 0:
|
// last known and checked version is 0:
|
||||||
#if (__ghs > 0)
|
#if (__ghs > 0)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -141,6 +141,6 @@
|
|||||||
// last known and checked version for PA-RISC is 38000
|
// last known and checked version for PA-RISC is 38000
|
||||||
#if ((__HP_aCC > 61300) || ((__HP_aCC > 38000) && defined(__hpxstd98)))
|
#if ((__HP_aCC > 61300) || ((__HP_aCC > 38000) && defined(__hpxstd98)))
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -531,13 +531,13 @@ template<> struct assert_intrinsic_wchar_t<unsigned short> {};
|
|||||||
// last known and checked version:
|
// last known and checked version:
|
||||||
#if (BOOST_INTEL_CXX_VERSION > 1500)
|
#if (BOOST_INTEL_CXX_VERSION > 1500)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# elif defined(_MSC_VER)
|
# elif defined(_MSC_VER)
|
||||||
//
|
//
|
||||||
// We don't emit this warning any more, since we have so few
|
// We don't emit this warning any more, since we have so few
|
||||||
// defect macros set anyway (just the one).
|
// defect macros set anyway (just the one).
|
||||||
//
|
//
|
||||||
//# pragma message("Unknown compiler version - please run the configure tests and report the results")
|
//# pragma message("boost: Unknown compiler version - please run the configure tests and report the results")
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
// last known and checked version is 4001:
|
// last known and checked version is 4001:
|
||||||
#if (__KCC_VERSION > 4001)
|
#if (__KCC_VERSION > 4001)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@
|
|||||||
// last known and checked version:
|
// last known and checked version:
|
||||||
#if (__MWERKS__ > 0x3205)
|
#if (__MWERKS__ > 0x3205)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@
|
|||||||
// last known and checked version is 0x890:
|
// last known and checked version is 0x890:
|
||||||
#if (MPW_CPLUS > 0x890)
|
#if (MPW_CPLUS > 0x890)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -193,6 +193,6 @@
|
|||||||
// last known and checked version is 0x590:
|
// last known and checked version is 0x590:
|
||||||
#if (__SUNPRO_CC > 0x590)
|
#if (__SUNPRO_CC > 0x590)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
// last known and checked version is 1210:
|
// last known and checked version is 1210:
|
||||||
#if (__IBMCPP__ > 1210)
|
#if (__IBMCPP__ > 1210)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -240,9 +240,9 @@
|
|||||||
# if _MSC_VER < 1400
|
# if _MSC_VER < 1400
|
||||||
// Note: I'm not aware of any CE compiler with version 13xx
|
// Note: I'm not aware of any CE compiler with version 13xx
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown EVC++ compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
|
# pragma message("boost: Unknown EVC++ compiler version - please run the configure tests and report the results")
|
||||||
# endif
|
# endif
|
||||||
# elif _MSC_VER < 1500
|
# elif _MSC_VER < 1500
|
||||||
# define BOOST_COMPILER_VERSION evc8
|
# define BOOST_COMPILER_VERSION evc8
|
||||||
@ -258,9 +258,9 @@
|
|||||||
# define BOOST_COMPILER_VERSION evc14
|
# define BOOST_COMPILER_VERSION evc14
|
||||||
# else
|
# else
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown EVC++ compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown EVC++ compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
# pragma message("Unknown EVC++ compiler version - please run the configure tests and report the results")
|
# pragma message("boost: Unknown EVC++ compiler version - please run the configure tests and report the results")
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
@ -297,8 +297,8 @@
|
|||||||
// last known and checked version is 19.00.23026 (VC++ 2015 RTM):
|
// last known and checked version is 19.00.23026 (VC++ 2015 RTM):
|
||||||
#if (_MSC_VER > 1900)
|
#if (_MSC_VER > 1900)
|
||||||
# if defined(BOOST_ASSERT_CONFIG)
|
# if defined(BOOST_ASSERT_CONFIG)
|
||||||
# error "Unknown compiler version - please run the configure tests and report the results"
|
# error "boost: Unknown compiler version - please run the configure tests and report the results"
|
||||||
# else
|
# else
|
||||||
# pragma message("Unknown compiler version - please run the configure tests and report the results")
|
# pragma message("boost: Unknown compiler version - please run the configure tests and report the results")
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user