1 | // Predefined symbols and macros -*- C++ -*- |
2 | |
3 | // Copyright (C) 1997-2016 Free Software Foundation, Inc. |
4 | // |
5 | // This file is part of the GNU ISO C++ Library. This library is free |
6 | // software; you can redistribute it and/or modify it under the |
7 | // terms of the GNU General Public License as published by the |
8 | // Free Software Foundation; either version 3, or (at your option) |
9 | // any later version. |
10 | |
11 | // This library is distributed in the hope that it will be useful, |
12 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | // GNU General Public License for more details. |
15 | |
16 | // Under Section 7 of GPL version 3, you are granted additional |
17 | // permissions described in the GCC Runtime Library Exception, version |
18 | // 3.1, as published by the Free Software Foundation. |
19 | |
20 | // You should have received a copy of the GNU General Public License and |
21 | // a copy of the GCC Runtime Library Exception along with this program; |
22 | // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see |
23 | // <http://www.gnu.org/licenses/>. |
24 | |
25 | /** @file bits/c++config.h |
26 | * This is an internal header file, included by other library headers. |
27 | * Do not attempt to use it directly. @headername{iosfwd} |
28 | */ |
29 | |
30 | #ifndef _GLIBCXX_CXX_CONFIG_H |
31 | #define _GLIBCXX_CXX_CONFIG_H 1 |
32 | |
33 | // The current version of the C++ library in compressed ISO date format. |
34 | #define __GLIBCXX__ 20170516 |
35 | |
36 | // Macros for various attributes. |
37 | // _GLIBCXX_PURE |
38 | // _GLIBCXX_CONST |
39 | // _GLIBCXX_NORETURN |
40 | // _GLIBCXX_NOTHROW |
41 | // _GLIBCXX_VISIBILITY |
42 | #ifndef _GLIBCXX_PURE |
43 | # define _GLIBCXX_PURE __attribute__ ((__pure__)) |
44 | #endif |
45 | |
46 | #ifndef _GLIBCXX_CONST |
47 | # define _GLIBCXX_CONST __attribute__ ((__const__)) |
48 | #endif |
49 | |
50 | #ifndef _GLIBCXX_NORETURN |
51 | # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__)) |
52 | #endif |
53 | |
54 | // See below for C++ |
55 | #ifndef _GLIBCXX_NOTHROW |
56 | # ifndef __cplusplus |
57 | # define _GLIBCXX_NOTHROW __attribute__((__nothrow__)) |
58 | # endif |
59 | #endif |
60 | |
61 | // Macros for visibility attributes. |
62 | // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY |
63 | // _GLIBCXX_VISIBILITY |
64 | # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1 |
65 | |
66 | #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY |
67 | # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V))) |
68 | #else |
69 | // If this is not supplied by the OS-specific or CPU-specific |
70 | // headers included below, it will be defined to an empty default. |
71 | # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) |
72 | #endif |
73 | |
74 | // Macros for deprecated attributes. |
75 | // _GLIBCXX_USE_DEPRECATED |
76 | // _GLIBCXX_DEPRECATED |
77 | #ifndef _GLIBCXX_USE_DEPRECATED |
78 | # define _GLIBCXX_USE_DEPRECATED 1 |
79 | #endif |
80 | |
81 | #if defined(__DEPRECATED) && (__cplusplus >= 201103L) |
82 | # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__)) |
83 | #else |
84 | # define _GLIBCXX_DEPRECATED |
85 | #endif |
86 | |
87 | // Macros for ABI tag attributes. |
88 | #ifndef _GLIBCXX_ABI_TAG_CXX11 |
89 | # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11"))) |
90 | #endif |
91 | |
92 | |
93 | #if __cplusplus |
94 | |
95 | // Macro for constexpr, to support in mixed 03/0x mode. |
96 | #ifndef _GLIBCXX_CONSTEXPR |
97 | # if __cplusplus >= 201103L |
98 | # define _GLIBCXX_CONSTEXPR constexpr |
99 | # define _GLIBCXX_USE_CONSTEXPR constexpr |
100 | # else |
101 | # define _GLIBCXX_CONSTEXPR |
102 | # define _GLIBCXX_USE_CONSTEXPR const |
103 | # endif |
104 | #endif |
105 | |
106 | #ifndef _GLIBCXX14_CONSTEXPR |
107 | # if __cplusplus >= 201402L |
108 | # define _GLIBCXX14_CONSTEXPR constexpr |
109 | # else |
110 | # define _GLIBCXX14_CONSTEXPR |
111 | # endif |
112 | #endif |
113 | |
114 | // Macro for noexcept, to support in mixed 03/0x mode. |
115 | #ifndef _GLIBCXX_NOEXCEPT |
116 | # if __cplusplus >= 201103L |
117 | # define _GLIBCXX_NOEXCEPT noexcept |
118 | # define _GLIBCXX_NOEXCEPT_IF(_COND) noexcept(_COND) |
119 | # define _GLIBCXX_USE_NOEXCEPT noexcept |
120 | # define _GLIBCXX_THROW(_EXC) |
121 | # else |
122 | # define _GLIBCXX_NOEXCEPT |
123 | # define _GLIBCXX_NOEXCEPT_IF(_COND) |
124 | # define _GLIBCXX_USE_NOEXCEPT throw() |
125 | # define _GLIBCXX_THROW(_EXC) throw(_EXC) |
126 | # endif |
127 | #endif |
128 | |
129 | #ifndef _GLIBCXX_NOTHROW |
130 | # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT |
131 | #endif |
132 | |
133 | #ifndef _GLIBCXX_THROW_OR_ABORT |
134 | # if __cpp_exceptions |
135 | # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC)) |
136 | # else |
137 | # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort()) |
138 | # endif |
139 | #endif |
140 | |
141 | // Macro for extern template, ie controlling template linkage via use |
142 | // of extern keyword on template declaration. As documented in the g++ |
143 | // manual, it inhibits all implicit instantiations and is used |
144 | // throughout the library to avoid multiple weak definitions for |
145 | // required types that are already explicitly instantiated in the |
146 | // library binary. This substantially reduces the binary size of |
147 | // resulting executables. |
148 | // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern |
149 | // templates only in basic_string, thus activating its debug-mode |
150 | // checks even at -O0. |
151 | # define _GLIBCXX_EXTERN_TEMPLATE 1 |
152 | |
153 | /* |
154 | Outline of libstdc++ namespaces. |
155 | |
156 | namespace std |
157 | { |
158 | namespace __debug { } |
159 | namespace __parallel { } |
160 | namespace __profile { } |
161 | namespace __cxx1998 { } |
162 | |
163 | namespace __detail { } |
164 | |
165 | namespace rel_ops { } |
166 | |
167 | namespace tr1 |
168 | { |
169 | namespace placeholders { } |
170 | namespace regex_constants { } |
171 | namespace __detail { } |
172 | } |
173 | |
174 | namespace tr2 { } |
175 | |
176 | namespace decimal { } |
177 | |
178 | namespace chrono { } |
179 | namespace placeholders { } |
180 | namespace regex_constants { } |
181 | namespace this_thread { } |
182 | inline namespace literals { |
183 | inline namespace chrono_literals { } |
184 | inline namespace complex_literals { } |
185 | inline namespace string_literals { } |
186 | } |
187 | } |
188 | |
189 | namespace abi { } |
190 | |
191 | namespace __gnu_cxx |
192 | { |
193 | namespace __detail { } |
194 | } |
195 | |
196 | For full details see: |
197 | http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html |
198 | */ |
199 | namespace std |
200 | { |
201 | typedef __SIZE_TYPE__ size_t; |
202 | typedef __PTRDIFF_TYPE__ ptrdiff_t; |
203 | |
204 | #if __cplusplus >= 201103L |
205 | typedef decltype(nullptr) nullptr_t; |
206 | #endif |
207 | } |
208 | |
209 | # define _GLIBCXX_USE_DUAL_ABI 1 |
210 | |
211 | #if ! _GLIBCXX_USE_DUAL_ABI |
212 | // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI |
213 | # undef _GLIBCXX_USE_CXX11_ABI |
214 | #endif |
215 | |
216 | #ifndef _GLIBCXX_USE_CXX11_ABI |
217 | # define _GLIBCXX_USE_CXX11_ABI 1 |
218 | #endif |
219 | |
220 | #if _GLIBCXX_USE_CXX11_ABI |
221 | namespace std |
222 | { |
223 | inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11" ))) { } |
224 | } |
225 | namespace __gnu_cxx |
226 | { |
227 | inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11" ))) { } |
228 | } |
229 | # define _GLIBCXX_NAMESPACE_CXX11 __cxx11:: |
230 | # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 { |
231 | # define _GLIBCXX_END_NAMESPACE_CXX11 } |
232 | # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11 |
233 | #else |
234 | # define _GLIBCXX_NAMESPACE_CXX11 |
235 | # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 |
236 | # define _GLIBCXX_END_NAMESPACE_CXX11 |
237 | # define _GLIBCXX_DEFAULT_ABI_TAG |
238 | #endif |
239 | |
240 | |
241 | // Defined if inline namespaces are used for versioning. |
242 | # define _GLIBCXX_INLINE_VERSION 0 |
243 | |
244 | // Inline namespace for symbol versioning. |
245 | #if _GLIBCXX_INLINE_VERSION |
246 | |
247 | namespace std |
248 | { |
249 | inline namespace __7 { } |
250 | |
251 | namespace rel_ops { inline namespace __7 { } } |
252 | |
253 | namespace tr1 |
254 | { |
255 | inline namespace __7 { } |
256 | namespace placeholders { inline namespace __7 { } } |
257 | namespace regex_constants { inline namespace __7 { } } |
258 | namespace __detail { inline namespace __7 { } } |
259 | } |
260 | |
261 | namespace tr2 |
262 | { inline namespace __7 { } } |
263 | |
264 | namespace decimal { inline namespace __7 { } } |
265 | |
266 | namespace chrono { inline namespace __7 { } } |
267 | namespace placeholders { inline namespace __7 { } } |
268 | namespace regex_constants { inline namespace __7 { } } |
269 | namespace this_thread { inline namespace __7 { } } |
270 | |
271 | inline namespace literals { |
272 | inline namespace chrono_literals { inline namespace __7 { } } |
273 | inline namespace complex_literals { inline namespace __7 { } } |
274 | inline namespace string_literals { inline namespace __7 { } } |
275 | } |
276 | |
277 | namespace __detail { inline namespace __7 { } } |
278 | } |
279 | |
280 | namespace __gnu_cxx |
281 | { |
282 | inline namespace __7 { } |
283 | namespace __detail { inline namespace __7 { } } |
284 | } |
285 | # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 { |
286 | # define _GLIBCXX_END_NAMESPACE_VERSION } |
287 | #else |
288 | # define _GLIBCXX_BEGIN_NAMESPACE_VERSION |
289 | # define _GLIBCXX_END_NAMESPACE_VERSION |
290 | #endif |
291 | |
292 | |
293 | // Inline namespaces for special modes: debug, parallel, profile. |
294 | #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \ |
295 | || defined(_GLIBCXX_PROFILE) |
296 | namespace std |
297 | { |
298 | // Non-inline namespace for components replaced by alternates in active mode. |
299 | namespace __cxx1998 |
300 | { |
301 | # if _GLIBCXX_INLINE_VERSION |
302 | inline namespace __7 { } |
303 | # endif |
304 | |
305 | # if _GLIBCXX_USE_CXX11_ABI |
306 | inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11" ))) { } |
307 | # endif |
308 | } |
309 | |
310 | // Inline namespace for debug mode. |
311 | # ifdef _GLIBCXX_DEBUG |
312 | inline namespace __debug { } |
313 | # endif |
314 | |
315 | // Inline namespaces for parallel mode. |
316 | # ifdef _GLIBCXX_PARALLEL |
317 | inline namespace __parallel { } |
318 | # endif |
319 | |
320 | // Inline namespaces for profile mode |
321 | # ifdef _GLIBCXX_PROFILE |
322 | inline namespace __profile { } |
323 | # endif |
324 | } |
325 | |
326 | // Check for invalid usage and unsupported mixed-mode use. |
327 | # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL) |
328 | # error illegal use of multiple inlined namespaces |
329 | # endif |
330 | # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG) |
331 | # error illegal use of multiple inlined namespaces |
332 | # endif |
333 | # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL) |
334 | # error illegal use of multiple inlined namespaces |
335 | # endif |
336 | |
337 | // Check for invalid use due to lack for weak symbols. |
338 | # if __NO_INLINE__ && !__GXX_WEAK__ |
339 | # warning currently using inlined namespace mode which may fail \ |
340 | without inlining due to lack of weak symbols |
341 | # endif |
342 | #endif |
343 | |
344 | // Macros for namespace scope. Either namespace std:: or the name |
345 | // of some nested namespace within it corresponding to the active mode. |
346 | // _GLIBCXX_STD_A |
347 | // _GLIBCXX_STD_C |
348 | // |
349 | // Macros for opening/closing conditional namespaces. |
350 | // _GLIBCXX_BEGIN_NAMESPACE_ALGO |
351 | // _GLIBCXX_END_NAMESPACE_ALGO |
352 | // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER |
353 | // _GLIBCXX_END_NAMESPACE_CONTAINER |
354 | #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE) |
355 | # define _GLIBCXX_STD_C __cxx1998 |
356 | # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \ |
357 | namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION |
358 | # define _GLIBCXX_END_NAMESPACE_CONTAINER \ |
359 | _GLIBCXX_END_NAMESPACE_VERSION } |
360 | #endif |
361 | |
362 | #ifdef _GLIBCXX_PARALLEL |
363 | # define _GLIBCXX_STD_A __cxx1998 |
364 | # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \ |
365 | namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION |
366 | # define _GLIBCXX_END_NAMESPACE_ALGO \ |
367 | _GLIBCXX_END_NAMESPACE_VERSION } |
368 | #endif |
369 | |
370 | #ifndef _GLIBCXX_STD_A |
371 | # define _GLIBCXX_STD_A std |
372 | #endif |
373 | |
374 | #ifndef _GLIBCXX_STD_C |
375 | # define _GLIBCXX_STD_C std |
376 | #endif |
377 | |
378 | #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO |
379 | # define _GLIBCXX_BEGIN_NAMESPACE_ALGO |
380 | #endif |
381 | |
382 | #ifndef _GLIBCXX_END_NAMESPACE_ALGO |
383 | # define _GLIBCXX_END_NAMESPACE_ALGO |
384 | #endif |
385 | |
386 | #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER |
387 | # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER |
388 | #endif |
389 | |
390 | #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER |
391 | # define _GLIBCXX_END_NAMESPACE_CONTAINER |
392 | #endif |
393 | |
394 | // GLIBCXX_ABI Deprecated |
395 | // Define if compatibility should be provided for -mlong-double-64. |
396 | #undef _GLIBCXX_LONG_DOUBLE_COMPAT |
397 | |
398 | // Inline namespace for long double 128 mode. |
399 | #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__ |
400 | namespace std |
401 | { |
402 | inline namespace __gnu_cxx_ldbl128 { } |
403 | } |
404 | # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128:: |
405 | # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 { |
406 | # define _GLIBCXX_END_NAMESPACE_LDBL } |
407 | #else |
408 | # define _GLIBCXX_NAMESPACE_LDBL |
409 | # define _GLIBCXX_BEGIN_NAMESPACE_LDBL |
410 | # define _GLIBCXX_END_NAMESPACE_LDBL |
411 | #endif |
412 | #if _GLIBCXX_USE_CXX11_ABI |
413 | # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11 |
414 | # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11 |
415 | # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11 |
416 | #else |
417 | # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL |
418 | # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL |
419 | # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL |
420 | #endif |
421 | |
422 | // Debug Mode implies checking assertions. |
423 | #ifdef _GLIBCXX_DEBUG |
424 | # define _GLIBCXX_ASSERTIONS 1 |
425 | #endif |
426 | |
427 | // Disable std::string explicit instantiation declarations in order to assert. |
428 | #ifdef _GLIBCXX_ASSERTIONS |
429 | # undef _GLIBCXX_EXTERN_TEMPLATE |
430 | # define _GLIBCXX_EXTERN_TEMPLATE -1 |
431 | #endif |
432 | |
433 | // Assert. |
434 | #if defined(_GLIBCXX_ASSERTIONS) \ |
435 | || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS) |
436 | namespace std |
437 | { |
438 | // Avoid the use of assert, because we're trying to keep the <cassert> |
439 | // include out of the mix. |
440 | inline void |
441 | __replacement_assert(const char* __file, int __line, |
442 | const char* __function, const char* __condition) |
443 | { |
444 | __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n" , __file, __line, |
445 | __function, __condition); |
446 | __builtin_abort(); |
447 | } |
448 | } |
449 | #define __glibcxx_assert_impl(_Condition) \ |
450 | do \ |
451 | { \ |
452 | if (! (_Condition)) \ |
453 | std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \ |
454 | #_Condition); \ |
455 | } while (false) |
456 | #endif |
457 | |
458 | #if defined(_GLIBCXX_ASSERTIONS) |
459 | # define __glibcxx_assert(_Condition) __glibcxx_assert_impl(_Condition) |
460 | #else |
461 | # define __glibcxx_assert(_Condition) |
462 | #endif |
463 | |
464 | // Macros for race detectors. |
465 | // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and |
466 | // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain |
467 | // atomic (lock-free) synchronization to race detectors: |
468 | // the race detector will infer a happens-before arc from the former to the |
469 | // latter when they share the same argument pointer. |
470 | // |
471 | // The most frequent use case for these macros (and the only case in the |
472 | // current implementation of the library) is atomic reference counting: |
473 | // void _M_remove_reference() |
474 | // { |
475 | // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount); |
476 | // if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0) |
477 | // { |
478 | // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount); |
479 | // _M_destroy(__a); |
480 | // } |
481 | // } |
482 | // The annotations in this example tell the race detector that all memory |
483 | // accesses occurred when the refcount was positive do not race with |
484 | // memory accesses which occurred after the refcount became zero. |
485 | #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE |
486 | # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) |
487 | #endif |
488 | #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER |
489 | # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) |
490 | #endif |
491 | |
492 | // Macros for C linkage: define extern "C" linkage only when using C++. |
493 | # define _GLIBCXX_BEGIN_EXTERN_C extern "C" { |
494 | # define _GLIBCXX_END_EXTERN_C } |
495 | |
496 | # define _GLIBCXX_USE_ALLOCATOR_NEW 1 |
497 | |
498 | #else // !__cplusplus |
499 | # define _GLIBCXX_BEGIN_EXTERN_C |
500 | # define _GLIBCXX_END_EXTERN_C |
501 | #endif |
502 | |
503 | |
504 | // First includes. |
505 | |
506 | // Pick up any OS-specific definitions. |
507 | #include <bits/os_defines.h> |
508 | |
509 | // Pick up any CPU-specific definitions. |
510 | #include <bits/cpu_defines.h> |
511 | |
512 | // If platform uses neither visibility nor psuedo-visibility, |
513 | // specify empty default for namespace annotation macros. |
514 | #ifndef _GLIBCXX_PSEUDO_VISIBILITY |
515 | # define _GLIBCXX_PSEUDO_VISIBILITY(V) |
516 | #endif |
517 | |
518 | // Certain function definitions that are meant to be overridable from |
519 | // user code are decorated with this macro. For some targets, this |
520 | // macro causes these definitions to be weak. |
521 | #ifndef _GLIBCXX_WEAK_DEFINITION |
522 | # define _GLIBCXX_WEAK_DEFINITION |
523 | #endif |
524 | |
525 | // By default, we assume that __GXX_WEAK__ also means that there is support |
526 | // for declaring functions as weak while not defining such functions. This |
527 | // allows for referring to functions provided by other libraries (e.g., |
528 | // libitm) without depending on them if the respective features are not used. |
529 | #ifndef _GLIBCXX_USE_WEAK_REF |
530 | # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__ |
531 | #endif |
532 | |
533 | // Conditionally enable annotations for the Transactional Memory TS on C++11. |
534 | // Most of the following conditions are due to limitations in the current |
535 | // implementation. |
536 | #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI \ |
537 | && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201505L \ |
538 | && !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF \ |
539 | && _GLIBCXX_USE_ALLOCATOR_NEW |
540 | #define _GLIBCXX_TXN_SAFE transaction_safe |
541 | #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic |
542 | #else |
543 | #define _GLIBCXX_TXN_SAFE |
544 | #define _GLIBCXX_TXN_SAFE_DYN |
545 | #endif |
546 | |
547 | |
548 | // The remainder of the prewritten config is automatic; all the |
549 | // user hooks are listed above. |
550 | |
551 | // Create a boolean flag to be used to determine if --fast-math is set. |
552 | #ifdef __FAST_MATH__ |
553 | # define _GLIBCXX_FAST_MATH 1 |
554 | #else |
555 | # define _GLIBCXX_FAST_MATH 0 |
556 | #endif |
557 | |
558 | // This marks string literals in header files to be extracted for eventual |
559 | // translation. It is primarily used for messages in thrown exceptions; see |
560 | // src/functexcept.cc. We use __N because the more traditional _N is used |
561 | // for something else under certain OSes (see BADNAMES). |
562 | #define __N(msgid) (msgid) |
563 | |
564 | // For example, <windows.h> is known to #define min and max as macros... |
565 | #undef min |
566 | #undef max |
567 | |
568 | // N.B. these _GLIBCXX_USE_C99_XXX macros are defined unconditionally |
569 | // so they should be tested with #if not with #ifdef. |
570 | #if __cplusplus >= 201103L |
571 | # ifndef _GLIBCXX_USE_C99_MATH |
572 | # define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH |
573 | # endif |
574 | # ifndef _GLIBCXX_USE_C99_COMPLEX |
575 | # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX |
576 | # endif |
577 | # ifndef _GLIBCXX_USE_C99_STDIO |
578 | # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO |
579 | # endif |
580 | # ifndef _GLIBCXX_USE_C99_STDLIB |
581 | # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB |
582 | # endif |
583 | # ifndef _GLIBCXX_USE_C99_WCHAR |
584 | # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR |
585 | # endif |
586 | #else |
587 | # ifndef _GLIBCXX_USE_C99_MATH |
588 | # define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH |
589 | # endif |
590 | # ifndef _GLIBCXX_USE_C99_COMPLEX |
591 | # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX |
592 | # endif |
593 | # ifndef _GLIBCXX_USE_C99_STDIO |
594 | # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO |
595 | # endif |
596 | # ifndef _GLIBCXX_USE_C99_STDLIB |
597 | # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB |
598 | # endif |
599 | # ifndef _GLIBCXX_USE_C99_WCHAR |
600 | # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR |
601 | # endif |
602 | #endif |
603 | |
604 | // End of prewritten config; the settings discovered at configure time follow. |
605 | /* config.h. Generated from config.h.in by configure. */ |
606 | /* config.h.in. Generated from configure.ac by autoheader. */ |
607 | |
608 | /* Define to 1 if you have the `acosf' function. */ |
609 | #define _GLIBCXX_HAVE_ACOSF 1 |
610 | |
611 | /* Define to 1 if you have the `acosl' function. */ |
612 | #define _GLIBCXX_HAVE_ACOSL 1 |
613 | |
614 | /* Define to 1 if you have the `asinf' function. */ |
615 | #define _GLIBCXX_HAVE_ASINF 1 |
616 | |
617 | /* Define to 1 if you have the `asinl' function. */ |
618 | #define _GLIBCXX_HAVE_ASINL 1 |
619 | |
620 | /* Define to 1 if the target assembler supports .symver directive. */ |
621 | #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1 |
622 | |
623 | /* Define to 1 if you have the `atan2f' function. */ |
624 | #define _GLIBCXX_HAVE_ATAN2F 1 |
625 | |
626 | /* Define to 1 if you have the `atan2l' function. */ |
627 | #define _GLIBCXX_HAVE_ATAN2L 1 |
628 | |
629 | /* Define to 1 if you have the `atanf' function. */ |
630 | #define _GLIBCXX_HAVE_ATANF 1 |
631 | |
632 | /* Define to 1 if you have the `atanl' function. */ |
633 | #define _GLIBCXX_HAVE_ATANL 1 |
634 | |
635 | /* Define to 1 if you have the `at_quick_exit' function. */ |
636 | #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1 |
637 | |
638 | /* Define to 1 if the target assembler supports thread-local storage. */ |
639 | /* #undef _GLIBCXX_HAVE_CC_TLS */ |
640 | |
641 | /* Define to 1 if you have the `ceilf' function. */ |
642 | #define _GLIBCXX_HAVE_CEILF 1 |
643 | |
644 | /* Define to 1 if you have the `ceill' function. */ |
645 | #define _GLIBCXX_HAVE_CEILL 1 |
646 | |
647 | /* Define to 1 if you have the <complex.h> header file. */ |
648 | #define _GLIBCXX_HAVE_COMPLEX_H 1 |
649 | |
650 | /* Define to 1 if you have the `cosf' function. */ |
651 | #define _GLIBCXX_HAVE_COSF 1 |
652 | |
653 | /* Define to 1 if you have the `coshf' function. */ |
654 | #define _GLIBCXX_HAVE_COSHF 1 |
655 | |
656 | /* Define to 1 if you have the `coshl' function. */ |
657 | #define _GLIBCXX_HAVE_COSHL 1 |
658 | |
659 | /* Define to 1 if you have the `cosl' function. */ |
660 | #define _GLIBCXX_HAVE_COSL 1 |
661 | |
662 | /* Define to 1 if you have the <dirent.h> header file. */ |
663 | #define _GLIBCXX_HAVE_DIRENT_H 1 |
664 | |
665 | /* Define to 1 if you have the <dlfcn.h> header file. */ |
666 | #define _GLIBCXX_HAVE_DLFCN_H 1 |
667 | |
668 | /* Define if EBADMSG exists. */ |
669 | #define _GLIBCXX_HAVE_EBADMSG 1 |
670 | |
671 | /* Define if ECANCELED exists. */ |
672 | #define _GLIBCXX_HAVE_ECANCELED 1 |
673 | |
674 | /* Define if ECHILD exists. */ |
675 | #define _GLIBCXX_HAVE_ECHILD 1 |
676 | |
677 | /* Define if EIDRM exists. */ |
678 | #define _GLIBCXX_HAVE_EIDRM 1 |
679 | |
680 | /* Define to 1 if you have the <endian.h> header file. */ |
681 | #define _GLIBCXX_HAVE_ENDIAN_H 1 |
682 | |
683 | /* Define if ENODATA exists. */ |
684 | #define _GLIBCXX_HAVE_ENODATA 1 |
685 | |
686 | /* Define if ENOLINK exists. */ |
687 | #define _GLIBCXX_HAVE_ENOLINK 1 |
688 | |
689 | /* Define if ENOSPC exists. */ |
690 | #define _GLIBCXX_HAVE_ENOSPC 1 |
691 | |
692 | /* Define if ENOSR exists. */ |
693 | #define _GLIBCXX_HAVE_ENOSR 1 |
694 | |
695 | /* Define if ENOSTR exists. */ |
696 | #define _GLIBCXX_HAVE_ENOSTR 1 |
697 | |
698 | /* Define if ENOTRECOVERABLE exists. */ |
699 | #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1 |
700 | |
701 | /* Define if ENOTSUP exists. */ |
702 | #define _GLIBCXX_HAVE_ENOTSUP 1 |
703 | |
704 | /* Define if EOVERFLOW exists. */ |
705 | #define _GLIBCXX_HAVE_EOVERFLOW 1 |
706 | |
707 | /* Define if EOWNERDEAD exists. */ |
708 | #define _GLIBCXX_HAVE_EOWNERDEAD 1 |
709 | |
710 | /* Define if EPERM exists. */ |
711 | #define _GLIBCXX_HAVE_EPERM 1 |
712 | |
713 | /* Define if EPROTO exists. */ |
714 | #define _GLIBCXX_HAVE_EPROTO 1 |
715 | |
716 | /* Define if ETIME exists. */ |
717 | #define _GLIBCXX_HAVE_ETIME 1 |
718 | |
719 | /* Define if ETIMEDOUT exists. */ |
720 | #define _GLIBCXX_HAVE_ETIMEDOUT 1 |
721 | |
722 | /* Define if ETXTBSY exists. */ |
723 | #define _GLIBCXX_HAVE_ETXTBSY 1 |
724 | |
725 | /* Define if EWOULDBLOCK exists. */ |
726 | #define _GLIBCXX_HAVE_EWOULDBLOCK 1 |
727 | |
728 | /* Define to 1 if you have the <execinfo.h> header file. */ |
729 | #define _GLIBCXX_HAVE_EXECINFO_H 1 |
730 | |
731 | /* Define to 1 if you have the `expf' function. */ |
732 | #define _GLIBCXX_HAVE_EXPF 1 |
733 | |
734 | /* Define to 1 if you have the `expl' function. */ |
735 | #define _GLIBCXX_HAVE_EXPL 1 |
736 | |
737 | /* Define to 1 if you have the `fabsf' function. */ |
738 | #define _GLIBCXX_HAVE_FABSF 1 |
739 | |
740 | /* Define to 1 if you have the `fabsl' function. */ |
741 | #define _GLIBCXX_HAVE_FABSL 1 |
742 | |
743 | /* Define to 1 if you have the <fcntl.h> header file. */ |
744 | #define _GLIBCXX_HAVE_FCNTL_H 1 |
745 | |
746 | /* Define to 1 if you have the <fenv.h> header file. */ |
747 | #define _GLIBCXX_HAVE_FENV_H 1 |
748 | |
749 | /* Define to 1 if you have the `finite' function. */ |
750 | #define _GLIBCXX_HAVE_FINITE 1 |
751 | |
752 | /* Define to 1 if you have the `finitef' function. */ |
753 | #define _GLIBCXX_HAVE_FINITEF 1 |
754 | |
755 | /* Define to 1 if you have the `finitel' function. */ |
756 | #define _GLIBCXX_HAVE_FINITEL 1 |
757 | |
758 | /* Define to 1 if you have the <float.h> header file. */ |
759 | #define _GLIBCXX_HAVE_FLOAT_H 1 |
760 | |
761 | /* Define to 1 if you have the `floorf' function. */ |
762 | #define _GLIBCXX_HAVE_FLOORF 1 |
763 | |
764 | /* Define to 1 if you have the `floorl' function. */ |
765 | #define _GLIBCXX_HAVE_FLOORL 1 |
766 | |
767 | /* Define to 1 if you have the `fmodf' function. */ |
768 | #define _GLIBCXX_HAVE_FMODF 1 |
769 | |
770 | /* Define to 1 if you have the `fmodl' function. */ |
771 | #define _GLIBCXX_HAVE_FMODL 1 |
772 | |
773 | /* Define to 1 if you have the `fpclass' function. */ |
774 | /* #undef _GLIBCXX_HAVE_FPCLASS */ |
775 | |
776 | /* Define to 1 if you have the <fp.h> header file. */ |
777 | /* #undef _GLIBCXX_HAVE_FP_H */ |
778 | |
779 | /* Define to 1 if you have the `frexpf' function. */ |
780 | #define _GLIBCXX_HAVE_FREXPF 1 |
781 | |
782 | /* Define to 1 if you have the `frexpl' function. */ |
783 | #define _GLIBCXX_HAVE_FREXPL 1 |
784 | |
785 | /* Define if _Unwind_GetIPInfo is available. */ |
786 | #define _GLIBCXX_HAVE_GETIPINFO 1 |
787 | |
788 | /* Define if gets is available in <stdio.h> before C++14. */ |
789 | #define _GLIBCXX_HAVE_GETS 1 |
790 | |
791 | /* Define to 1 if you have the `hypot' function. */ |
792 | #define _GLIBCXX_HAVE_HYPOT 1 |
793 | |
794 | /* Define to 1 if you have the `hypotf' function. */ |
795 | #define _GLIBCXX_HAVE_HYPOTF 1 |
796 | |
797 | /* Define to 1 if you have the `hypotl' function. */ |
798 | #define _GLIBCXX_HAVE_HYPOTL 1 |
799 | |
800 | /* Define if you have the iconv() function. */ |
801 | #define _GLIBCXX_HAVE_ICONV 1 |
802 | |
803 | /* Define to 1 if you have the <ieeefp.h> header file. */ |
804 | /* #undef _GLIBCXX_HAVE_IEEEFP_H */ |
805 | |
806 | /* Define if int64_t is available in <stdint.h>. */ |
807 | #define _GLIBCXX_HAVE_INT64_T 1 |
808 | |
809 | /* Define if int64_t is a long. */ |
810 | #define _GLIBCXX_HAVE_INT64_T_LONG 1 |
811 | |
812 | /* Define if int64_t is a long long. */ |
813 | /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */ |
814 | |
815 | /* Define to 1 if you have the <inttypes.h> header file. */ |
816 | #define _GLIBCXX_HAVE_INTTYPES_H 1 |
817 | |
818 | /* Define to 1 if you have the `isinf' function. */ |
819 | /* #undef _GLIBCXX_HAVE_ISINF */ |
820 | |
821 | /* Define to 1 if you have the `isinff' function. */ |
822 | #define _GLIBCXX_HAVE_ISINFF 1 |
823 | |
824 | /* Define to 1 if you have the `isinfl' function. */ |
825 | #define _GLIBCXX_HAVE_ISINFL 1 |
826 | |
827 | /* Define to 1 if you have the `isnan' function. */ |
828 | /* #undef _GLIBCXX_HAVE_ISNAN */ |
829 | |
830 | /* Define to 1 if you have the `isnanf' function. */ |
831 | #define _GLIBCXX_HAVE_ISNANF 1 |
832 | |
833 | /* Define to 1 if you have the `isnanl' function. */ |
834 | #define _GLIBCXX_HAVE_ISNANL 1 |
835 | |
836 | /* Defined if iswblank exists. */ |
837 | #define _GLIBCXX_HAVE_ISWBLANK 1 |
838 | |
839 | /* Define if LC_MESSAGES is available in <locale.h>. */ |
840 | #define _GLIBCXX_HAVE_LC_MESSAGES 1 |
841 | |
842 | /* Define to 1 if you have the `ldexpf' function. */ |
843 | #define _GLIBCXX_HAVE_LDEXPF 1 |
844 | |
845 | /* Define to 1 if you have the `ldexpl' function. */ |
846 | #define _GLIBCXX_HAVE_LDEXPL 1 |
847 | |
848 | /* Define to 1 if you have the <libintl.h> header file. */ |
849 | #define _GLIBCXX_HAVE_LIBINTL_H 1 |
850 | |
851 | /* Only used in build directory testsuite_hooks.h. */ |
852 | #define _GLIBCXX_HAVE_LIMIT_AS 1 |
853 | |
854 | /* Only used in build directory testsuite_hooks.h. */ |
855 | #define _GLIBCXX_HAVE_LIMIT_DATA 1 |
856 | |
857 | /* Only used in build directory testsuite_hooks.h. */ |
858 | #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 |
859 | |
860 | /* Only used in build directory testsuite_hooks.h. */ |
861 | #define 1 |
862 | |
863 | /* Only used in build directory testsuite_hooks.h. */ |
864 | #define _GLIBCXX_HAVE_LIMIT_VMEM 0 |
865 | |
866 | /* Define if futex syscall is available. */ |
867 | #define _GLIBCXX_HAVE_LINUX_FUTEX 1 |
868 | |
869 | /* Define to 1 if you have the <locale.h> header file. */ |
870 | #define _GLIBCXX_HAVE_LOCALE_H 1 |
871 | |
872 | /* Define to 1 if you have the `log10f' function. */ |
873 | #define _GLIBCXX_HAVE_LOG10F 1 |
874 | |
875 | /* Define to 1 if you have the `log10l' function. */ |
876 | #define _GLIBCXX_HAVE_LOG10L 1 |
877 | |
878 | /* Define to 1 if you have the `logf' function. */ |
879 | #define _GLIBCXX_HAVE_LOGF 1 |
880 | |
881 | /* Define to 1 if you have the `logl' function. */ |
882 | #define _GLIBCXX_HAVE_LOGL 1 |
883 | |
884 | /* Define to 1 if you have the <machine/endian.h> header file. */ |
885 | /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */ |
886 | |
887 | /* Define to 1 if you have the <machine/param.h> header file. */ |
888 | /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */ |
889 | |
890 | /* Define if mbstate_t exists in wchar.h. */ |
891 | #define _GLIBCXX_HAVE_MBSTATE_T 1 |
892 | |
893 | /* Define to 1 if you have the <memory.h> header file. */ |
894 | #define _GLIBCXX_HAVE_MEMORY_H 1 |
895 | |
896 | /* Define to 1 if you have the `modf' function. */ |
897 | #define _GLIBCXX_HAVE_MODF 1 |
898 | |
899 | /* Define to 1 if you have the `modff' function. */ |
900 | #define _GLIBCXX_HAVE_MODFF 1 |
901 | |
902 | /* Define to 1 if you have the `modfl' function. */ |
903 | #define _GLIBCXX_HAVE_MODFL 1 |
904 | |
905 | /* Define to 1 if you have the <nan.h> header file. */ |
906 | /* #undef _GLIBCXX_HAVE_NAN_H */ |
907 | |
908 | /* Define if <math.h> defines obsolete isinf function. */ |
909 | /* #undef _GLIBCXX_HAVE_OBSOLETE_ISINF */ |
910 | |
911 | /* Define if <math.h> defines obsolete isnan function. */ |
912 | /* #undef _GLIBCXX_HAVE_OBSOLETE_ISNAN */ |
913 | |
914 | /* Define if poll is available in <poll.h>. */ |
915 | #define _GLIBCXX_HAVE_POLL 1 |
916 | |
917 | /* Define to 1 if you have the `powf' function. */ |
918 | #define _GLIBCXX_HAVE_POWF 1 |
919 | |
920 | /* Define to 1 if you have the `powl' function. */ |
921 | #define _GLIBCXX_HAVE_POWL 1 |
922 | |
923 | /* Define to 1 if you have the `qfpclass' function. */ |
924 | /* #undef _GLIBCXX_HAVE_QFPCLASS */ |
925 | |
926 | /* Define to 1 if you have the `quick_exit' function. */ |
927 | #define _GLIBCXX_HAVE_QUICK_EXIT 1 |
928 | |
929 | /* Define to 1 if you have the `setenv' function. */ |
930 | #define _GLIBCXX_HAVE_SETENV 1 |
931 | |
932 | /* Define to 1 if you have the `sincos' function. */ |
933 | #define _GLIBCXX_HAVE_SINCOS 1 |
934 | |
935 | /* Define to 1 if you have the `sincosf' function. */ |
936 | #define _GLIBCXX_HAVE_SINCOSF 1 |
937 | |
938 | /* Define to 1 if you have the `sincosl' function. */ |
939 | #define _GLIBCXX_HAVE_SINCOSL 1 |
940 | |
941 | /* Define to 1 if you have the `sinf' function. */ |
942 | #define _GLIBCXX_HAVE_SINF 1 |
943 | |
944 | /* Define to 1 if you have the `sinhf' function. */ |
945 | #define _GLIBCXX_HAVE_SINHF 1 |
946 | |
947 | /* Define to 1 if you have the `sinhl' function. */ |
948 | #define _GLIBCXX_HAVE_SINHL 1 |
949 | |
950 | /* Define to 1 if you have the `sinl' function. */ |
951 | #define _GLIBCXX_HAVE_SINL 1 |
952 | |
953 | /* Defined if sleep exists. */ |
954 | /* #undef _GLIBCXX_HAVE_SLEEP */ |
955 | |
956 | /* Define to 1 if you have the `sqrtf' function. */ |
957 | #define _GLIBCXX_HAVE_SQRTF 1 |
958 | |
959 | /* Define to 1 if you have the `sqrtl' function. */ |
960 | #define _GLIBCXX_HAVE_SQRTL 1 |
961 | |
962 | /* Define to 1 if you have the <stdalign.h> header file. */ |
963 | #define _GLIBCXX_HAVE_STDALIGN_H 1 |
964 | |
965 | /* Define to 1 if you have the <stdbool.h> header file. */ |
966 | #define _GLIBCXX_HAVE_STDBOOL_H 1 |
967 | |
968 | /* Define to 1 if you have the <stdint.h> header file. */ |
969 | #define _GLIBCXX_HAVE_STDINT_H 1 |
970 | |
971 | /* Define to 1 if you have the <stdlib.h> header file. */ |
972 | #define _GLIBCXX_HAVE_STDLIB_H 1 |
973 | |
974 | /* Define if strerror_l is available in <string.h>. */ |
975 | #define _GLIBCXX_HAVE_STRERROR_L 1 |
976 | |
977 | /* Define if strerror_r is available in <string.h>. */ |
978 | #define _GLIBCXX_HAVE_STRERROR_R 1 |
979 | |
980 | /* Define to 1 if you have the <strings.h> header file. */ |
981 | #define _GLIBCXX_HAVE_STRINGS_H 1 |
982 | |
983 | /* Define to 1 if you have the <string.h> header file. */ |
984 | #define _GLIBCXX_HAVE_STRING_H 1 |
985 | |
986 | /* Define to 1 if you have the `strtof' function. */ |
987 | #define _GLIBCXX_HAVE_STRTOF 1 |
988 | |
989 | /* Define to 1 if you have the `strtold' function. */ |
990 | #define _GLIBCXX_HAVE_STRTOLD 1 |
991 | |
992 | /* Define to 1 if `d_type' is a member of `struct dirent'. */ |
993 | #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1 |
994 | |
995 | /* Define if strxfrm_l is available in <string.h>. */ |
996 | #define _GLIBCXX_HAVE_STRXFRM_L 1 |
997 | |
998 | /* Define to 1 if the target runtime linker supports binding the same symbol |
999 | to different versions. */ |
1000 | #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1 |
1001 | |
1002 | /* Define to 1 if you have the <sys/filio.h> header file. */ |
1003 | /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */ |
1004 | |
1005 | /* Define to 1 if you have the <sys/ioctl.h> header file. */ |
1006 | #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 |
1007 | |
1008 | /* Define to 1 if you have the <sys/ipc.h> header file. */ |
1009 | #define _GLIBCXX_HAVE_SYS_IPC_H 1 |
1010 | |
1011 | /* Define to 1 if you have the <sys/isa_defs.h> header file. */ |
1012 | /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ |
1013 | |
1014 | /* Define to 1 if you have the <sys/machine.h> header file. */ |
1015 | /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ |
1016 | |
1017 | /* Define to 1 if you have the <sys/param.h> header file. */ |
1018 | #define _GLIBCXX_HAVE_SYS_PARAM_H 1 |
1019 | |
1020 | /* Define to 1 if you have the <sys/resource.h> header file. */ |
1021 | #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 |
1022 | |
1023 | /* Define to 1 if you have a suitable <sys/sdt.h> header file */ |
1024 | #define _GLIBCXX_HAVE_SYS_SDT_H 1 |
1025 | |
1026 | /* Define to 1 if you have the <sys/sem.h> header file. */ |
1027 | #define _GLIBCXX_HAVE_SYS_SEM_H 1 |
1028 | |
1029 | /* Define to 1 if you have the <sys/statvfs.h> header file. */ |
1030 | #define _GLIBCXX_HAVE_SYS_STATVFS_H 1 |
1031 | |
1032 | /* Define to 1 if you have the <sys/stat.h> header file. */ |
1033 | #define _GLIBCXX_HAVE_SYS_STAT_H 1 |
1034 | |
1035 | /* Define to 1 if you have the <sys/sysinfo.h> header file. */ |
1036 | #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1 |
1037 | |
1038 | /* Define to 1 if you have the <sys/time.h> header file. */ |
1039 | #define _GLIBCXX_HAVE_SYS_TIME_H 1 |
1040 | |
1041 | /* Define to 1 if you have the <sys/types.h> header file. */ |
1042 | #define _GLIBCXX_HAVE_SYS_TYPES_H 1 |
1043 | |
1044 | /* Define to 1 if you have the <sys/uio.h> header file. */ |
1045 | #define _GLIBCXX_HAVE_SYS_UIO_H 1 |
1046 | |
1047 | /* Define if S_IFREG is available in <sys/stat.h>. */ |
1048 | /* #undef _GLIBCXX_HAVE_S_IFREG */ |
1049 | |
1050 | /* Define if S_IFREG is available in <sys/stat.h>. */ |
1051 | #define _GLIBCXX_HAVE_S_ISREG 1 |
1052 | |
1053 | /* Define to 1 if you have the `tanf' function. */ |
1054 | #define _GLIBCXX_HAVE_TANF 1 |
1055 | |
1056 | /* Define to 1 if you have the `tanhf' function. */ |
1057 | #define _GLIBCXX_HAVE_TANHF 1 |
1058 | |
1059 | /* Define to 1 if you have the `tanhl' function. */ |
1060 | #define _GLIBCXX_HAVE_TANHL 1 |
1061 | |
1062 | /* Define to 1 if you have the `tanl' function. */ |
1063 | #define _GLIBCXX_HAVE_TANL 1 |
1064 | |
1065 | /* Define to 1 if you have the <tgmath.h> header file. */ |
1066 | #define _GLIBCXX_HAVE_TGMATH_H 1 |
1067 | |
1068 | /* Define to 1 if the target supports thread-local storage. */ |
1069 | #define _GLIBCXX_HAVE_TLS 1 |
1070 | |
1071 | /* Define to 1 if you have the <uchar.h> header file. */ |
1072 | #define _GLIBCXX_HAVE_UCHAR_H 1 |
1073 | |
1074 | /* Define to 1 if you have the <unistd.h> header file. */ |
1075 | #define _GLIBCXX_HAVE_UNISTD_H 1 |
1076 | |
1077 | /* Defined if usleep exists. */ |
1078 | /* #undef _GLIBCXX_HAVE_USLEEP */ |
1079 | |
1080 | /* Define to 1 if you have the <utime.h> header file. */ |
1081 | #define _GLIBCXX_HAVE_UTIME_H 1 |
1082 | |
1083 | /* Defined if vfwscanf exists. */ |
1084 | #define _GLIBCXX_HAVE_VFWSCANF 1 |
1085 | |
1086 | /* Defined if vswscanf exists. */ |
1087 | #define _GLIBCXX_HAVE_VSWSCANF 1 |
1088 | |
1089 | /* Defined if vwscanf exists. */ |
1090 | #define _GLIBCXX_HAVE_VWSCANF 1 |
1091 | |
1092 | /* Define to 1 if you have the <wchar.h> header file. */ |
1093 | #define _GLIBCXX_HAVE_WCHAR_H 1 |
1094 | |
1095 | /* Defined if wcstof exists. */ |
1096 | #define _GLIBCXX_HAVE_WCSTOF 1 |
1097 | |
1098 | /* Define to 1 if you have the <wctype.h> header file. */ |
1099 | #define _GLIBCXX_HAVE_WCTYPE_H 1 |
1100 | |
1101 | /* Defined if Sleep exists. */ |
1102 | /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */ |
1103 | |
1104 | /* Define if writev is available in <sys/uio.h>. */ |
1105 | #define _GLIBCXX_HAVE_WRITEV 1 |
1106 | |
1107 | /* Define to 1 if you have the `_acosf' function. */ |
1108 | /* #undef _GLIBCXX_HAVE__ACOSF */ |
1109 | |
1110 | /* Define to 1 if you have the `_acosl' function. */ |
1111 | /* #undef _GLIBCXX_HAVE__ACOSL */ |
1112 | |
1113 | /* Define to 1 if you have the `_asinf' function. */ |
1114 | /* #undef _GLIBCXX_HAVE__ASINF */ |
1115 | |
1116 | /* Define to 1 if you have the `_asinl' function. */ |
1117 | /* #undef _GLIBCXX_HAVE__ASINL */ |
1118 | |
1119 | /* Define to 1 if you have the `_atan2f' function. */ |
1120 | /* #undef _GLIBCXX_HAVE__ATAN2F */ |
1121 | |
1122 | /* Define to 1 if you have the `_atan2l' function. */ |
1123 | /* #undef _GLIBCXX_HAVE__ATAN2L */ |
1124 | |
1125 | /* Define to 1 if you have the `_atanf' function. */ |
1126 | /* #undef _GLIBCXX_HAVE__ATANF */ |
1127 | |
1128 | /* Define to 1 if you have the `_atanl' function. */ |
1129 | /* #undef _GLIBCXX_HAVE__ATANL */ |
1130 | |
1131 | /* Define to 1 if you have the `_ceilf' function. */ |
1132 | /* #undef _GLIBCXX_HAVE__CEILF */ |
1133 | |
1134 | /* Define to 1 if you have the `_ceill' function. */ |
1135 | /* #undef _GLIBCXX_HAVE__CEILL */ |
1136 | |
1137 | /* Define to 1 if you have the `_cosf' function. */ |
1138 | /* #undef _GLIBCXX_HAVE__COSF */ |
1139 | |
1140 | /* Define to 1 if you have the `_coshf' function. */ |
1141 | /* #undef _GLIBCXX_HAVE__COSHF */ |
1142 | |
1143 | /* Define to 1 if you have the `_coshl' function. */ |
1144 | /* #undef _GLIBCXX_HAVE__COSHL */ |
1145 | |
1146 | /* Define to 1 if you have the `_cosl' function. */ |
1147 | /* #undef _GLIBCXX_HAVE__COSL */ |
1148 | |
1149 | /* Define to 1 if you have the `_expf' function. */ |
1150 | /* #undef _GLIBCXX_HAVE__EXPF */ |
1151 | |
1152 | /* Define to 1 if you have the `_expl' function. */ |
1153 | /* #undef _GLIBCXX_HAVE__EXPL */ |
1154 | |
1155 | /* Define to 1 if you have the `_fabsf' function. */ |
1156 | /* #undef _GLIBCXX_HAVE__FABSF */ |
1157 | |
1158 | /* Define to 1 if you have the `_fabsl' function. */ |
1159 | /* #undef _GLIBCXX_HAVE__FABSL */ |
1160 | |
1161 | /* Define to 1 if you have the `_finite' function. */ |
1162 | /* #undef _GLIBCXX_HAVE__FINITE */ |
1163 | |
1164 | /* Define to 1 if you have the `_finitef' function. */ |
1165 | /* #undef _GLIBCXX_HAVE__FINITEF */ |
1166 | |
1167 | /* Define to 1 if you have the `_finitel' function. */ |
1168 | /* #undef _GLIBCXX_HAVE__FINITEL */ |
1169 | |
1170 | /* Define to 1 if you have the `_floorf' function. */ |
1171 | /* #undef _GLIBCXX_HAVE__FLOORF */ |
1172 | |
1173 | /* Define to 1 if you have the `_floorl' function. */ |
1174 | /* #undef _GLIBCXX_HAVE__FLOORL */ |
1175 | |
1176 | /* Define to 1 if you have the `_fmodf' function. */ |
1177 | /* #undef _GLIBCXX_HAVE__FMODF */ |
1178 | |
1179 | /* Define to 1 if you have the `_fmodl' function. */ |
1180 | /* #undef _GLIBCXX_HAVE__FMODL */ |
1181 | |
1182 | /* Define to 1 if you have the `_fpclass' function. */ |
1183 | /* #undef _GLIBCXX_HAVE__FPCLASS */ |
1184 | |
1185 | /* Define to 1 if you have the `_frexpf' function. */ |
1186 | /* #undef _GLIBCXX_HAVE__FREXPF */ |
1187 | |
1188 | /* Define to 1 if you have the `_frexpl' function. */ |
1189 | /* #undef _GLIBCXX_HAVE__FREXPL */ |
1190 | |
1191 | /* Define to 1 if you have the `_hypot' function. */ |
1192 | /* #undef _GLIBCXX_HAVE__HYPOT */ |
1193 | |
1194 | /* Define to 1 if you have the `_hypotf' function. */ |
1195 | /* #undef _GLIBCXX_HAVE__HYPOTF */ |
1196 | |
1197 | /* Define to 1 if you have the `_hypotl' function. */ |
1198 | /* #undef _GLIBCXX_HAVE__HYPOTL */ |
1199 | |
1200 | /* Define to 1 if you have the `_isinf' function. */ |
1201 | /* #undef _GLIBCXX_HAVE__ISINF */ |
1202 | |
1203 | /* Define to 1 if you have the `_isinff' function. */ |
1204 | /* #undef _GLIBCXX_HAVE__ISINFF */ |
1205 | |
1206 | /* Define to 1 if you have the `_isinfl' function. */ |
1207 | /* #undef _GLIBCXX_HAVE__ISINFL */ |
1208 | |
1209 | /* Define to 1 if you have the `_isnan' function. */ |
1210 | /* #undef _GLIBCXX_HAVE__ISNAN */ |
1211 | |
1212 | /* Define to 1 if you have the `_isnanf' function. */ |
1213 | /* #undef _GLIBCXX_HAVE__ISNANF */ |
1214 | |
1215 | /* Define to 1 if you have the `_isnanl' function. */ |
1216 | /* #undef _GLIBCXX_HAVE__ISNANL */ |
1217 | |
1218 | /* Define to 1 if you have the `_ldexpf' function. */ |
1219 | /* #undef _GLIBCXX_HAVE__LDEXPF */ |
1220 | |
1221 | /* Define to 1 if you have the `_ldexpl' function. */ |
1222 | /* #undef _GLIBCXX_HAVE__LDEXPL */ |
1223 | |
1224 | /* Define to 1 if you have the `_log10f' function. */ |
1225 | /* #undef _GLIBCXX_HAVE__LOG10F */ |
1226 | |
1227 | /* Define to 1 if you have the `_log10l' function. */ |
1228 | /* #undef _GLIBCXX_HAVE__LOG10L */ |
1229 | |
1230 | /* Define to 1 if you have the `_logf' function. */ |
1231 | /* #undef _GLIBCXX_HAVE__LOGF */ |
1232 | |
1233 | /* Define to 1 if you have the `_logl' function. */ |
1234 | /* #undef _GLIBCXX_HAVE__LOGL */ |
1235 | |
1236 | /* Define to 1 if you have the `_modf' function. */ |
1237 | /* #undef _GLIBCXX_HAVE__MODF */ |
1238 | |
1239 | /* Define to 1 if you have the `_modff' function. */ |
1240 | /* #undef _GLIBCXX_HAVE__MODFF */ |
1241 | |
1242 | /* Define to 1 if you have the `_modfl' function. */ |
1243 | /* #undef _GLIBCXX_HAVE__MODFL */ |
1244 | |
1245 | /* Define to 1 if you have the `_powf' function. */ |
1246 | /* #undef _GLIBCXX_HAVE__POWF */ |
1247 | |
1248 | /* Define to 1 if you have the `_powl' function. */ |
1249 | /* #undef _GLIBCXX_HAVE__POWL */ |
1250 | |
1251 | /* Define to 1 if you have the `_qfpclass' function. */ |
1252 | /* #undef _GLIBCXX_HAVE__QFPCLASS */ |
1253 | |
1254 | /* Define to 1 if you have the `_sincos' function. */ |
1255 | /* #undef _GLIBCXX_HAVE__SINCOS */ |
1256 | |
1257 | /* Define to 1 if you have the `_sincosf' function. */ |
1258 | /* #undef _GLIBCXX_HAVE__SINCOSF */ |
1259 | |
1260 | /* Define to 1 if you have the `_sincosl' function. */ |
1261 | /* #undef _GLIBCXX_HAVE__SINCOSL */ |
1262 | |
1263 | /* Define to 1 if you have the `_sinf' function. */ |
1264 | /* #undef _GLIBCXX_HAVE__SINF */ |
1265 | |
1266 | /* Define to 1 if you have the `_sinhf' function. */ |
1267 | /* #undef _GLIBCXX_HAVE__SINHF */ |
1268 | |
1269 | /* Define to 1 if you have the `_sinhl' function. */ |
1270 | /* #undef _GLIBCXX_HAVE__SINHL */ |
1271 | |
1272 | /* Define to 1 if you have the `_sinl' function. */ |
1273 | /* #undef _GLIBCXX_HAVE__SINL */ |
1274 | |
1275 | /* Define to 1 if you have the `_sqrtf' function. */ |
1276 | /* #undef _GLIBCXX_HAVE__SQRTF */ |
1277 | |
1278 | /* Define to 1 if you have the `_sqrtl' function. */ |
1279 | /* #undef _GLIBCXX_HAVE__SQRTL */ |
1280 | |
1281 | /* Define to 1 if you have the `_tanf' function. */ |
1282 | /* #undef _GLIBCXX_HAVE__TANF */ |
1283 | |
1284 | /* Define to 1 if you have the `_tanhf' function. */ |
1285 | /* #undef _GLIBCXX_HAVE__TANHF */ |
1286 | |
1287 | /* Define to 1 if you have the `_tanhl' function. */ |
1288 | /* #undef _GLIBCXX_HAVE__TANHL */ |
1289 | |
1290 | /* Define to 1 if you have the `_tanl' function. */ |
1291 | /* #undef _GLIBCXX_HAVE__TANL */ |
1292 | |
1293 | /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */ |
1294 | #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1 |
1295 | |
1296 | /* Define as const if the declaration of iconv() needs const. */ |
1297 | #define _GLIBCXX_ICONV_CONST |
1298 | |
1299 | /* Define to the sub-directory in which libtool stores uninstalled libraries. |
1300 | */ |
1301 | #define LT_OBJDIR ".libs/" |
1302 | |
1303 | /* Name of package */ |
1304 | /* #undef _GLIBCXX_PACKAGE */ |
1305 | |
1306 | /* Define to the address where bug reports for this package should be sent. */ |
1307 | #define _GLIBCXX_PACKAGE_BUGREPORT "" |
1308 | |
1309 | /* Define to the full name of this package. */ |
1310 | #define _GLIBCXX_PACKAGE_NAME "package-unused" |
1311 | |
1312 | /* Define to the full name and version of this package. */ |
1313 | #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" |
1314 | |
1315 | /* Define to the one symbol short name of this package. */ |
1316 | #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" |
1317 | |
1318 | /* Define to the home page for this package. */ |
1319 | #define _GLIBCXX_PACKAGE_URL "" |
1320 | |
1321 | /* Define to the version of this package. */ |
1322 | #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" |
1323 | |
1324 | /* The size of `char', as computed by sizeof. */ |
1325 | /* #undef SIZEOF_CHAR */ |
1326 | |
1327 | /* The size of `int', as computed by sizeof. */ |
1328 | /* #undef SIZEOF_INT */ |
1329 | |
1330 | /* The size of `long', as computed by sizeof. */ |
1331 | /* #undef SIZEOF_LONG */ |
1332 | |
1333 | /* The size of `short', as computed by sizeof. */ |
1334 | /* #undef SIZEOF_SHORT */ |
1335 | |
1336 | /* The size of `void *', as computed by sizeof. */ |
1337 | /* #undef SIZEOF_VOID_P */ |
1338 | |
1339 | /* Define to 1 if you have the ANSI C header files. */ |
1340 | #define 1 |
1341 | |
1342 | /* Version number of package */ |
1343 | /* #undef _GLIBCXX_VERSION */ |
1344 | |
1345 | /* Define if C99 functions in <complex.h> should be used in <complex> for |
1346 | C++11. Using compiler builtins for these functions requires corresponding |
1347 | C99 library functions to be present. */ |
1348 | #define _GLIBCXX11_USE_C99_COMPLEX 1 |
1349 | |
1350 | /* Define if C99 functions or macros in <math.h> should be imported in <cmath> |
1351 | in namespace std for C++11. */ |
1352 | #define _GLIBCXX11_USE_C99_MATH 1 |
1353 | |
1354 | /* Define if C99 functions or macros in <stdio.h> should be imported in |
1355 | <cstdio> in namespace std for C++11. */ |
1356 | #define _GLIBCXX11_USE_C99_STDIO 1 |
1357 | |
1358 | /* Define if C99 functions or macros in <stdlib.h> should be imported in |
1359 | <cstdlib> in namespace std for C++11. */ |
1360 | #define _GLIBCXX11_USE_C99_STDLIB 1 |
1361 | |
1362 | /* Define if C99 functions or macros in <wchar.h> should be imported in |
1363 | <cwchar> in namespace std for C++11. */ |
1364 | #define _GLIBCXX11_USE_C99_WCHAR 1 |
1365 | |
1366 | /* Define if C99 functions in <complex.h> should be used in <complex> for |
1367 | C++98. Using compiler builtins for these functions requires corresponding |
1368 | C99 library functions to be present. */ |
1369 | #define _GLIBCXX98_USE_C99_COMPLEX 1 |
1370 | |
1371 | /* Define if C99 functions or macros in <math.h> should be imported in <cmath> |
1372 | in namespace std for C++98. */ |
1373 | #define _GLIBCXX98_USE_C99_MATH 1 |
1374 | |
1375 | /* Define if C99 functions or macros in <stdio.h> should be imported in |
1376 | <cstdio> in namespace std for C++98. */ |
1377 | #define _GLIBCXX98_USE_C99_STDIO 1 |
1378 | |
1379 | /* Define if C99 functions or macros in <stdlib.h> should be imported in |
1380 | <cstdlib> in namespace std for C++98. */ |
1381 | #define _GLIBCXX98_USE_C99_STDLIB 1 |
1382 | |
1383 | /* Define if C99 functions or macros in <wchar.h> should be imported in |
1384 | <cwchar> in namespace std for C++98. */ |
1385 | #define _GLIBCXX98_USE_C99_WCHAR 1 |
1386 | |
1387 | /* Define if the compiler supports C++11 atomics. */ |
1388 | #define _GLIBCXX_ATOMIC_BUILTINS 1 |
1389 | |
1390 | /* Define to use concept checking code from the boost libraries. */ |
1391 | /* #undef _GLIBCXX_CONCEPT_CHECKS */ |
1392 | |
1393 | /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, |
1394 | undefined for platform defaults */ |
1395 | #define _GLIBCXX_FULLY_DYNAMIC_STRING 0 |
1396 | |
1397 | /* Define if gthreads library is available. */ |
1398 | #define _GLIBCXX_HAS_GTHREADS 1 |
1399 | |
1400 | /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ |
1401 | #define _GLIBCXX_HOSTED 1 |
1402 | |
1403 | /* Define if compatibility should be provided for -mlong-double-64. */ |
1404 | |
1405 | /* Define to the letter to which size_t is mangled. */ |
1406 | #define _GLIBCXX_MANGLE_SIZE_T m |
1407 | |
1408 | /* Define if ptrdiff_t is int. */ |
1409 | /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */ |
1410 | |
1411 | /* Define if using setrlimit to set resource limits during "make check" */ |
1412 | #define _GLIBCXX_RES_LIMITS 1 |
1413 | |
1414 | /* Define if size_t is unsigned int. */ |
1415 | /* #undef _GLIBCXX_SIZE_T_IS_UINT */ |
1416 | |
1417 | /* Define to the value of the EOF integer constant. */ |
1418 | #define _GLIBCXX_STDIO_EOF -1 |
1419 | |
1420 | /* Define to the value of the SEEK_CUR integer constant. */ |
1421 | #define _GLIBCXX_STDIO_SEEK_CUR 1 |
1422 | |
1423 | /* Define to the value of the SEEK_END integer constant. */ |
1424 | #define _GLIBCXX_STDIO_SEEK_END 2 |
1425 | |
1426 | /* Define to use symbol versioning in the shared library. */ |
1427 | #define _GLIBCXX_SYMVER 1 |
1428 | |
1429 | /* Define to use darwin versioning in the shared library. */ |
1430 | /* #undef _GLIBCXX_SYMVER_DARWIN */ |
1431 | |
1432 | /* Define to use GNU versioning in the shared library. */ |
1433 | #define _GLIBCXX_SYMVER_GNU 1 |
1434 | |
1435 | /* Define to use GNU namespace versioning in the shared library. */ |
1436 | /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */ |
1437 | |
1438 | /* Define to use Sun versioning in the shared library. */ |
1439 | /* #undef _GLIBCXX_SYMVER_SUN */ |
1440 | |
1441 | /* Define if C11 functions in <uchar.h> should be imported into namespace std |
1442 | in <cuchar>. */ |
1443 | #define _GLIBCXX_USE_C11_UCHAR_CXX11 1 |
1444 | |
1445 | /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>, |
1446 | <stdio.h>, and <stdlib.h> can be used or exposed. */ |
1447 | #define _GLIBCXX_USE_C99 1 |
1448 | |
1449 | /* Define if C99 functions in <complex.h> should be used in <tr1/complex>. |
1450 | Using compiler builtins for these functions requires corresponding C99 |
1451 | library functions to be present. */ |
1452 | #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 |
1453 | |
1454 | /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in |
1455 | namespace std::tr1. */ |
1456 | #define _GLIBCXX_USE_C99_CTYPE_TR1 1 |
1457 | |
1458 | /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in |
1459 | namespace std::tr1. */ |
1460 | #define _GLIBCXX_USE_C99_FENV_TR1 1 |
1461 | |
1462 | /* Define if C99 functions in <inttypes.h> should be imported in |
1463 | <tr1/cinttypes> in namespace std::tr1. */ |
1464 | #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 |
1465 | |
1466 | /* Define if wchar_t C99 functions in <inttypes.h> should be imported in |
1467 | <tr1/cinttypes> in namespace std::tr1. */ |
1468 | #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 |
1469 | |
1470 | /* Define if C99 functions or macros in <math.h> should be imported in |
1471 | <tr1/cmath> in namespace std::tr1. */ |
1472 | #define _GLIBCXX_USE_C99_MATH_TR1 1 |
1473 | |
1474 | /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in |
1475 | namespace std::tr1. */ |
1476 | #define _GLIBCXX_USE_C99_STDINT_TR1 1 |
1477 | |
1478 | /* Defined if clock_gettime syscall has monotonic and realtime clock support. |
1479 | */ |
1480 | /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */ |
1481 | |
1482 | /* Defined if clock_gettime has monotonic clock support. */ |
1483 | #define _GLIBCXX_USE_CLOCK_MONOTONIC 1 |
1484 | |
1485 | /* Defined if clock_gettime has realtime clock support. */ |
1486 | #define _GLIBCXX_USE_CLOCK_REALTIME 1 |
1487 | |
1488 | /* Define if ISO/IEC TR 24733 decimal floating point types are supported on |
1489 | this host. */ |
1490 | #define _GLIBCXX_USE_DECIMAL_FLOAT 1 |
1491 | |
1492 | /* Define if fchmod is available in <sys/stat.h>. */ |
1493 | #define _GLIBCXX_USE_FCHMOD 1 |
1494 | |
1495 | /* Define if fchmodat is available in <sys/stat.h>. */ |
1496 | #define _GLIBCXX_USE_FCHMODAT 1 |
1497 | |
1498 | /* Define if __float128 is supported on this host. */ |
1499 | #define _GLIBCXX_USE_FLOAT128 1 |
1500 | |
1501 | /* Defined if gettimeofday is available. */ |
1502 | #define _GLIBCXX_USE_GETTIMEOFDAY 1 |
1503 | |
1504 | /* Define if get_nprocs is available in <sys/sysinfo.h>. */ |
1505 | #define _GLIBCXX_USE_GET_NPROCS 1 |
1506 | |
1507 | /* Define if __int128 is supported on this host. */ |
1508 | #define _GLIBCXX_USE_INT128 1 |
1509 | |
1510 | /* Define if LFS support is available. */ |
1511 | #define _GLIBCXX_USE_LFS 1 |
1512 | |
1513 | /* Define if code specialized for long long should be used. */ |
1514 | #define _GLIBCXX_USE_LONG_LONG 1 |
1515 | |
1516 | /* Defined if nanosleep is available. */ |
1517 | #define _GLIBCXX_USE_NANOSLEEP 1 |
1518 | |
1519 | /* Define if NLS translations are to be used. */ |
1520 | #define _GLIBCXX_USE_NLS 1 |
1521 | |
1522 | /* Define if pthreads_num_processors_np is available in <pthread.h>. */ |
1523 | /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */ |
1524 | |
1525 | /* Define if POSIX read/write locks are available in <gthr.h>. */ |
1526 | #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1 |
1527 | |
1528 | /* Define if /dev/random and /dev/urandom are available for the random_device |
1529 | of TR1 (Chapter 5.1). */ |
1530 | #define _GLIBCXX_USE_RANDOM_TR1 1 |
1531 | |
1532 | /* Define if usable realpath is available in <stdlib.h>. */ |
1533 | #define _GLIBCXX_USE_REALPATH 1 |
1534 | |
1535 | /* Defined if sched_yield is available. */ |
1536 | #define _GLIBCXX_USE_SCHED_YIELD 1 |
1537 | |
1538 | /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */ |
1539 | #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1 |
1540 | |
1541 | /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */ |
1542 | /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */ |
1543 | |
1544 | /* Define if sendfile is available in <sys/sendfile.h>. */ |
1545 | #define _GLIBCXX_USE_SENDFILE 1 |
1546 | |
1547 | /* Define if struct stat has timespec members. */ |
1548 | #define _GLIBCXX_USE_ST_MTIM 1 |
1549 | |
1550 | /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */ |
1551 | /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */ |
1552 | |
1553 | /* Define if obsolescent tmpnam is available in <stdio.h>. */ |
1554 | #define _GLIBCXX_USE_TMPNAM 1 |
1555 | |
1556 | /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and |
1557 | AT_FDCWD in <fcntl.h>. */ |
1558 | #define _GLIBCXX_USE_UTIMENSAT 1 |
1559 | |
1560 | /* Define if code specialized for wchar_t should be used. */ |
1561 | #define _GLIBCXX_USE_WCHAR_T 1 |
1562 | |
1563 | /* Define to 1 if a verbose library is built, or 0 otherwise. */ |
1564 | #define _GLIBCXX_VERBOSE 1 |
1565 | |
1566 | /* Defined if as can handle rdrand. */ |
1567 | #define _GLIBCXX_X86_RDRAND 1 |
1568 | |
1569 | /* Define to 1 if mutex_timedlock is available. */ |
1570 | #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1 |
1571 | |
1572 | /* Define if all C++11 floating point overloads are available in <math.h>. */ |
1573 | #if __cplusplus >= 201103L |
1574 | /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */ |
1575 | #endif |
1576 | |
1577 | /* Define if all C++11 integral type overloads are available in <math.h>. */ |
1578 | #if __cplusplus >= 201103L |
1579 | /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */ |
1580 | #endif |
1581 | |
1582 | #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) |
1583 | # define _GLIBCXX_HAVE_ACOSF 1 |
1584 | # define acosf _acosf |
1585 | #endif |
1586 | |
1587 | #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) |
1588 | # define _GLIBCXX_HAVE_ACOSL 1 |
1589 | # define acosl _acosl |
1590 | #endif |
1591 | |
1592 | #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) |
1593 | # define _GLIBCXX_HAVE_ASINF 1 |
1594 | # define asinf _asinf |
1595 | #endif |
1596 | |
1597 | #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) |
1598 | # define _GLIBCXX_HAVE_ASINL 1 |
1599 | # define asinl _asinl |
1600 | #endif |
1601 | |
1602 | #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) |
1603 | # define _GLIBCXX_HAVE_ATAN2F 1 |
1604 | # define atan2f _atan2f |
1605 | #endif |
1606 | |
1607 | #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) |
1608 | # define _GLIBCXX_HAVE_ATAN2L 1 |
1609 | # define atan2l _atan2l |
1610 | #endif |
1611 | |
1612 | #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) |
1613 | # define _GLIBCXX_HAVE_ATANF 1 |
1614 | # define atanf _atanf |
1615 | #endif |
1616 | |
1617 | #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) |
1618 | # define _GLIBCXX_HAVE_ATANL 1 |
1619 | # define atanl _atanl |
1620 | #endif |
1621 | |
1622 | #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) |
1623 | # define _GLIBCXX_HAVE_CEILF 1 |
1624 | # define ceilf _ceilf |
1625 | #endif |
1626 | |
1627 | #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) |
1628 | # define _GLIBCXX_HAVE_CEILL 1 |
1629 | # define ceill _ceill |
1630 | #endif |
1631 | |
1632 | #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) |
1633 | # define _GLIBCXX_HAVE_COSF 1 |
1634 | # define cosf _cosf |
1635 | #endif |
1636 | |
1637 | #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) |
1638 | # define _GLIBCXX_HAVE_COSHF 1 |
1639 | # define coshf _coshf |
1640 | #endif |
1641 | |
1642 | #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) |
1643 | # define _GLIBCXX_HAVE_COSHL 1 |
1644 | # define coshl _coshl |
1645 | #endif |
1646 | |
1647 | #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) |
1648 | # define _GLIBCXX_HAVE_COSL 1 |
1649 | # define cosl _cosl |
1650 | #endif |
1651 | |
1652 | #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) |
1653 | # define _GLIBCXX_HAVE_EXPF 1 |
1654 | # define expf _expf |
1655 | #endif |
1656 | |
1657 | #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) |
1658 | # define _GLIBCXX_HAVE_EXPL 1 |
1659 | # define expl _expl |
1660 | #endif |
1661 | |
1662 | #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) |
1663 | # define _GLIBCXX_HAVE_FABSF 1 |
1664 | # define fabsf _fabsf |
1665 | #endif |
1666 | |
1667 | #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) |
1668 | # define _GLIBCXX_HAVE_FABSL 1 |
1669 | # define fabsl _fabsl |
1670 | #endif |
1671 | |
1672 | #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) |
1673 | # define _GLIBCXX_HAVE_FINITE 1 |
1674 | # define finite _finite |
1675 | #endif |
1676 | |
1677 | #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) |
1678 | # define _GLIBCXX_HAVE_FINITEF 1 |
1679 | # define finitef _finitef |
1680 | #endif |
1681 | |
1682 | #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) |
1683 | # define _GLIBCXX_HAVE_FINITEL 1 |
1684 | # define finitel _finitel |
1685 | #endif |
1686 | |
1687 | #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) |
1688 | # define _GLIBCXX_HAVE_FLOORF 1 |
1689 | # define floorf _floorf |
1690 | #endif |
1691 | |
1692 | #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) |
1693 | # define _GLIBCXX_HAVE_FLOORL 1 |
1694 | # define floorl _floorl |
1695 | #endif |
1696 | |
1697 | #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) |
1698 | # define _GLIBCXX_HAVE_FMODF 1 |
1699 | # define fmodf _fmodf |
1700 | #endif |
1701 | |
1702 | #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) |
1703 | # define _GLIBCXX_HAVE_FMODL 1 |
1704 | # define fmodl _fmodl |
1705 | #endif |
1706 | |
1707 | #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) |
1708 | # define _GLIBCXX_HAVE_FPCLASS 1 |
1709 | # define fpclass _fpclass |
1710 | #endif |
1711 | |
1712 | #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) |
1713 | # define _GLIBCXX_HAVE_FREXPF 1 |
1714 | # define frexpf _frexpf |
1715 | #endif |
1716 | |
1717 | #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) |
1718 | # define _GLIBCXX_HAVE_FREXPL 1 |
1719 | # define frexpl _frexpl |
1720 | #endif |
1721 | |
1722 | #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) |
1723 | # define _GLIBCXX_HAVE_HYPOT 1 |
1724 | # define hypot _hypot |
1725 | #endif |
1726 | |
1727 | #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) |
1728 | # define _GLIBCXX_HAVE_HYPOTF 1 |
1729 | # define hypotf _hypotf |
1730 | #endif |
1731 | |
1732 | #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) |
1733 | # define _GLIBCXX_HAVE_HYPOTL 1 |
1734 | # define hypotl _hypotl |
1735 | #endif |
1736 | |
1737 | #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) |
1738 | # define _GLIBCXX_HAVE_ISINF 1 |
1739 | # define isinf _isinf |
1740 | #endif |
1741 | |
1742 | #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) |
1743 | # define _GLIBCXX_HAVE_ISINFF 1 |
1744 | # define isinff _isinff |
1745 | #endif |
1746 | |
1747 | #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) |
1748 | # define _GLIBCXX_HAVE_ISINFL 1 |
1749 | # define isinfl _isinfl |
1750 | #endif |
1751 | |
1752 | #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) |
1753 | # define _GLIBCXX_HAVE_ISNAN 1 |
1754 | # define isnan _isnan |
1755 | #endif |
1756 | |
1757 | #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) |
1758 | # define _GLIBCXX_HAVE_ISNANF 1 |
1759 | # define isnanf _isnanf |
1760 | #endif |
1761 | |
1762 | #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) |
1763 | # define _GLIBCXX_HAVE_ISNANL 1 |
1764 | # define isnanl _isnanl |
1765 | #endif |
1766 | |
1767 | #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) |
1768 | # define _GLIBCXX_HAVE_LDEXPF 1 |
1769 | # define ldexpf _ldexpf |
1770 | #endif |
1771 | |
1772 | #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) |
1773 | # define _GLIBCXX_HAVE_LDEXPL 1 |
1774 | # define ldexpl _ldexpl |
1775 | #endif |
1776 | |
1777 | #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) |
1778 | # define _GLIBCXX_HAVE_LOG10F 1 |
1779 | # define log10f _log10f |
1780 | #endif |
1781 | |
1782 | #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) |
1783 | # define _GLIBCXX_HAVE_LOG10L 1 |
1784 | # define log10l _log10l |
1785 | #endif |
1786 | |
1787 | #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) |
1788 | # define _GLIBCXX_HAVE_LOGF 1 |
1789 | # define logf _logf |
1790 | #endif |
1791 | |
1792 | #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) |
1793 | # define _GLIBCXX_HAVE_LOGL 1 |
1794 | # define logl _logl |
1795 | #endif |
1796 | |
1797 | #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) |
1798 | # define _GLIBCXX_HAVE_MODF 1 |
1799 | # define modf _modf |
1800 | #endif |
1801 | |
1802 | #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) |
1803 | # define _GLIBCXX_HAVE_MODFF 1 |
1804 | # define modff _modff |
1805 | #endif |
1806 | |
1807 | #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) |
1808 | # define _GLIBCXX_HAVE_MODFL 1 |
1809 | # define modfl _modfl |
1810 | #endif |
1811 | |
1812 | #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) |
1813 | # define _GLIBCXX_HAVE_POWF 1 |
1814 | # define powf _powf |
1815 | #endif |
1816 | |
1817 | #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) |
1818 | # define _GLIBCXX_HAVE_POWL 1 |
1819 | # define powl _powl |
1820 | #endif |
1821 | |
1822 | #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) |
1823 | # define _GLIBCXX_HAVE_QFPCLASS 1 |
1824 | # define qfpclass _qfpclass |
1825 | #endif |
1826 | |
1827 | #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) |
1828 | # define _GLIBCXX_HAVE_SINCOS 1 |
1829 | # define sincos _sincos |
1830 | #endif |
1831 | |
1832 | #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) |
1833 | # define _GLIBCXX_HAVE_SINCOSF 1 |
1834 | # define sincosf _sincosf |
1835 | #endif |
1836 | |
1837 | #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) |
1838 | # define _GLIBCXX_HAVE_SINCOSL 1 |
1839 | # define sincosl _sincosl |
1840 | #endif |
1841 | |
1842 | #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) |
1843 | # define _GLIBCXX_HAVE_SINF 1 |
1844 | # define sinf _sinf |
1845 | #endif |
1846 | |
1847 | #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) |
1848 | # define _GLIBCXX_HAVE_SINHF 1 |
1849 | # define sinhf _sinhf |
1850 | #endif |
1851 | |
1852 | #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) |
1853 | # define _GLIBCXX_HAVE_SINHL 1 |
1854 | # define sinhl _sinhl |
1855 | #endif |
1856 | |
1857 | #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) |
1858 | # define _GLIBCXX_HAVE_SINL 1 |
1859 | # define sinl _sinl |
1860 | #endif |
1861 | |
1862 | #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) |
1863 | # define _GLIBCXX_HAVE_SQRTF 1 |
1864 | # define sqrtf _sqrtf |
1865 | #endif |
1866 | |
1867 | #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) |
1868 | # define _GLIBCXX_HAVE_SQRTL 1 |
1869 | # define sqrtl _sqrtl |
1870 | #endif |
1871 | |
1872 | #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) |
1873 | # define _GLIBCXX_HAVE_STRTOF 1 |
1874 | # define strtof _strtof |
1875 | #endif |
1876 | |
1877 | #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) |
1878 | # define _GLIBCXX_HAVE_STRTOLD 1 |
1879 | # define strtold _strtold |
1880 | #endif |
1881 | |
1882 | #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) |
1883 | # define _GLIBCXX_HAVE_TANF 1 |
1884 | # define tanf _tanf |
1885 | #endif |
1886 | |
1887 | #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) |
1888 | # define _GLIBCXX_HAVE_TANHF 1 |
1889 | # define tanhf _tanhf |
1890 | #endif |
1891 | |
1892 | #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) |
1893 | # define _GLIBCXX_HAVE_TANHL 1 |
1894 | # define tanhl _tanhl |
1895 | #endif |
1896 | |
1897 | #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) |
1898 | # define _GLIBCXX_HAVE_TANL 1 |
1899 | # define tanl _tanl |
1900 | #endif |
1901 | |
1902 | #endif // _GLIBCXX_CXX_CONFIG_H |
1903 | |