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