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