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