]> git.lyx.org Git - features.git/blob - boost/boost/config/compiler/pgi.hpp
boost: add eol property
[features.git] / boost / boost / config / compiler / pgi.hpp
1 //  (C) Copyright Noel Belcourt 2007.
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 //  PGI C++ compiler setup:
9
10 #define BOOST_COMPILER_VERSION __PGIC__##__PGIC_MINOR__
11 #define BOOST_COMPILER "PGI compiler version " BOOST_STRINGIZE(_COMPILER_VERSION)
12
13 //
14 // Threading support:
15 // Turn this on unconditionally here, it will get turned off again later
16 // if no threading API is detected.
17 //
18
19 #if (__PGIC__ >= 7)
20
21 #define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL 
22 #define BOOST_NO_TWO_PHASE_NAME_LOOKUP
23 #define BOOST_NO_SWPRINTF
24
25 #else
26
27 #  error "Pgi compiler not configured - please reconfigure"
28
29 #endif
30 //
31 // C++0x features
32 //
33 //   See boost\config\suffix.hpp for BOOST_NO_LONG_LONG
34 //
35 #define BOOST_NO_AUTO_DECLARATIONS
36 #define BOOST_NO_AUTO_MULTIDECLARATIONS
37 #define BOOST_NO_CHAR16_T
38 #define BOOST_NO_CHAR32_T
39 #define BOOST_NO_CONCEPTS
40 #define BOOST_NO_CONSTEXPR
41 #define BOOST_NO_DECLTYPE
42 #define BOOST_NO_DEFAULTED_FUNCTIONS
43 #define BOOST_NO_DELETED_FUNCTIONS
44 #define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
45 #define BOOST_NO_EXTERN_TEMPLATE
46 #define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
47 #define BOOST_NO_INITIALIZER_LISTS
48 #define BOOST_NO_LAMBDAS
49 #define BOOST_NO_NULLPTR
50 #define BOOST_NO_RAW_LITERALS
51 #define BOOST_NO_RVALUE_REFERENCES
52 #define BOOST_NO_SCOPED_ENUMS
53 #define BOOST_NO_SFINAE_EXPR
54 #define BOOST_NO_STATIC_ASSERT
55 #define BOOST_NO_TEMPLATE_ALIASES
56 #define BOOST_NO_UNICODE_LITERALS
57 #define BOOST_NO_VARIADIC_TEMPLATES
58
59 //
60 // version check:
61 // probably nothing to do here?
62