]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.3.3/include/bits/c++config
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.3.3 / include / bits / c++config
1 // Predefined symbols and macros -*- C++ -*-
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 // 2006, 2007 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING.  If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 /** @file c++config.h
32  *  This is an internal header file, included by other library headers.
33  *  You should not attempt to use it directly.
34  */
35
36 #ifndef _GLIBCXX_CXX_CONFIG_H
37 #define _GLIBCXX_CXX_CONFIG_H 1
38
39 // Pick up any OS-specific definitions.
40 #include <bits/os_defines.h>
41
42 // Pick up any CPU-specific definitions.
43 #include <bits/cpu_defines.h>
44
45 // The current version of the C++ library in compressed ISO date format.
46 #define __GLIBCXX__ 
47
48 // Macros for visibility.
49 // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
50 // _GLIBCXX_VISIBILITY_ATTR
51 #define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
52
53 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
54 # define _GLIBCXX_VISIBILITY_ATTR(V) __attribute__ ((__visibility__ (#V)))
55 #else
56 # define _GLIBCXX_VISIBILITY_ATTR(V) 
57 #endif
58
59 // Macros for deprecated.
60 // _GLIBCXX_DEPRECATED
61 // _GLIBCXX_DEPRECATED_ATTR
62 #ifndef _GLIBCXX_DEPRECATED
63 # define _GLIBCXX_DEPRECATED 1
64 #endif
65
66 #if defined(__DEPRECATED) && defined(__GXX_EXPERIMENTAL_CXX0X__)
67 # define _GLIBCXX_DEPRECATED_ATTR __attribute__ ((__deprecated__))
68 #else
69 # define _GLIBCXX_DEPRECATED_ATTR
70 #endif
71
72 // Macros for activating various namespace association modes.
73 // _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
74 // _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
75 // _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
76
77 // Guide to libstdc++ namespaces.
78 /*
79   namespace std
80   {
81     namespace __debug { }
82     namespace __parallel { }
83     namespace __norm { } // __normative, __shadow, __replaced
84     namespace __cxx1998 { }
85
86     namespace tr1 { }
87   }
88 */
89
90 #ifdef _GLIBCXX_DEBUG
91 # define _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 1
92 #endif
93
94 #ifdef _GLIBCXX_PARALLEL
95 # define _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL 1
96 #endif
97
98 #define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION 
99
100 // Defined if any namespace association modes are active.
101 #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG \
102   || _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL \
103   || _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
104 # define _GLIBCXX_USE_NAMESPACE_ASSOCIATION 1
105 #endif
106
107 // Macros for namespace scope. Either namespace std:: or the name
108 // of some nested namespace within it.
109 // _GLIBCXX_STD
110 // _GLIBCXX_STD_D
111 // _GLIBCXX_STD_P
112
113 //
114 // Macros for enclosing namespaces and possibly nested namespaces.
115 // _GLIBCXX_BEGIN_NAMESPACE
116 // _GLIBCXX_END_NAMESPACE
117 // _GLIBCXX_BEGIN_NESTED_NAMESPACE
118 // _GLIBCXX_END_NESTED_NAMESPACE
119 // _GLIBCXX_BEGIN_POTENTIAL_NESTED_NAMESPACE
120 // _GLIBCXX_END_POTENTIAL_NESTED_NAMESPACE
121 #ifndef _GLIBCXX_USE_NAMESPACE_ASSOCIATION
122 # define _GLIBCXX_STD_D _GLIBCXX_STD
123 # define _GLIBCXX_STD_P _GLIBCXX_STD
124 # define _GLIBCXX_STD std
125 # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y) _GLIBCXX_BEGIN_NAMESPACE(X)
126 # define _GLIBCXX_END_NESTED_NAMESPACE _GLIBCXX_END_NAMESPACE
127 # define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) {
128 # define _GLIBCXX_END_NAMESPACE }
129 #else
130
131 # if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION // && not anything else
132 #  define _GLIBCXX_STD_D _GLIBCXX_STD
133 #  define _GLIBCXX_STD_P _GLIBCXX_STD
134 #  define _GLIBCXX_STD _6
135 #  define _GLIBCXX_BEGIN_NAMESPACE(X) _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, _6)
136 #  define _GLIBCXX_END_NAMESPACE _GLIBCXX_END_NESTED_NAMESPACE
137 # endif
138
139 //  debug
140 # if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG && !_GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
141 #  define _GLIBCXX_STD_D __norm
142 #  define _GLIBCXX_STD_P _GLIBCXX_STD
143 #  define _GLIBCXX_STD __cxx1998
144 #  define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) { 
145 #  define _GLIBCXX_END_NAMESPACE }
146 #  define _GLIBCXX_EXTERN_TEMPLATE 0
147 # endif
148
149 // parallel
150 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && !_GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 
151 #  define _GLIBCXX_STD_D _GLIBCXX_STD
152 #  define _GLIBCXX_STD_P __norm
153 #  define _GLIBCXX_STD __cxx1998
154 #  define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) { 
155 #  define _GLIBCXX_END_NAMESPACE }
156 #  define _GLIBCXX_EXTERN_TEMPLATE 0
157 # endif
158
159 // debug + parallel
160 # if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL && _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG 
161 #  define _GLIBCXX_STD_D __norm
162 #  define _GLIBCXX_STD_P __norm
163 #  define _GLIBCXX_STD __cxx1998
164 #  define _GLIBCXX_BEGIN_NAMESPACE(X) namespace X _GLIBCXX_VISIBILITY_ATTR(default) { 
165 #  define _GLIBCXX_END_NAMESPACE }
166 #  define _GLIBCXX_EXTERN_TEMPLATE 0
167 # endif
168
169 # if __NO_INLINE__ && !__GXX_WEAK__
170 #  warning currently using namespace associated mode which may fail \
171    without inlining due to lack of weak symbols
172 # endif
173
174 # define _GLIBCXX_BEGIN_NESTED_NAMESPACE(X, Y)  namespace X { namespace Y _GLIBCXX_VISIBILITY_ATTR(default) {
175 # define _GLIBCXX_END_NESTED_NAMESPACE } }
176 #endif
177
178 // Namespace associations for debug mode.
179 #if _GLIBCXX_NAMESPACE_ASSOCIATION_DEBUG
180 namespace std
181
182   namespace __norm { } 
183   namespace __debug { }
184   namespace __cxx1998 { }
185
186   using namespace __debug __attribute__ ((strong)); 
187   using namespace __cxx1998 __attribute__ ((strong)); 
188 }
189 #endif
190
191 // Namespace associations for parallel mode.
192 #if _GLIBCXX_NAMESPACE_ASSOCIATION_PARALLEL
193 namespace std
194
195   namespace __norm { } 
196   namespace __parallel { }
197   namespace __cxx1998 { }
198
199   using namespace __parallel __attribute__ ((strong));
200   using namespace __cxx1998 __attribute__ ((strong)); 
201 }
202 #endif
203
204 // Namespace associations for versioning mode.
205 #if _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION
206 namespace std
207 {
208   namespace _6 { }
209   using namespace _6 __attribute__ ((strong));
210 }
211
212 namespace __gnu_cxx 
213
214   namespace _6 { }
215   using namespace _6 __attribute__ ((strong));
216 }
217
218 namespace std
219 {
220   namespace tr1 
221   { 
222     namespace _6 { }
223     using namespace _6 __attribute__ ((strong));
224   }
225 }
226 #endif
227
228 // Define if compatibility should be provided for -mlong-double-64.
229 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
230
231 // XXX GLIBCXX_ABI Deprecated
232 // Namespace associations for long double 128 mode.
233 _GLIBCXX_BEGIN_NAMESPACE(std)
234 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
235 # define _GLIBCXX_LDBL_NAMESPACE __gnu_cxx_ldbl128::
236 # define _GLIBCXX_BEGIN_LDBL_NAMESPACE namespace __gnu_cxx_ldbl128 {
237 # define _GLIBCXX_END_LDBL_NAMESPACE }
238   namespace __gnu_cxx_ldbl128 { }
239   using namespace __gnu_cxx_ldbl128 __attribute__((__strong__));
240 #else
241 # define _GLIBCXX_LDBL_NAMESPACE
242 # define _GLIBCXX_BEGIN_LDBL_NAMESPACE
243 # define _GLIBCXX_END_LDBL_NAMESPACE
244 #endif
245 _GLIBCXX_END_NAMESPACE
246
247
248 // Allow use of "export template." This is currently not a feature
249 // that g++ supports.
250 // #define _GLIBCXX_EXPORT_TEMPLATE 1
251
252 // Allow use of the GNU syntax extension, "extern template." This
253 // extension is fully documented in the g++ manual, but in a nutshell,
254 // it inhibits all implicit instantiations and is used throughout the
255 // library to avoid multiple weak definitions for required types that
256 // are already explicitly instantiated in the library binary. This
257 // substantially reduces the binary size of resulting executables.
258 #ifndef _GLIBCXX_EXTERN_TEMPLATE
259 # define _GLIBCXX_EXTERN_TEMPLATE 1
260 #endif
261
262
263 // Certain function definitions that are meant to be overridable from
264 // user code are decorated with this macro.  For some targets, this
265 // macro causes these definitions to be weak.
266 #ifndef _GLIBCXX_WEAK_DEFINITION
267 # define _GLIBCXX_WEAK_DEFINITION
268 #endif
269
270 // Macro used to indicate that the native "C" includes, when compiled
271 // as "C++", have declarations in namespace std and not the global
272 // namespace. Note, this is unrelated to possible "C" compatibility
273 // includes that inject C90/C99 names into the global namespace.
274 #if __cplusplus == 199711L
275 # define _GLIBCXX_NAMESPACE_GLOBAL_INJECTION 1
276 #endif
277
278 // The remainder of the prewritten config is automatic; all the
279 // user hooks are listed above.
280
281 // Create a boolean flag to be used to determine if --fast-math is set.
282 #ifdef __FAST_MATH__
283 # define _GLIBCXX_FAST_MATH 1
284 #else
285 # define _GLIBCXX_FAST_MATH 0
286 #endif
287
288 // This marks string literals in header files to be extracted for eventual
289 // translation.  It is primarily used for messages in thrown exceptions; see
290 // src/functexcept.cc.  We use __N because the more traditional _N is used
291 // for something else under certain OSes (see BADNAMES).
292 #define __N(msgid)     (msgid)
293
294 // For example, <windows.h> is known to #define min and max as macros...
295 #undef min
296 #undef max
297
298 // End of prewritten config; the discovered settings follow.