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