sunpro_cc.hpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. // (C) Copyright John Maddock 2001.
  2. // (C) Copyright Jens Maurer 2001 - 2003.
  3. // (C) Copyright Peter Dimov 2002.
  4. // (C) Copyright Aleksey Gurtovoy 2002 - 2003.
  5. // (C) Copyright David Abrahams 2002.
  6. // Use, modification and distribution are subject to the
  7. // Boost Software License, Version 1.0. (See accompanying file
  8. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. // See http://www.boost.org for most recent version.
  10. // Sun C++ compiler setup:
  11. # if __SUNPRO_CC <= 0x500
  12. # define BOOST_NO_MEMBER_TEMPLATES
  13. # define BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  14. # endif
  15. # if (__SUNPRO_CC <= 0x520)
  16. //
  17. // Sunpro 5.2 and earler:
  18. //
  19. // although sunpro 5.2 supports the syntax for
  20. // inline initialization it often gets the value
  21. // wrong, especially where the value is computed
  22. // from other constants (J Maddock 6th May 2001)
  23. # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  24. // Although sunpro 5.2 supports the syntax for
  25. // partial specialization, it often seems to
  26. // bind to the wrong specialization. Better
  27. // to disable it until suppport becomes more stable
  28. // (J Maddock 6th May 2001).
  29. # define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  30. # endif
  31. # if (__SUNPRO_CC <= 0x530)
  32. // Requesting debug info (-g) with Boost.Python results
  33. // in an internal compiler error for "static const"
  34. // initialized in-class.
  35. // >> Assertion: (../links/dbg_cstabs.cc, line 611)
  36. // while processing ../test.cpp at line 0.
  37. // (Jens Maurer according to Gottfried Ganssauge 04 Mar 2002)
  38. # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  39. // SunPro 5.3 has better support for partial specialization,
  40. // but breaks when compiling std::less<shared_ptr<T> >
  41. // (Jens Maurer 4 Nov 2001).
  42. // std::less specialization fixed as reported by George
  43. // Heintzelman; partial specialization re-enabled
  44. // (Peter Dimov 17 Jan 2002)
  45. //# define BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
  46. // integral constant expressions with 64 bit numbers fail
  47. # define BOOST_NO_INTEGRAL_INT64_T
  48. # endif
  49. # if (__SUNPRO_CC < 0x570)
  50. # define BOOST_NO_TEMPLATE_TEMPLATES
  51. // see http://lists.boost.org/MailArchives/boost/msg47184.php
  52. // and http://lists.boost.org/MailArchives/boost/msg47220.php
  53. # define BOOST_NO_INCLASS_MEMBER_INITIALIZATION
  54. # define BOOST_NO_SFINAE
  55. # define BOOST_NO_ARRAY_TYPE_SPECIALIZATIONS
  56. # endif
  57. # if (__SUNPRO_CC <= 0x580)
  58. # define BOOST_NO_IS_ABSTRACT
  59. # endif
  60. # if (__SUNPRO_CC <= 0x5100)
  61. // Sun 5.10 may not correctly value-initialize objects of
  62. // some user defined types, as was reported in April 2010
  63. // (CR 6947016), and confirmed by Steve Clamage.
  64. // (Niels Dekker, LKEB, May 2010).
  65. # define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  66. # endif
  67. //
  68. // Dynamic shared object (DSO) and dynamic-link library (DLL) support
  69. //
  70. #if __SUNPRO_CC > 0x500
  71. # define BOOST_SYMBOL_EXPORT __global
  72. # define BOOST_SYMBOL_IMPORT __global
  73. # define BOOST_SYMBOL_VISIBLE __global
  74. #endif
  75. //
  76. // Issues that effect all known versions:
  77. //
  78. #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  79. #define BOOST_NO_ADL_BARRIER
  80. //
  81. // C++0x features
  82. //
  83. # define BOOST_HAS_LONG_LONG
  84. #define BOOST_NO_CXX11_AUTO_DECLARATIONS
  85. #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  86. #define BOOST_NO_CXX11_CHAR16_T
  87. #define BOOST_NO_CXX11_CHAR32_T
  88. #define BOOST_NO_CXX11_CONSTEXPR
  89. #define BOOST_NO_CXX11_DECLTYPE
  90. #define BOOST_NO_CXX11_DECLTYPE_N3276
  91. #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  92. #define BOOST_NO_CXX11_DELETED_FUNCTIONS
  93. #define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  94. #define BOOST_NO_CXX11_EXTERN_TEMPLATE
  95. #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  96. #define BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  97. #define BOOST_NO_CXX11_LAMBDAS
  98. #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  99. #define BOOST_NO_CXX11_NOEXCEPT
  100. #define BOOST_NO_CXX11_NULLPTR
  101. #define BOOST_NO_CXX11_RANGE_BASED_FOR
  102. #define BOOST_NO_CXX11_RAW_LITERALS
  103. #define BOOST_NO_CXX11_RVALUE_REFERENCES
  104. #define BOOST_NO_CXX11_SCOPED_ENUMS
  105. #define BOOST_NO_SFINAE_EXPR
  106. #define BOOST_NO_CXX11_STATIC_ASSERT
  107. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  108. #define BOOST_NO_CXX11_UNICODE_LITERALS
  109. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  110. #define BOOST_NO_CXX11_VARIADIC_MACROS
  111. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  112. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  113. #define BOOST_NO_CXX11_ALIGNAS
  114. #define BOOST_NO_CXX11_TRAILING_RESULT_TYPES
  115. #define BOOST_NO_CXX11_INLINE_NAMESPACES
  116. //
  117. // Version
  118. //
  119. #define BOOST_COMPILER "Sun compiler version " BOOST_STRINGIZE(__SUNPRO_CC)
  120. //
  121. // versions check:
  122. // we don't support sunpro prior to version 4:
  123. #if __SUNPRO_CC < 0x400
  124. #error "Compiler not supported or configured - please reconfigure"
  125. #endif
  126. //
  127. // last known and checked version is 0x590:
  128. #if (__SUNPRO_CC > 0x590)
  129. # if defined(BOOST_ASSERT_CONFIG)
  130. # error "Unknown compiler version - please run the configure tests and report the results"
  131. # endif
  132. #endif