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