]> rtime.felk.cvut.cz Git - eurobot/public.git/blob - src/boost/boost/config/compiler/gcc_xml.hpp
Add subset of boost library headers needed for compilation on PowerPC
[eurobot/public.git] / src / boost / boost / config / compiler / gcc_xml.hpp
1 //  (C) Copyright John Maddock 2006. 
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 //  GCC-XML C++ compiler setup:
9
10 #  if !defined(__GCCXML_GNUC__) || ((__GCCXML_GNUC__ <= 3) && (__GCCXML_GNUC_MINOR__ <= 3))
11 #     define BOOST_NO_IS_ABSTRACT
12 #  endif
13
14 //
15 // Threading support: Turn this on unconditionally here (except for
16 // those platforms where we can know for sure). It will get turned off again
17 // later if no threading API is detected.
18 //
19 #if !defined(__MINGW32__) && !defined(_MSC_VER) && !defined(linux) && !defined(__linux) && !defined(__linux__)
20 # define BOOST_HAS_THREADS
21 #endif 
22
23 //
24 // gcc has "long long"
25 //
26 #define BOOST_HAS_LONG_LONG
27
28 // C++0x features:
29 //
30 #  define BOOST_NO_CONSTEXPR
31 #  define BOOST_NO_NULLPTR
32 #  define BOOST_NO_TEMPLATE_ALIASES
33 #  define BOOST_NO_DECLTYPE
34 #  define BOOST_NO_DECLTYPE_N3276
35 #  define BOOST_NO_FUNCTION_TEMPLATE_DEFAULT_ARGS
36 #  define BOOST_NO_RVALUE_REFERENCES
37 #  define BOOST_NO_STATIC_ASSERT
38 #  define BOOST_NO_VARIADIC_TEMPLATES
39 #  define BOOST_NO_VARIADIC_MACROS
40 #  define BOOST_NO_AUTO_DECLARATIONS
41 #  define BOOST_NO_AUTO_MULTIDECLARATIONS
42 #  define BOOST_NO_CHAR16_T
43 #  define BOOST_NO_CHAR32_T
44 #  define BOOST_NO_DEFAULTED_FUNCTIONS
45 #  define BOOST_NO_DELETED_FUNCTIONS
46 #  define BOOST_NO_INITIALIZER_LISTS
47 #  define BOOST_NO_SCOPED_ENUMS  
48 #  define BOOST_NO_SFINAE_EXPR
49 #  define BOOST_NO_SCOPED_ENUMS
50 #  define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
51 #  define BOOST_NO_LAMBDAS
52 #  define BOOST_NO_RAW_LITERALS
53 #  define BOOST_NO_UNICODE_LITERALS
54 #  define BOOST_NO_NOEXCEPT
55 #define BOOST_NO_UNIFIED_INITIALIZATION_SYNTAX
56
57 #define BOOST_COMPILER "GCC-XML C++ version " __GCCXML__
58
59