]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/boost-lite/include/boost/config/compiler/borland.hpp
Inital import
[l4.git] / l4 / pkg / boost-lite / include / boost / config / compiler / borland.hpp
1 //  (C) Copyright John Maddock 2001 - 2003.
2 //  (C) Copyright David Abrahams 2002 - 2003.
3 //  (C) Copyright Aleksey Gurtovoy 2002.
4 //  Use, modification and distribution are subject to the
5 //  Boost Software License, Version 1.0. (See accompanying file
6 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8 //  See http://www.boost.org for most recent version.
9
10 //  Borland C++ compiler setup:
11
12 //
13 // versions check:
14 // we don't support Borland prior to version 5.4:
15 #if __BORLANDC__ < 0x540
16 #  error "Compiler not supported or configured - please reconfigure"
17 #endif
18
19 // last known compiler version:
20 #if (__BORLANDC__ > 0x610)
21 //#  if defined(BOOST_ASSERT_CONFIG)
22 #     error "Unknown compiler version - please run the configure tests and report the results"
23 //#  else
24 //#     pragma message( "Unknown compiler version - please run the configure tests and report the results")
25 //#  endif
26 #elif (__BORLANDC__ == 0x600)
27 #  error "CBuilderX preview compiler is no longer supported"
28 #endif
29
30 //
31 // Support macros to help with standard library detection
32 #if (__BORLANDC__ < 0x560) || defined(_USE_OLD_RW_STL)
33 #  define BOOST_BCB_WITH_ROGUE_WAVE
34 #elif __BORLANDC__ < 0x570
35 #  define BOOST_BCB_WITH_STLPORT
36 #else
37 #  define BOOST_BCB_WITH_DINKUMWARE
38 #endif
39
40 //
41 // Version 5.0 and below:
42 #   if __BORLANDC__ <= 0x0550
43 // Borland C++Builder 4 and 5:
44 #     define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
45 #     if __BORLANDC__ == 0x0550
46 // Borland C++Builder 5, command-line compiler 5.5:
47 #       define BOOST_NO_OPERATORS_IN_NAMESPACE
48 #     endif
49 #   endif
50
51 // Version 5.51 and below:
52 #if (__BORLANDC__ <= 0x551)
53 #  define BOOST_NO_CV_SPECIALIZATIONS
54 #  define BOOST_NO_CV_VOID_SPECIALIZATIONS
55 #  define BOOST_NO_DEDUCED_TYPENAME
56 // workaround for missing WCHAR_MAX/WCHAR_MIN:
57 #include <climits>
58 #include <cwchar>
59 #ifndef WCHAR_MAX
60 #  define WCHAR_MAX 0xffff
61 #endif
62 #ifndef WCHAR_MIN
63 #  define WCHAR_MIN 0
64 #endif
65 #endif
66
67 // Borland C++ Builder 6 and below:
68 #if (__BORLANDC__ <= 0x564)
69 #  define BOOST_NO_INTEGRAL_INT64_T
70
71 #  ifdef NDEBUG
72       // fix broken <cstring> so that Boost.test works:
73 #     include <cstring>
74 #     undef strcmp
75 #  endif
76    // fix broken errno declaration:
77 #  include <errno.h>
78 #  ifndef errno
79 #     define errno errno
80 #  endif
81
82 #endif
83
84 //
85 // new bug in 5.61:
86 #if (__BORLANDC__ >= 0x561) && (__BORLANDC__ <= 0x580)
87    // this seems to be needed by the command line compiler, but not the IDE:
88 #  define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS
89 #endif
90
91 // Borland C++ Builder 2006 Update 2 and below:
92 #if (__BORLANDC__ <= 0x582)
93 #  define BOOST_NO_SFINAE
94 #  define BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
95 #  define BOOST_NO_TEMPLATE_TEMPLATES
96
97 #  define BOOST_NO_PRIVATE_IN_AGGREGATE
98
99 #  ifdef _WIN32
100 #     define BOOST_NO_SWPRINTF
101 #  elif defined(linux) || defined(__linux__) || defined(__linux)
102       // we should really be able to do without this
103       // but the wcs* functions aren't imported into std::
104 #     define BOOST_NO_STDC_NAMESPACE
105       // _CPPUNWIND doesn't get automatically set for some reason:
106 #     pragma defineonoption BOOST_CPPUNWIND -x
107 #  endif
108 #endif
109
110 // Borland C++ Builder 2007 December 2007 Update and below:
111 //#if (__BORLANDC__ <= 0x593)
112 #if (__BORLANDC__ <= 0x610)  // Beman has asked Alisdair for more info
113    // we shouldn't really need this - but too many things choke
114    // without it, this needs more investigation:
115 #  define BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS
116 #  define BOOST_NO_IS_ABSTRACT
117 #  define BOOST_NO_FUNCTION_TYPE_SPECIALIZATIONS
118
119 // Temporary workaround
120 #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
121 #endif
122
123 // Borland C++ Builder 2008 and below:
124 #if (__BORLANDC__ <= 0x601)
125 #  define BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL
126 #  define BOOST_ILLEGAL_CV_REFERENCES
127 #  define BOOST_NO_DEPENDENT_NESTED_DERIVATIONS
128 #  define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
129 #  define BOOST_NO_TWO_PHASE_NAME_LOOKUP
130 #  define BOOST_NO_USING_TEMPLATE
131 #  define BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE
132 #endif
133
134 //
135 //  Positive Feature detection
136 //
137 // Borland C++ Builder 2008 and below:
138 #if (__BORLANDC__ >= 0x599)
139 #  pragma defineonoption BOOST_CODEGEAR_0X_SUPPORT -Ax
140 #endif
141 //
142 // C++0x Macros:
143 //
144 #if defined( BOOST_CODEGEAR_0X_SUPPORT ) && (__BORLANDC__ >= 0x610)
145 #  define BOOST_HAS_ALIGNOF
146 #  define BOOST_HAS_CHAR16_T
147 #  define BOOST_HAS_CHAR32_T
148 #  define BOOST_HAS_DECLTYPE
149 #  define BOOST_HAS_EXPLICIT_CONVERSION_OPS
150 #  define BOOST_HAS_REF_QUALIFIER
151 #  define BOOST_HAS_RVALUE_REFS
152 #  define BOOST_HAS_STATIC_ASSERT
153
154 #  define BOOST_NO_EXTERN_TEMPLATE
155 #  define BOOST_NO_SCOPED_ENUMS
156 #  define BOOST_NO_VARIADIC_TEMPLATES
157 #  define BOOST_NO_CONSTEXPR
158 #  define BOOST_NO_DEFAULTED_FUNCTIONS
159 #  define BOOST_NO_DELETED_FUNCTIONS
160 #  define BOOST_NO_RAW_LITERALS
161 #  define BOOST_NO_UNICODE_LITERALS       // UTF-8 still not supported
162 #else
163 #  define BOOST_NO_CHAR16_T
164 #  define BOOST_NO_CHAR32_T
165 #  define BOOST_NO_DECLTYPE
166 #  define BOOST_NO_EXPLICIT_CONVERSION_OPERATORS
167 #  define BOOST_NO_EXTERN_TEMPLATE
168 #  define BOOST_NO_SCOPED_ENUMS
169 #  define BOOST_NO_STATIC_ASSERT
170 #  define BOOST_NO_RVALUE_REFERENCES
171 #  define BOOST_NO_VARIADIC_TEMPLATES
172 #  define BOOST_NO_CONSTEXPR
173 #  define BOOST_NO_DEFAULTED_FUNCTIONS
174 #  define BOOST_NO_DELETED_FUNCTIONS
175 #  define BOOST_NO_RAW_LITERALS
176 #  define BOOST_NO_UNICODE_LITERALS
177 #endif
178
179 #define BOOST_NO_AUTO_DECLARATIONS
180 #define BOOST_NO_AUTO_MULTIDECLARATIONS
181 #define BOOST_NO_INITIALIZER_LISTS
182
183 #if __BORLANDC__ >= 0x590
184 #  define BOOST_HAS_TR1_HASH
185
186 #  define BOOST_HAS_MACRO_USE_FACET
187 #endif
188
189 //
190 // Post 0x561 we have long long and stdint.h:
191 #if __BORLANDC__ >= 0x561
192 #  ifndef __NO_LONG_LONG
193 #     define BOOST_HAS_LONG_LONG
194 #  else
195 #     define BOOST_NO_LONG_LONG
196 #  endif
197    // On non-Win32 platforms let the platform config figure this out:
198 #  ifdef _WIN32
199 #      define BOOST_HAS_STDINT_H
200 #  endif
201 #endif
202
203 // Borland C++Builder 6 defaults to using STLPort.  If _USE_OLD_RW_STL is
204 // defined, then we have 0x560 or greater with the Rogue Wave implementation
205 // which presumably has the std::DBL_MAX bug.
206 #if defined( BOOST_BCB_WITH_ROGUE_WAVE )
207 // <climits> is partly broken, some macros define symbols that are really in
208 // namespace std, so you end up having to use illegal constructs like
209 // std::DBL_MAX, as a fix we'll just include float.h and have done with:
210 #include <float.h>
211 #endif
212 //
213 // __int64:
214 //
215 #if (__BORLANDC__ >= 0x530) && !defined(__STRICT_ANSI__)
216 #  define BOOST_HAS_MS_INT64
217 #endif
218 //
219 // check for exception handling support:
220 //
221 #if !defined(_CPPUNWIND) && !defined(BOOST_CPPUNWIND) && !defined(__EXCEPTIONS)
222 #  define BOOST_NO_EXCEPTIONS
223 #endif
224 //
225 // all versions have a <dirent.h>:
226 //
227 #ifndef __STRICT_ANSI__
228 #  define BOOST_HAS_DIRENT_H
229 #endif
230 //
231 // all versions support __declspec:
232 //
233 #ifndef __STRICT_ANSI__
234 #  define BOOST_HAS_DECLSPEC
235 #endif
236 //
237 // ABI fixing headers:
238 //
239 #if __BORLANDC__ < 0x600 // not implemented for version 6 compiler yet
240 #ifndef BOOST_ABI_PREFIX
241 #  define BOOST_ABI_PREFIX "boost/config/abi/borland_prefix.hpp"
242 #endif
243 #ifndef BOOST_ABI_SUFFIX
244 #  define BOOST_ABI_SUFFIX "boost/config/abi/borland_suffix.hpp"
245 #endif
246 #endif
247 //
248 // Disable Win32 support in ANSI mode:
249 //
250 #if __BORLANDC__ < 0x600
251 #  pragma defineonoption BOOST_DISABLE_WIN32 -A
252 #elif defined(__STRICT_ANSI__)
253 #  define BOOST_DISABLE_WIN32
254 #endif
255 //
256 // MSVC compatibility mode does some nasty things:
257 // TODO: look up if this doesn't apply to the whole 12xx range
258 //
259 #if defined(_MSC_VER) && (_MSC_VER <= 1200)
260 #  define BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
261 #  define BOOST_NO_VOID_RETURNS
262 #endif
263
264 #define BOOST_COMPILER "Borland C++ version " BOOST_STRINGIZE(__BORLANDC__)
265
266
267