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