Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h
$ cat -n /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h 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 //
. 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__ 20240904 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 */ 306 namespace 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
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 339 namespace std 340 { 341 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { } 342 } 343 namespace __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 369 namespace std 370 { 371 inline _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 385 namespace __gnu_cxx 386 { 387 inline _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) 409 namespace 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__ 491 namespace 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__ 507 namespace 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 532 namespace 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 581 namespace std 582 { 583 #pragma GCC visibility push(default) 584 // Avoid the use of assert, because we're trying to keep the
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
680 681 // Pick up any CPU-specific definitions. 682 #include
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,
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__ 824 namespace __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(
) 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(
) 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
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
. */ 902 #define _GLIBCXX_HAVE_ARC4RANDOM 1 903 904 /* Define to 1 if you have the
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
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
header file. */ 963 #define _GLIBCXX_HAVE_DIRENT_H 1 964 965 /* Define if dirfd is available in
. */ 966 #define _GLIBCXX_HAVE_DIRFD 1 967 968 /* Define to 1 if you have the
header file. */ 969 #define _GLIBCXX_HAVE_DLFCN_H 1 970 971 /* Define to 1 if you have the
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
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
header file. */ 993 #define _GLIBCXX_HAVE_FCNTL_H 1 994 995 /* Define if fdopendir is available in
. */ 996 #define _GLIBCXX_HAVE_FDOPENDIR 1 997 998 /* Define to 1 if you have the
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
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
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
. */ 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
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
header file. */ 1059 /* #undef _GLIBCXX_HAVE_IEEEFP_H */ 1060 1061 /* Define to 1 if you have the
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
. */ 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
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
. */ 1113 #define _GLIBCXX_HAVE_LINK 1 1114 1115 /* Define to 1 if you have the
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
header file. */ 1122 #define _GLIBCXX_HAVE_LINUX_RANDOM_H 1 1123 1124 /* Define to 1 if you have the
header file. */ 1125 #define _GLIBCXX_HAVE_LINUX_TYPES_H 1 1126 1127 /* Define to 1 if you have the
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
header file. */ 1143 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */ 1144 1145 /* Define to 1 if you have the
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
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
header file. */ 1167 /* #undef _GLIBCXX_HAVE_NAN_H */ 1168 1169 /* Define to 1 if you have the
header file. */ 1170 #define _GLIBCXX_HAVE_NETDB_H 1 1171 1172 /* Define to 1 if you have the
header file. */ 1173 #define _GLIBCXX_HAVE_NETINET_IN_H 1 1174 1175 /* Define to 1 if you have the
header file. */ 1176 #define _GLIBCXX_HAVE_NETINET_TCP_H 1 1177 1178 /* Define if
defines obsolete isinf function. */ 1179 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISINF */ 1180 1181 /* Define if
defines obsolete isnan function. */ 1182 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISNAN */ 1183 1184 /* Define if openat is available in
. */ 1185 #define _GLIBCXX_HAVE_OPENAT 1 1186 1187 /* Define if poll is available in
. */ 1188 #define _GLIBCXX_HAVE_POLL 1 1189 1190 /* Define to 1 if you have the
header file. */ 1191 #define _GLIBCXX_HAVE_POLL_H 1 1192 1193 /* Define to 1 if you have the `posix_memalign' function. */ 1194 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1 1195 1196 /* Define to 1 if POSIX Semaphores with sem_timedwait are available in 1197
. */ 1198 #define _GLIBCXX_HAVE_POSIX_SEMAPHORE 1 1199 1200 /* Define to 1 if you have the `powf' function. */ 1201 #define _GLIBCXX_HAVE_POWF 1 1202 1203 /* Define to 1 if you have the `powl' function. */ 1204 #define _GLIBCXX_HAVE_POWL 1 1205 1206 /* Define to 1 if you have the `qfpclass' function. */ 1207 /* #undef _GLIBCXX_HAVE_QFPCLASS */ 1208 1209 /* Define to 1 if you have the `quick_exit' function. */ 1210 #define _GLIBCXX_HAVE_QUICK_EXIT 1 1211 1212 /* Define if readlink is available in
. */ 1213 #define _GLIBCXX_HAVE_READLINK 1 1214 1215 /* Define to 1 if you have the `secure_getenv' function. */ 1216 #define _GLIBCXX_HAVE_SECURE_GETENV 1 1217 1218 /* Define to 1 if you have the `setenv' function. */ 1219 #define _GLIBCXX_HAVE_SETENV 1 1220 1221 /* Define to 1 if you have the `sincos' function. */ 1222 #define _GLIBCXX_HAVE_SINCOS 1 1223 1224 /* Define to 1 if you have the `sincosf' function. */ 1225 #define _GLIBCXX_HAVE_SINCOSF 1 1226 1227 /* Define to 1 if you have the `sincosl' function. */ 1228 #define _GLIBCXX_HAVE_SINCOSL 1 1229 1230 /* Define to 1 if you have the `sinf' function. */ 1231 #define _GLIBCXX_HAVE_SINF 1 1232 1233 /* Define to 1 if you have the `sinhf' function. */ 1234 #define _GLIBCXX_HAVE_SINHF 1 1235 1236 /* Define to 1 if you have the `sinhl' function. */ 1237 #define _GLIBCXX_HAVE_SINHL 1 1238 1239 /* Define to 1 if you have the `sinl' function. */ 1240 #define _GLIBCXX_HAVE_SINL 1 1241 1242 /* Defined if sleep exists. */ 1243 /* #undef _GLIBCXX_HAVE_SLEEP */ 1244 1245 /* Define to 1 if you have the `sockatmark' function. */ 1246 #define _GLIBCXX_HAVE_SOCKATMARK 1 1247 1248 /* Define to 1 if you have the `sqrtf' function. */ 1249 #define _GLIBCXX_HAVE_SQRTF 1 1250 1251 /* Define to 1 if you have the `sqrtl' function. */ 1252 #define _GLIBCXX_HAVE_SQRTL 1 1253 1254 /* Define if the
header is supported. */ 1255 #define _GLIBCXX_HAVE_STACKTRACE 1 1256 1257 /* Define to 1 if you have the
header file. */ 1258 #define _GLIBCXX_HAVE_STDALIGN_H 1 1259 1260 /* Define to 1 if you have the
header file. */ 1261 #define _GLIBCXX_HAVE_STDBOOL_H 1 1262 1263 /* Define to 1 if you have the
header file. */ 1264 #define _GLIBCXX_HAVE_STDINT_H 1 1265 1266 /* Define to 1 if you have the
header file. */ 1267 #define _GLIBCXX_HAVE_STDLIB_H 1 1268 1269 /* Define if strerror_l is available in
. */ 1270 #define _GLIBCXX_HAVE_STRERROR_L 1 1271 1272 /* Define if strerror_r is available in
. */ 1273 #define _GLIBCXX_HAVE_STRERROR_R 1 1274 1275 /* Define to 1 if you have the
header file. */ 1276 #define _GLIBCXX_HAVE_STRINGS_H 1 1277 1278 /* Define to 1 if you have the
header file. */ 1279 #define _GLIBCXX_HAVE_STRING_H 1 1280 1281 /* Define to 1 if you have the `strtof' function. */ 1282 #define _GLIBCXX_HAVE_STRTOF 1 1283 1284 /* Define to 1 if you have the `strtold' function. */ 1285 #define _GLIBCXX_HAVE_STRTOLD 1 1286 1287 /* Define to 1 if `d_type' is a member of `struct dirent'. */ 1288 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1 1289 1290 /* Define if strxfrm_l is available in
. */ 1291 #define _GLIBCXX_HAVE_STRXFRM_L 1 1292 1293 /* Define if symlink is available in
. */ 1294 #define _GLIBCXX_HAVE_SYMLINK 1 1295 1296 /* Define to 1 if the target runtime linker supports binding the same symbol 1297 to different versions. */ 1298 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1 1299 1300 /* Define to 1 if you have the
header file. */ 1301 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */ 1302 1303 /* Define to 1 if you have the
header file. */ 1304 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 1305 1306 /* Define to 1 if you have the
header file. */ 1307 #define _GLIBCXX_HAVE_SYS_IPC_H 1 1308 1309 /* Define to 1 if you have the
header file. */ 1310 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ 1311 1312 /* Define to 1 if you have the
header file. */ 1313 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ 1314 1315 /* Define to 1 if you have the
header file. */ 1316 #define _GLIBCXX_HAVE_SYS_MMAN_H 1 1317 1318 /* Define to 1 if you have the
header file. */ 1319 #define _GLIBCXX_HAVE_SYS_PARAM_H 1 1320 1321 /* Define to 1 if you have the
header file. */ 1322 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 1323 1324 /* Define to 1 if you have a suitable
header file */ 1325 #define _GLIBCXX_HAVE_SYS_SDT_H 1 1326 1327 /* Define to 1 if you have the
header file. */ 1328 #define _GLIBCXX_HAVE_SYS_SEM_H 1 1329 1330 /* Define to 1 if you have the
header file. */ 1331 #define _GLIBCXX_HAVE_SYS_SOCKET_H 1 1332 1333 /* Define to 1 if you have the
header file. */ 1334 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1 1335 1336 /* Define to 1 if you have the
header file. */ 1337 #define _GLIBCXX_HAVE_SYS_STAT_H 1 1338 1339 /* Define to 1 if you have the
header file. */ 1340 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1 1341 1342 /* Define to 1 if you have the
header file. */ 1343 #define _GLIBCXX_HAVE_SYS_TIME_H 1 1344 1345 /* Define to 1 if you have the
header file. */ 1346 #define _GLIBCXX_HAVE_SYS_TYPES_H 1 1347 1348 /* Define to 1 if you have the
header file. */ 1349 #define _GLIBCXX_HAVE_SYS_UIO_H 1 1350 1351 /* Define if S_IFREG is available in
. */ 1352 /* #undef _GLIBCXX_HAVE_S_IFREG */ 1353 1354 /* Define if S_ISREG is available in
. */ 1355 #define _GLIBCXX_HAVE_S_ISREG 1 1356 1357 /* Define to 1 if you have the `tanf' function. */ 1358 #define _GLIBCXX_HAVE_TANF 1 1359 1360 /* Define to 1 if you have the `tanhf' function. */ 1361 #define _GLIBCXX_HAVE_TANHF 1 1362 1363 /* Define to 1 if you have the `tanhl' function. */ 1364 #define _GLIBCXX_HAVE_TANHL 1 1365 1366 /* Define to 1 if you have the `tanl' function. */ 1367 #define _GLIBCXX_HAVE_TANL 1 1368 1369 /* Define to 1 if you have the
header file. */ 1370 #define _GLIBCXX_HAVE_TGMATH_H 1 1371 1372 /* Define to 1 if you have the `timespec_get' function. */ 1373 #define _GLIBCXX_HAVE_TIMESPEC_GET 1 1374 1375 /* Define to 1 if the target supports thread-local storage. */ 1376 #define _GLIBCXX_HAVE_TLS 1 1377 1378 /* Define if truncate is available in
. */ 1379 #define _GLIBCXX_HAVE_TRUNCATE 1 1380 1381 /* Define to 1 if you have the
header file. */ 1382 #define _GLIBCXX_HAVE_UCHAR_H 1 1383 1384 /* Define to 1 if you have the
header file. */ 1385 #define _GLIBCXX_HAVE_UNISTD_H 1 1386 1387 /* Define if unlinkat is available in
. */ 1388 #define _GLIBCXX_HAVE_UNLINKAT 1 1389 1390 /* Define to 1 if you have the `uselocale' function. */ 1391 #define _GLIBCXX_HAVE_USELOCALE 1 1392 1393 /* Defined if usleep exists. */ 1394 /* #undef _GLIBCXX_HAVE_USLEEP */ 1395 1396 /* Define to 1 if you have the
header file. */ 1397 #define _GLIBCXX_HAVE_UTIME_H 1 1398 1399 /* Defined if vfwscanf exists. */ 1400 #define _GLIBCXX_HAVE_VFWSCANF 1 1401 1402 /* Defined if vswscanf exists. */ 1403 #define _GLIBCXX_HAVE_VSWSCANF 1 1404 1405 /* Defined if vwscanf exists. */ 1406 #define _GLIBCXX_HAVE_VWSCANF 1 1407 1408 /* Define to 1 if you have the
header file. */ 1409 #define _GLIBCXX_HAVE_WCHAR_H 1 1410 1411 /* Defined if wcstof exists. */ 1412 #define _GLIBCXX_HAVE_WCSTOF 1 1413 1414 /* Define to 1 if you have the
header file. */ 1415 #define _GLIBCXX_HAVE_WCTYPE_H 1 1416 1417 /* Define to 1 if you have the
header file. */ 1418 /* #undef _GLIBCXX_HAVE_WINDOWS_H */ 1419 1420 /* Define if writev is available in
. */ 1421 #define _GLIBCXX_HAVE_WRITEV 1 1422 1423 /* Define to 1 if you have the
header file. */ 1424 /* #undef _GLIBCXX_HAVE_XLOCALE_H */ 1425 1426 /* Define to 1 if you have the `_acosf' function. */ 1427 /* #undef _GLIBCXX_HAVE__ACOSF */ 1428 1429 /* Define to 1 if you have the `_acosl' function. */ 1430 /* #undef _GLIBCXX_HAVE__ACOSL */ 1431 1432 /* Define to 1 if you have the `_aligned_malloc' function. */ 1433 /* #undef _GLIBCXX_HAVE__ALIGNED_MALLOC */ 1434 1435 /* Define to 1 if you have the `_asinf' function. */ 1436 /* #undef _GLIBCXX_HAVE__ASINF */ 1437 1438 /* Define to 1 if you have the `_asinl' function. */ 1439 /* #undef _GLIBCXX_HAVE__ASINL */ 1440 1441 /* Define to 1 if you have the `_atan2f' function. */ 1442 /* #undef _GLIBCXX_HAVE__ATAN2F */ 1443 1444 /* Define to 1 if you have the `_atan2l' function. */ 1445 /* #undef _GLIBCXX_HAVE__ATAN2L */ 1446 1447 /* Define to 1 if you have the `_atanf' function. */ 1448 /* #undef _GLIBCXX_HAVE__ATANF */ 1449 1450 /* Define to 1 if you have the `_atanl' function. */ 1451 /* #undef _GLIBCXX_HAVE__ATANL */ 1452 1453 /* Define to 1 if you have the `_ceilf' function. */ 1454 /* #undef _GLIBCXX_HAVE__CEILF */ 1455 1456 /* Define to 1 if you have the `_ceill' function. */ 1457 /* #undef _GLIBCXX_HAVE__CEILL */ 1458 1459 /* Define to 1 if you have the `_cosf' function. */ 1460 /* #undef _GLIBCXX_HAVE__COSF */ 1461 1462 /* Define to 1 if you have the `_coshf' function. */ 1463 /* #undef _GLIBCXX_HAVE__COSHF */ 1464 1465 /* Define to 1 if you have the `_coshl' function. */ 1466 /* #undef _GLIBCXX_HAVE__COSHL */ 1467 1468 /* Define to 1 if you have the `_cosl' function. */ 1469 /* #undef _GLIBCXX_HAVE__COSL */ 1470 1471 /* Define to 1 if you have the `_expf' function. */ 1472 /* #undef _GLIBCXX_HAVE__EXPF */ 1473 1474 /* Define to 1 if you have the `_expl' function. */ 1475 /* #undef _GLIBCXX_HAVE__EXPL */ 1476 1477 /* Define to 1 if you have the `_fabsf' function. */ 1478 /* #undef _GLIBCXX_HAVE__FABSF */ 1479 1480 /* Define to 1 if you have the `_fabsl' function. */ 1481 /* #undef _GLIBCXX_HAVE__FABSL */ 1482 1483 /* Define to 1 if you have the `_finite' function. */ 1484 /* #undef _GLIBCXX_HAVE__FINITE */ 1485 1486 /* Define to 1 if you have the `_finitef' function. */ 1487 /* #undef _GLIBCXX_HAVE__FINITEF */ 1488 1489 /* Define to 1 if you have the `_finitel' function. */ 1490 /* #undef _GLIBCXX_HAVE__FINITEL */ 1491 1492 /* Define to 1 if you have the `_floorf' function. */ 1493 /* #undef _GLIBCXX_HAVE__FLOORF */ 1494 1495 /* Define to 1 if you have the `_floorl' function. */ 1496 /* #undef _GLIBCXX_HAVE__FLOORL */ 1497 1498 /* Define to 1 if you have the `_fmodf' function. */ 1499 /* #undef _GLIBCXX_HAVE__FMODF */ 1500 1501 /* Define to 1 if you have the `_fmodl' function. */ 1502 /* #undef _GLIBCXX_HAVE__FMODL */ 1503 1504 /* Define to 1 if you have the `_fpclass' function. */ 1505 /* #undef _GLIBCXX_HAVE__FPCLASS */ 1506 1507 /* Define to 1 if you have the `_frexpf' function. */ 1508 /* #undef _GLIBCXX_HAVE__FREXPF */ 1509 1510 /* Define to 1 if you have the `_frexpl' function. */ 1511 /* #undef _GLIBCXX_HAVE__FREXPL */ 1512 1513 /* Define to 1 if you have the `_hypot' function. */ 1514 /* #undef _GLIBCXX_HAVE__HYPOT */ 1515 1516 /* Define to 1 if you have the `_hypotf' function. */ 1517 /* #undef _GLIBCXX_HAVE__HYPOTF */ 1518 1519 /* Define to 1 if you have the `_hypotl' function. */ 1520 /* #undef _GLIBCXX_HAVE__HYPOTL */ 1521 1522 /* Define to 1 if you have the `_isinf' function. */ 1523 /* #undef _GLIBCXX_HAVE__ISINF */ 1524 1525 /* Define to 1 if you have the `_isinff' function. */ 1526 /* #undef _GLIBCXX_HAVE__ISINFF */ 1527 1528 /* Define to 1 if you have the `_isinfl' function. */ 1529 /* #undef _GLIBCXX_HAVE__ISINFL */ 1530 1531 /* Define to 1 if you have the `_isnan' function. */ 1532 /* #undef _GLIBCXX_HAVE__ISNAN */ 1533 1534 /* Define to 1 if you have the `_isnanf' function. */ 1535 /* #undef _GLIBCXX_HAVE__ISNANF */ 1536 1537 /* Define to 1 if you have the `_isnanl' function. */ 1538 /* #undef _GLIBCXX_HAVE__ISNANL */ 1539 1540 /* Define to 1 if you have the `_ldexpf' function. */ 1541 /* #undef _GLIBCXX_HAVE__LDEXPF */ 1542 1543 /* Define to 1 if you have the `_ldexpl' function. */ 1544 /* #undef _GLIBCXX_HAVE__LDEXPL */ 1545 1546 /* Define to 1 if you have the `_log10f' function. */ 1547 /* #undef _GLIBCXX_HAVE__LOG10F */ 1548 1549 /* Define to 1 if you have the `_log10l' function. */ 1550 /* #undef _GLIBCXX_HAVE__LOG10L */ 1551 1552 /* Define to 1 if you have the `_logf' function. */ 1553 /* #undef _GLIBCXX_HAVE__LOGF */ 1554 1555 /* Define to 1 if you have the `_logl' function. */ 1556 /* #undef _GLIBCXX_HAVE__LOGL */ 1557 1558 /* Define to 1 if you have the `_modf' function. */ 1559 /* #undef _GLIBCXX_HAVE__MODF */ 1560 1561 /* Define to 1 if you have the `_modff' function. */ 1562 /* #undef _GLIBCXX_HAVE__MODFF */ 1563 1564 /* Define to 1 if you have the `_modfl' function. */ 1565 /* #undef _GLIBCXX_HAVE__MODFL */ 1566 1567 /* Define to 1 if you have the `_powf' function. */ 1568 /* #undef _GLIBCXX_HAVE__POWF */ 1569 1570 /* Define to 1 if you have the `_powl' function. */ 1571 /* #undef _GLIBCXX_HAVE__POWL */ 1572 1573 /* Define to 1 if you have the `_qfpclass' function. */ 1574 /* #undef _GLIBCXX_HAVE__QFPCLASS */ 1575 1576 /* Define to 1 if you have the `_sincos' function. */ 1577 /* #undef _GLIBCXX_HAVE__SINCOS */ 1578 1579 /* Define to 1 if you have the `_sincosf' function. */ 1580 /* #undef _GLIBCXX_HAVE__SINCOSF */ 1581 1582 /* Define to 1 if you have the `_sincosl' function. */ 1583 /* #undef _GLIBCXX_HAVE__SINCOSL */ 1584 1585 /* Define to 1 if you have the `_sinf' function. */ 1586 /* #undef _GLIBCXX_HAVE__SINF */ 1587 1588 /* Define to 1 if you have the `_sinhf' function. */ 1589 /* #undef _GLIBCXX_HAVE__SINHF */ 1590 1591 /* Define to 1 if you have the `_sinhl' function. */ 1592 /* #undef _GLIBCXX_HAVE__SINHL */ 1593 1594 /* Define to 1 if you have the `_sinl' function. */ 1595 /* #undef _GLIBCXX_HAVE__SINL */ 1596 1597 /* Define to 1 if you have the `_sqrtf' function. */ 1598 /* #undef _GLIBCXX_HAVE__SQRTF */ 1599 1600 /* Define to 1 if you have the `_sqrtl' function. */ 1601 /* #undef _GLIBCXX_HAVE__SQRTL */ 1602 1603 /* Define to 1 if you have the `_tanf' function. */ 1604 /* #undef _GLIBCXX_HAVE__TANF */ 1605 1606 /* Define to 1 if you have the `_tanhf' function. */ 1607 /* #undef _GLIBCXX_HAVE__TANHF */ 1608 1609 /* Define to 1 if you have the `_tanhl' function. */ 1610 /* #undef _GLIBCXX_HAVE__TANHL */ 1611 1612 /* Define to 1 if you have the `_tanl' function. */ 1613 /* #undef _GLIBCXX_HAVE__TANL */ 1614 1615 /* Define to 1 if you have the `_wfopen' function. */ 1616 /* #undef _GLIBCXX_HAVE__WFOPEN */ 1617 1618 /* Define to 1 if you have the `__cxa_thread_atexit' function. */ 1619 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT */ 1620 1621 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */ 1622 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1 1623 1624 /* Define as const if the declaration of iconv() needs const. */ 1625 #define _GLIBCXX_ICONV_CONST 1626 1627 /* Define to the sub-directory in which libtool stores uninstalled libraries. 1628 */ 1629 #define _GLIBCXX_LT_OBJDIR ".libs/" 1630 1631 /* Name of package */ 1632 /* #undef _GLIBCXX_PACKAGE */ 1633 1634 /* Define to the address where bug reports for this package should be sent. */ 1635 #define _GLIBCXX_PACKAGE_BUGREPORT "" 1636 1637 /* Define to the full name of this package. */ 1638 #define _GLIBCXX_PACKAGE_NAME "package-unused" 1639 1640 /* Define to the full name and version of this package. */ 1641 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 1642 1643 /* Define to the one symbol short name of this package. */ 1644 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 1645 1646 /* Define to the home page for this package. */ 1647 #define _GLIBCXX_PACKAGE_URL "" 1648 1649 /* Define to the version of this package. */ 1650 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 1651 1652 /* Define to 1 if you have the ANSI C header files. */ 1653 #define _GLIBCXX_STDC_HEADERS 1 1654 1655 /* Version number of package */ 1656 /* #undef _GLIBCXX_VERSION */ 1657 1658 /* Enable large inode numbers on Mac OS X 10.5. */ 1659 #ifndef _GLIBCXX_DARWIN_USE_64_BIT_INODE 1660 # define _GLIBCXX_DARWIN_USE_64_BIT_INODE 1 1661 #endif 1662 1663 /* Number of bits in a file offset, on hosts where this is settable. */ 1664 /* #undef _GLIBCXX_FILE_OFFSET_BITS */ 1665 1666 /* Define if C99 functions in
should be used in
for 1667 C++11. Using compiler builtins for these functions requires corresponding 1668 C99 library functions to be present. */ 1669 #define _GLIBCXX11_USE_C99_COMPLEX 1 1670 1671 /* Define if C99 functions or macros in
should be imported in
1672 in namespace std for C++11. */ 1673 #define _GLIBCXX11_USE_C99_MATH 1 1674 1675 /* Define if C99 functions or macros in
should be imported in 1676
in namespace std for C++11. */ 1677 #define _GLIBCXX11_USE_C99_STDIO 1 1678 1679 /* Define if C99 functions or macros in
should be imported in 1680
in namespace std for C++11. */ 1681 #define _GLIBCXX11_USE_C99_STDLIB 1 1682 1683 /* Define if C99 functions or macros in
should be imported in 1684
in namespace std for C++11. */ 1685 #define _GLIBCXX11_USE_C99_WCHAR 1 1686 1687 /* Define if C99 functions in
should be used in
for 1688 C++98. Using compiler builtins for these functions requires corresponding 1689 C99 library functions to be present. */ 1690 #define _GLIBCXX98_USE_C99_COMPLEX 1 1691 1692 /* Define if C99 functions or macros in
should be imported in
1693 in namespace std for C++98. */ 1694 #define _GLIBCXX98_USE_C99_MATH 1 1695 1696 /* Define if C99 functions or macros in
should be imported in 1697
in namespace std for C++98. */ 1698 #define _GLIBCXX98_USE_C99_STDIO 1 1699 1700 /* Define if C99 functions or macros in
should be imported in 1701
in namespace std for C++98. */ 1702 #define _GLIBCXX98_USE_C99_STDLIB 1 1703 1704 /* Define if C99 functions or macros in
should be imported in 1705
in namespace std for C++98. */ 1706 #define _GLIBCXX98_USE_C99_WCHAR 1 1707 1708 /* Define if the compiler supports C++11 atomics. */ 1709 #define _GLIBCXX_ATOMIC_BUILTINS 1 1710 1711 /* Define if global objects can be aligned to 1712 std::hardware_destructive_interference_size. */ 1713 #define _GLIBCXX_CAN_ALIGNAS_DESTRUCTIVE_SIZE 1 1714 1715 /* Define to use concept checking code from the boost libraries. */ 1716 /* #undef _GLIBCXX_CONCEPT_CHECKS */ 1717 1718 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, 1719 undefined for platform defaults */ 1720 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0 1721 1722 /* Define if gthreads library is available. */ 1723 #define _GLIBCXX_HAS_GTHREADS 1 1724 1725 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ 1726 #define _GLIBCXX_HOSTED __STDC_HOSTED__ 1727 1728 /* Define if compatibility should be provided for alternative 128-bit long 1729 double formats. */ 1730 1731 /* Define if compatibility should be provided for -mlong-double-64. */ 1732 1733 /* Define to the letter to which size_t is mangled. */ 1734 #define _GLIBCXX_MANGLE_SIZE_T m 1735 1736 /* Define if C99 llrint and llround functions are missing from
. */ 1737 /* #undef _GLIBCXX_NO_C99_ROUNDING_FUNCS */ 1738 1739 /* Defined if no way to sleep is available. */ 1740 /* #undef _GLIBCXX_NO_SLEEP */ 1741 1742 /* Define if ptrdiff_t is int. */ 1743 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */ 1744 1745 /* Define if using setrlimit to set resource limits during "make check" */ 1746 #define _GLIBCXX_RES_LIMITS 1 1747 1748 /* Define if size_t is unsigned int. */ 1749 /* #undef _GLIBCXX_SIZE_T_IS_UINT */ 1750 1751 /* Define if static tzdata should be compiled into the library. */ 1752 #define _GLIBCXX_STATIC_TZDATA 1 1753 1754 /* Define to the value of the EOF integer constant. */ 1755 #define _GLIBCXX_STDIO_EOF -1 1756 1757 /* Define to the value of the SEEK_CUR integer constant. */ 1758 #define _GLIBCXX_STDIO_SEEK_CUR 1 1759 1760 /* Define to the value of the SEEK_END integer constant. */ 1761 #define _GLIBCXX_STDIO_SEEK_END 2 1762 1763 /* Define to use symbol versioning in the shared library. */ 1764 #define _GLIBCXX_SYMVER 1 1765 1766 /* Define to use darwin versioning in the shared library. */ 1767 /* #undef _GLIBCXX_SYMVER_DARWIN */ 1768 1769 /* Define to use GNU versioning in the shared library. */ 1770 #define _GLIBCXX_SYMVER_GNU 1 1771 1772 /* Define to use GNU namespace versioning in the shared library. */ 1773 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */ 1774 1775 /* Define to use Sun versioning in the shared library. */ 1776 /* #undef _GLIBCXX_SYMVER_SUN */ 1777 1778 /* Define if C11 functions in
should be imported into namespace std 1779 in
. */ 1780 #define _GLIBCXX_USE_C11_UCHAR_CXX11 1 1781 1782 /* Define if C99 functions or macros from
,
,
, 1783
, and
can be used or exposed. */ 1784 #define _GLIBCXX_USE_C99 1 1785 1786 /* Define if C99 functions in
should be used in
. 1787 Using compiler builtins for these functions requires corresponding C99 1788 library functions to be present. */ 1789 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 1790 1791 /* Define if C99 functions in
should be imported in
in 1792 namespace std::tr1. */ 1793 #define _GLIBCXX_USE_C99_CTYPE_TR1 1 1794 1795 /* Define if C99 functions in
should be imported in
in 1796 namespace std::tr1. */ 1797 #define _GLIBCXX_USE_C99_FENV_TR1 1 1798 1799 /* Define if C99 functions in
should be imported in 1800
in namespace std::tr1. */ 1801 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 1802 1803 /* Define if wchar_t C99 functions in
should be imported in 1804
in namespace std::tr1. */ 1805 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 1806 1807 /* Define if C99 functions or macros in
should be imported in 1808
in namespace std::tr1. */ 1809 #define _GLIBCXX_USE_C99_MATH_TR1 1 1810 1811 /* Define if C99 types in
should be imported in
in 1812 namespace std::tr1. */ 1813 #define _GLIBCXX_USE_C99_STDINT_TR1 1 1814 1815 /* Define if usable chdir is available in
. */ 1816 #define _GLIBCXX_USE_CHDIR 1 1817 1818 /* Define if usable chmod is available in
. */ 1819 #define _GLIBCXX_USE_CHMOD 1 1820 1821 /* Defined if clock_gettime syscall has monotonic and realtime clock support. 1822 */ 1823 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */ 1824 1825 /* Defined if clock_gettime has monotonic clock support. */ 1826 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1 1827 1828 /* Defined if clock_gettime has realtime clock support. */ 1829 #define _GLIBCXX_USE_CLOCK_REALTIME 1 1830 1831 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on 1832 this host. */ 1833 #define _GLIBCXX_USE_DECIMAL_FLOAT 1 1834 1835 /* Define if /dev/random and /dev/urandom are available for 1836 std::random_device. */ 1837 #define _GLIBCXX_USE_DEV_RANDOM 1 1838 1839 /* Define if fchmod is available in
. */ 1840 #define _GLIBCXX_USE_FCHMOD 1 1841 1842 /* Define if fchmodat is available in
. */ 1843 #define _GLIBCXX_USE_FCHMODAT 1 1844 1845 /* Define if fseeko and ftello are available. */ 1846 #define _GLIBCXX_USE_FSEEKO_FTELLO 1 1847 1848 /* Define if usable getcwd is available in
. */ 1849 #define _GLIBCXX_USE_GETCWD 1 1850 1851 /* Defined if gettimeofday is available. */ 1852 #define _GLIBCXX_USE_GETTIMEOFDAY 1 1853 1854 /* Define if get_nprocs is available in
. */ 1855 #define _GLIBCXX_USE_GET_NPROCS 1 1856 1857 /* Define if init_priority should be used for iostream initialization. */ 1858 #define _GLIBCXX_USE_INIT_PRIORITY_ATTRIBUTE 1 1859 1860 /* Define if LFS support is available. */ 1861 #define _GLIBCXX_USE_LFS 1 1862 1863 /* Define if code specialized for long long should be used. */ 1864 #define _GLIBCXX_USE_LONG_LONG 1 1865 1866 /* Define if lstat is available in
. */ 1867 #define _GLIBCXX_USE_LSTAT 1 1868 1869 /* Define if usable mkdir is available in
. */ 1870 #define _GLIBCXX_USE_MKDIR 1 1871 1872 /* Defined if nanosleep is available. */ 1873 #define _GLIBCXX_USE_NANOSLEEP 1 1874 1875 /* Define if NLS translations are to be used. */ 1876 #define _GLIBCXX_USE_NLS 1 1877 1878 /* Define if pthreads_num_processors_np is available in
. */ 1879 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */ 1880 1881 /* Define if pthread_cond_clockwait is available in
. */ 1882 #define _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT 1 1883 1884 /* Define if pthread_mutex_clocklock is available in
. */ 1885 #define _GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK 1 1886 1887 /* Define if pthread_rwlock_clockrdlock and pthread_rwlock_clockwrlock are 1888 available in
. */ 1889 #define _GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK 1 1890 1891 /* Define if POSIX read/write locks are available in
. */ 1892 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1 1893 1894 /* Define if /dev/random and /dev/urandom are available for the random_device 1895 of TR1 (Chapter 5.1). */ 1896 #define _GLIBCXX_USE_RANDOM_TR1 1 1897 1898 /* Define if usable realpath is available in
. */ 1899 #define _GLIBCXX_USE_REALPATH 1 1900 1901 /* Defined if sched_yield is available. */ 1902 #define _GLIBCXX_USE_SCHED_YIELD 1 1903 1904 /* Define if _SC_NPROCESSORS_ONLN is available in
. */ 1905 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1 1906 1907 /* Define if _SC_NPROC_ONLN is available in
. */ 1908 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */ 1909 1910 /* Define if sendfile is available in
. */ 1911 #define _GLIBCXX_USE_SENDFILE 1 1912 1913 /* Define to restrict std::__basic_file<> to stdio APIs. */ 1914 /* #undef _GLIBCXX_USE_STDIO_PURE */ 1915 1916 /* Define if struct stat has timespec members. */ 1917 #define _GLIBCXX_USE_ST_MTIM 1 1918 1919 /* Define if sysctl(), CTL_HW and HW_NCPU are available in
. */ 1920 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */ 1921 1922 /* Define if obsolescent tmpnam is available in
. */ 1923 #define _GLIBCXX_USE_TMPNAM 1 1924 1925 /* Define if c8rtomb and mbrtoc8 functions in
should be imported 1926 into namespace std in
for C++20. */ 1927 #define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20 1 1928 1929 /* Define if c8rtomb and mbrtoc8 functions in
should be imported 1930 into namespace std in
for -fchar8_t. */ 1931 #define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T 1 1932 1933 /* Define if utime is available in
. */ 1934 #define _GLIBCXX_USE_UTIME 1 1935 1936 /* Define if utimensat and UTIME_OMIT are available in
and 1937 AT_FDCWD in
. */ 1938 #define _GLIBCXX_USE_UTIMENSAT 1 1939 1940 /* Define if code specialized for wchar_t should be used. */ 1941 #define _GLIBCXX_USE_WCHAR_T 1 1942 1943 /* Defined if Sleep exists. */ 1944 /* #undef _GLIBCXX_USE_WIN32_SLEEP */ 1945 1946 /* Define to 1 if a verbose library is built, or 0 otherwise. */ 1947 #define _GLIBCXX_VERBOSE 1 1948 1949 /* Defined if as can handle rdrand. */ 1950 #define _GLIBCXX_X86_RDRAND 1 1951 1952 /* Defined if as can handle rdseed. */ 1953 #define _GLIBCXX_X86_RDSEED 1 1954 1955 /* Define if a directory should be searched for tzdata files. */ 1956 #define _GLIBCXX_ZONEINFO_DIR "/usr/share/zoneinfo" 1957 1958 /* Define to 1 if mutex_timedlock is available. */ 1959 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1 1960 1961 /* Define for large files, on AIX-style hosts. */ 1962 /* #undef _GLIBCXX_LARGE_FILES */ 1963 1964 /* Define if all C++11 floating point overloads are available in
. */ 1965 #if __cplusplus >= 201103L 1966 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */ 1967 #endif 1968 1969 /* Define if all C++11 integral type overloads are available in
. */ 1970 #if __cplusplus >= 201103L 1971 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */ 1972 #endif 1973 1974 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 1975 # define _GLIBCXX_HAVE_ACOSF 1 1976 # define acosf _acosf 1977 #endif 1978 1979 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 1980 # define _GLIBCXX_HAVE_ACOSL 1 1981 # define acosl _acosl 1982 #endif 1983 1984 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 1985 # define _GLIBCXX_HAVE_ASINF 1 1986 # define asinf _asinf 1987 #endif 1988 1989 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 1990 # define _GLIBCXX_HAVE_ASINL 1 1991 # define asinl _asinl 1992 #endif 1993 1994 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) 1995 # define _GLIBCXX_HAVE_ATAN2F 1 1996 # define atan2f _atan2f 1997 #endif 1998 1999 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) 2000 # define _GLIBCXX_HAVE_ATAN2L 1 2001 # define atan2l _atan2l 2002 #endif 2003 2004 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 2005 # define _GLIBCXX_HAVE_ATANF 1 2006 # define atanf _atanf 2007 #endif 2008 2009 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 2010 # define _GLIBCXX_HAVE_ATANL 1 2011 # define atanl _atanl 2012 #endif 2013 2014 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 2015 # define _GLIBCXX_HAVE_CEILF 1 2016 # define ceilf _ceilf 2017 #endif 2018 2019 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 2020 # define _GLIBCXX_HAVE_CEILL 1 2021 # define ceill _ceill 2022 #endif 2023 2024 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 2025 # define _GLIBCXX_HAVE_COSF 1 2026 # define cosf _cosf 2027 #endif 2028 2029 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 2030 # define _GLIBCXX_HAVE_COSHF 1 2031 # define coshf _coshf 2032 #endif 2033 2034 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 2035 # define _GLIBCXX_HAVE_COSHL 1 2036 # define coshl _coshl 2037 #endif 2038 2039 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 2040 # define _GLIBCXX_HAVE_COSL 1 2041 # define cosl _cosl 2042 #endif 2043 2044 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 2045 # define _GLIBCXX_HAVE_EXPF 1 2046 # define expf _expf 2047 #endif 2048 2049 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 2050 # define _GLIBCXX_HAVE_EXPL 1 2051 # define expl _expl 2052 #endif 2053 2054 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 2055 # define _GLIBCXX_HAVE_FABSF 1 2056 # define fabsf _fabsf 2057 #endif 2058 2059 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 2060 # define _GLIBCXX_HAVE_FABSL 1 2061 # define fabsl _fabsl 2062 #endif 2063 2064 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 2065 # define _GLIBCXX_HAVE_FINITE 1 2066 # define finite _finite 2067 #endif 2068 2069 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 2070 # define _GLIBCXX_HAVE_FINITEF 1 2071 # define finitef _finitef 2072 #endif 2073 2074 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 2075 # define _GLIBCXX_HAVE_FINITEL 1 2076 # define finitel _finitel 2077 #endif 2078 2079 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 2080 # define _GLIBCXX_HAVE_FLOORF 1 2081 # define floorf _floorf 2082 #endif 2083 2084 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 2085 # define _GLIBCXX_HAVE_FLOORL 1 2086 # define floorl _floorl 2087 #endif 2088 2089 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 2090 # define _GLIBCXX_HAVE_FMODF 1 2091 # define fmodf _fmodf 2092 #endif 2093 2094 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 2095 # define _GLIBCXX_HAVE_FMODL 1 2096 # define fmodl _fmodl 2097 #endif 2098 2099 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 2100 # define _GLIBCXX_HAVE_FPCLASS 1 2101 # define fpclass _fpclass 2102 #endif 2103 2104 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 2105 # define _GLIBCXX_HAVE_FREXPF 1 2106 # define frexpf _frexpf 2107 #endif 2108 2109 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 2110 # define _GLIBCXX_HAVE_FREXPL 1 2111 # define frexpl _frexpl 2112 #endif 2113 2114 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) 2115 # define _GLIBCXX_HAVE_HYPOT 1 2116 # define hypot _hypot 2117 #endif 2118 2119 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) 2120 # define _GLIBCXX_HAVE_HYPOTF 1 2121 # define hypotf _hypotf 2122 #endif 2123 2124 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) 2125 # define _GLIBCXX_HAVE_HYPOTL 1 2126 # define hypotl _hypotl 2127 #endif 2128 2129 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 2130 # define _GLIBCXX_HAVE_ISINF 1 2131 # define isinf _isinf 2132 #endif 2133 2134 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 2135 # define _GLIBCXX_HAVE_ISINFF 1 2136 # define isinff _isinff 2137 #endif 2138 2139 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 2140 # define _GLIBCXX_HAVE_ISINFL 1 2141 # define isinfl _isinfl 2142 #endif 2143 2144 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 2145 # define _GLIBCXX_HAVE_ISNAN 1 2146 # define isnan _isnan 2147 #endif 2148 2149 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 2150 # define _GLIBCXX_HAVE_ISNANF 1 2151 # define isnanf _isnanf 2152 #endif 2153 2154 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 2155 # define _GLIBCXX_HAVE_ISNANL 1 2156 # define isnanl _isnanl 2157 #endif 2158 2159 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 2160 # define _GLIBCXX_HAVE_LDEXPF 1 2161 # define ldexpf _ldexpf 2162 #endif 2163 2164 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 2165 # define _GLIBCXX_HAVE_LDEXPL 1 2166 # define ldexpl _ldexpl 2167 #endif 2168 2169 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 2170 # define _GLIBCXX_HAVE_LOG10F 1 2171 # define log10f _log10f 2172 #endif 2173 2174 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 2175 # define _GLIBCXX_HAVE_LOG10L 1 2176 # define log10l _log10l 2177 #endif 2178 2179 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 2180 # define _GLIBCXX_HAVE_LOGF 1 2181 # define logf _logf 2182 #endif 2183 2184 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 2185 # define _GLIBCXX_HAVE_LOGL 1 2186 # define logl _logl 2187 #endif 2188 2189 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 2190 # define _GLIBCXX_HAVE_MODF 1 2191 # define modf _modf 2192 #endif 2193 2194 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) 2195 # define _GLIBCXX_HAVE_MODFF 1 2196 # define modff _modff 2197 #endif 2198 2199 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) 2200 # define _GLIBCXX_HAVE_MODFL 1 2201 # define modfl _modfl 2202 #endif 2203 2204 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 2205 # define _GLIBCXX_HAVE_POWF 1 2206 # define powf _powf 2207 #endif 2208 2209 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 2210 # define _GLIBCXX_HAVE_POWL 1 2211 # define powl _powl 2212 #endif 2213 2214 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 2215 # define _GLIBCXX_HAVE_QFPCLASS 1 2216 # define qfpclass _qfpclass 2217 #endif 2218 2219 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 2220 # define _GLIBCXX_HAVE_SINCOS 1 2221 # define sincos _sincos 2222 #endif 2223 2224 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 2225 # define _GLIBCXX_HAVE_SINCOSF 1 2226 # define sincosf _sincosf 2227 #endif 2228 2229 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 2230 # define _GLIBCXX_HAVE_SINCOSL 1 2231 # define sincosl _sincosl 2232 #endif 2233 2234 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 2235 # define _GLIBCXX_HAVE_SINF 1 2236 # define sinf _sinf 2237 #endif 2238 2239 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 2240 # define _GLIBCXX_HAVE_SINHF 1 2241 # define sinhf _sinhf 2242 #endif 2243 2244 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 2245 # define _GLIBCXX_HAVE_SINHL 1 2246 # define sinhl _sinhl 2247 #endif 2248 2249 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 2250 # define _GLIBCXX_HAVE_SINL 1 2251 # define sinl _sinl 2252 #endif 2253 2254 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 2255 # define _GLIBCXX_HAVE_SQRTF 1 2256 # define sqrtf _sqrtf 2257 #endif 2258 2259 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 2260 # define _GLIBCXX_HAVE_SQRTL 1 2261 # define sqrtl _sqrtl 2262 #endif 2263 2264 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 2265 # define _GLIBCXX_HAVE_STRTOF 1 2266 # define strtof _strtof 2267 #endif 2268 2269 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 2270 # define _GLIBCXX_HAVE_STRTOLD 1 2271 # define strtold _strtold 2272 #endif 2273 2274 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 2275 # define _GLIBCXX_HAVE_TANF 1 2276 # define tanf _tanf 2277 #endif 2278 2279 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 2280 # define _GLIBCXX_HAVE_TANHF 1 2281 # define tanhf _tanhf 2282 #endif 2283 2284 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 2285 # define _GLIBCXX_HAVE_TANHL 1 2286 # define tanhl _tanhl 2287 #endif 2288 2289 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 2290 # define _GLIBCXX_HAVE_TANL 1 2291 # define tanl _tanl 2292 #endif 2293 2294 #endif // _GLIBCXX_CXX_CONFIG_H
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™