New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
cray.hpp in branches/2012/dev_r3406_LOCEAN4_XIOS/NEMOGCM/EXTERNAL/XIOS/extern/boost/include/boost/config/compiler – NEMO

source: branches/2012/dev_r3406_LOCEAN4_XIOS/NEMOGCM/EXTERNAL/XIOS/extern/boost/include/boost/config/compiler/cray.hpp @ 3474

Last change on this file since 3474 was 3474, checked in by rblod, 12 years ago

Update IOSERVER to revision 357

  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1//  (C) Copyright John Maddock 2011.
2//  Use, modification and distribution are subject to the
3//  Boost Software License, Version 1.0. (See accompanying file
4//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6//  See http://www.boost.org for most recent version.
7
8//  Greenhills C compiler setup:
9
10#define BOOST_COMPILER "Cray C version " BOOST_STRINGIZE(_RELEASE)
11
12#if _RELEASE < 7
13#  error "Boost is not configured for Cray compilers prior to version 7, please try the configure script."
14#endif
15
16//
17// Check this is a recent EDG based compiler, otherwise we don't support it here:
18//
19#ifndef __EDG_VERSION__
20#  error "Unsupported Cray compiler, please try running the configure script."
21#endif
22
23#include "boost/config/compiler/common_edg.hpp"
24
25//
26// Cray peculiarities, probably version 7 specific:
27//
28#undef BOOST_NO_AUTO_DECLARATIONS
29#undef BOOST_NO_AUTO_MULTIDECLARATIONS
30#define BOOST_HAS_NRVO
31#define BOOST_NO_VARIADIC_TEMPLATES
32#define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
33#define BOOST_NO_UNICODE_LITERALS
34#define BOOST_NO_TWO_PHASE_NAME_LOOKUP
35#define BOOST_HAS_NRVO
36#define BOOST_NO_TEMPLATE_ALIASES
37#define BOOST_NO_STATIC_ASSERT
38#define BOOST_NO_SFINAE_EXPR
39#define BOOST_NO_SCOPED_ENUMS
40#define BOOST_NO_RVALUE_REFERENCES
41#define BOOST_NO_RANGE_BASED_FOR
42#define BOOST_NO_RAW_LITERALS
43#define BOOST_NO_NULLPTR
44#define BOOST_NO_NOEXCEPT
45#define BOOST_NO_LAMBDAS
46#define BOOST_NO_LOCAL_CLASS_TEMPLATE_PARAMETERS
47#define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
48#define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
49#define BOOST_NO_DELETED_FUNCTIONS
50#define BOOST_NO_DEFAULTED_FUNCTIONS
51#define BOOST_NO_DECLTYPE_N3276
52#define BOOST_NO_DECLTYPE
53#define BOOST_NO_CONSTEXPR
54#define BOOST_NO_COMPLETE_VALUE_INITIALIZATION
55#define BOOST_NO_CHAR32_T
56#define BOOST_NO_CHAR16_T
57//#define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
58#define BOOST_MATH_DISABLE_STD_FPCLASSIFY
59//#define BOOST_HAS_FPCLASSIFY
60
61#define BOOST_SP_USE_PTHREADS
62#define BOOST_AC_USE_PTHREADS
63
64
Note: See TracBrowser for help on using the repository browser.