cray.hpp 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // (C) Copyright John Maddock 2011.
  2. // (C) Copyright Cray, Inc. 2013
  3. // Use, modification and distribution are subject to the
  4. // Boost Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. // See http://www.boost.org for most recent version.
  7. // Greenhills C compiler setup:
  8. #define BOOST_COMPILER "Cray C version " BOOST_STRINGIZE(_RELEASE)
  9. #if _RELEASE < 8
  10. # error "Boost is not configured for Cray compilers prior to version 8, please try the configure script."
  11. #endif
  12. //
  13. // Check this is a recent EDG based compiler, otherwise we don't support it here:
  14. //
  15. #ifndef __EDG_VERSION__
  16. # error "Unsupported Cray compiler, please try running the configure script."
  17. #endif
  18. #include "boost/config/compiler/common_edg.hpp"
  19. //
  20. //
  21. #define BOOST_NO_CXX11_STATIC_ASSERT
  22. #define BOOST_NO_CXX11_AUTO_DECLARATIONS
  23. #define BOOST_NO_CXX11_AUTO_MULTIDECLARATIONS
  24. #define BOOST_HAS_NRVO
  25. #define BOOST_NO_CXX11_VARIADIC_MACROS
  26. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES
  27. #define BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX
  28. #define BOOST_NO_CXX11_UNICODE_LITERALS
  29. #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
  30. #define BOOST_HAS_NRVO
  31. #define BOOST_NO_CXX11_TEMPLATE_ALIASES
  32. #define BOOST_NO_CXX11_STATIC_ASSERT
  33. #define BOOST_NO_SFINAE_EXPR
  34. #define BOOST_NO_CXX11_SCOPED_ENUMS
  35. #define BOOST_NO_CXX11_RVALUE_REFERENCES
  36. #define BOOST_NO_CXX11_RANGE_BASED_FOR
  37. #define BOOST_NO_CXX11_RAW_LITERALS
  38. #define BOOST_NO_CXX11_NULLPTR
  39. #define BOOST_NO_CXX11_NOEXCEPT
  40. #define BOOST_NO_CXX11_LAMBDAS
  41. #define BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
  42. #define BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS
  43. #define BOOST_NO_CXX11_EXPLICIT_CONVERSION_OPERATORS
  44. #define BOOST_NO_CXX11_DELETED_FUNCTIONS
  45. #define BOOST_NO_CXX11_DEFAULTED_FUNCTIONS
  46. #define BOOST_NO_CXX11_DECLTYPE_N3276
  47. #define BOOST_NO_CXX11_DECLTYPE
  48. #define BOOST_NO_CXX11_CONSTEXPR
  49. #define BOOST_NO_CXX11_USER_DEFINED_LITERALS
  50. #define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
  51. #define BOOST_NO_CXX11_CHAR32_T
  52. #define BOOST_NO_CXX11_CHAR16_T
  53. #define BOOST_NO_CXX11_REF_QUALIFIERS
  54. #define BOOST_NO_CXX11_FINAL
  55. //#define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
  56. #define BOOST_MATH_DISABLE_STD_FPCLASSIFY
  57. //#define BOOST_HAS_FPCLASSIFY
  58. #define BOOST_SP_USE_PTHREADS
  59. #define BOOST_AC_USE_PTHREADS
  60. /* everything that follows is working around what are thought to be
  61. * compiler shortcomings. Revist all of these regularly.
  62. */
  63. //#define BOOST_USE_ENUM_STATIC_ASSERT
  64. //#define BOOST_BUGGY_INTEGRAL_CONSTANT_EXPRESSIONS //(this may be implied by the previous #define
  65. // These constants should be provided by the
  66. // compiler, at least when -hgnu is asserted on the command line.
  67. #ifndef __ATOMIC_RELAXED
  68. #define __ATOMIC_RELAXED 0
  69. #define __ATOMIC_CONSUME 1
  70. #define __ATOMIC_ACQUIRE 2
  71. #define __ATOMIC_RELEASE 3
  72. #define __ATOMIC_ACQ_REL 4
  73. #define __ATOMIC_SEQ_CST 5
  74. #endif