libstdc++
c++config.h
Go to the documentation of this file.
00001 // Predefined symbols and macros -*- C++ -*-
00002 
00003 // Copyright (C) 1997-2018 Free Software Foundation, Inc.
00004 //
00005 // This file is part of the GNU ISO C++ Library.  This library is free
00006 // software; you can redistribute it and/or modify it under the
00007 // terms of the GNU General Public License as published by the
00008 // Free Software Foundation; either version 3, or (at your option)
00009 // any later version.
00010 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 // GNU General Public License for more details.
00015 
00016 // Under Section 7 of GPL version 3, you are granted additional
00017 // permissions described in the GCC Runtime Library Exception, version
00018 // 3.1, as published by the Free Software Foundation.
00019 
00020 // You should have received a copy of the GNU General Public License and
00021 // a copy of the GCC Runtime Library Exception along with this program;
00022 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
00023 // <http://www.gnu.org/licenses/>.
00024 
00025 /** @file bits/c++config.h
00026  *  This is an internal header file, included by other library headers.
00027  *  Do not attempt to use it directly. @headername{iosfwd}
00028  */
00029 
00030 #ifndef _GLIBCXX_CXX_CONFIG_H
00031 #define _GLIBCXX_CXX_CONFIG_H 1
00032 
00033 // The major release number for the GCC release the C++ library belongs to.
00034 #define _GLIBCXX_RELEASE 8
00035 
00036 // The datestamp of the C++ library in compressed ISO date format.
00037 #define __GLIBCXX__ 20180905
00038 
00039 // Macros for various attributes.
00040 //   _GLIBCXX_PURE
00041 //   _GLIBCXX_CONST
00042 //   _GLIBCXX_NORETURN
00043 //   _GLIBCXX_NOTHROW
00044 //   _GLIBCXX_VISIBILITY
00045 #ifndef _GLIBCXX_PURE
00046 # define _GLIBCXX_PURE __attribute__ ((__pure__))
00047 #endif
00048 
00049 #ifndef _GLIBCXX_CONST
00050 # define _GLIBCXX_CONST __attribute__ ((__const__))
00051 #endif
00052 
00053 #ifndef _GLIBCXX_NORETURN
00054 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
00055 #endif
00056 
00057 // See below for C++
00058 #ifndef _GLIBCXX_NOTHROW
00059 # ifndef __cplusplus
00060 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
00061 # endif
00062 #endif
00063 
00064 // Macros for visibility attributes.
00065 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00066 //   _GLIBCXX_VISIBILITY
00067 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
00068 
00069 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00070 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
00071 #else
00072 // If this is not supplied by the OS-specific or CPU-specific
00073 // headers included below, it will be defined to an empty default.
00074 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
00075 #endif
00076 
00077 // Macros for deprecated attributes.
00078 //   _GLIBCXX_USE_DEPRECATED
00079 //   _GLIBCXX_DEPRECATED
00080 //   _GLIBCXX17_DEPRECATED
00081 #ifndef _GLIBCXX_USE_DEPRECATED
00082 # define _GLIBCXX_USE_DEPRECATED 1
00083 #endif
00084 
00085 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
00086 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
00087 #else
00088 # define _GLIBCXX_DEPRECATED
00089 #endif
00090 
00091 #if defined(__DEPRECATED) && (__cplusplus >= 201703L)
00092 # define _GLIBCXX17_DEPRECATED [[__deprecated__]]
00093 #else
00094 # define _GLIBCXX17_DEPRECATED
00095 #endif
00096 
00097 // Macros for ABI tag attributes.
00098 #ifndef _GLIBCXX_ABI_TAG_CXX11
00099 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
00100 #endif
00101 
00102 
00103 #if __cplusplus
00104 
00105 // Macro for constexpr, to support in mixed 03/0x mode.
00106 #ifndef _GLIBCXX_CONSTEXPR
00107 # if __cplusplus >= 201103L
00108 #  define _GLIBCXX_CONSTEXPR constexpr
00109 #  define _GLIBCXX_USE_CONSTEXPR constexpr
00110 # else
00111 #  define _GLIBCXX_CONSTEXPR
00112 #  define _GLIBCXX_USE_CONSTEXPR const
00113 # endif
00114 #endif
00115 
00116 #ifndef _GLIBCXX14_CONSTEXPR
00117 # if __cplusplus >= 201402L
00118 #  define _GLIBCXX14_CONSTEXPR constexpr
00119 # else
00120 #  define _GLIBCXX14_CONSTEXPR
00121 # endif
00122 #endif
00123 
00124 #ifndef _GLIBCXX17_CONSTEXPR
00125 # if __cplusplus > 201402L
00126 #  define _GLIBCXX17_CONSTEXPR constexpr
00127 # else
00128 #  define _GLIBCXX17_CONSTEXPR
00129 # endif
00130 #endif
00131 
00132 #ifndef _GLIBCXX17_INLINE
00133 # if __cplusplus > 201402L
00134 #  define _GLIBCXX17_INLINE inline
00135 # else
00136 #  define _GLIBCXX17_INLINE
00137 # endif
00138 #endif
00139 
00140 // Macro for noexcept, to support in mixed 03/0x mode.
00141 #ifndef _GLIBCXX_NOEXCEPT
00142 # if __cplusplus >= 201103L
00143 #  define _GLIBCXX_NOEXCEPT noexcept
00144 #  define _GLIBCXX_NOEXCEPT_IF(_COND) noexcept(_COND)
00145 #  define _GLIBCXX_USE_NOEXCEPT noexcept
00146 #  define _GLIBCXX_THROW(_EXC)
00147 # else
00148 #  define _GLIBCXX_NOEXCEPT
00149 #  define _GLIBCXX_NOEXCEPT_IF(_COND)
00150 #  define _GLIBCXX_USE_NOEXCEPT throw()
00151 #  define _GLIBCXX_THROW(_EXC) throw(_EXC)
00152 # endif
00153 #endif
00154 
00155 #ifndef _GLIBCXX_NOTHROW
00156 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
00157 #endif
00158 
00159 #ifndef _GLIBCXX_THROW_OR_ABORT
00160 # if __cpp_exceptions
00161 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
00162 # else
00163 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
00164 # endif
00165 #endif
00166 
00167 #if __cpp_noexcept_function_type
00168 #define _GLIBCXX_NOEXCEPT_PARM , bool _NE
00169 #define _GLIBCXX_NOEXCEPT_QUAL noexcept (_NE)
00170 #else
00171 #define _GLIBCXX_NOEXCEPT_PARM
00172 #define _GLIBCXX_NOEXCEPT_QUAL
00173 #endif
00174 
00175 // Macro for extern template, ie controlling template linkage via use
00176 // of extern keyword on template declaration. As documented in the g++
00177 // manual, it inhibits all implicit instantiations and is used
00178 // throughout the library to avoid multiple weak definitions for
00179 // required types that are already explicitly instantiated in the
00180 // library binary. This substantially reduces the binary size of
00181 // resulting executables.
00182 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
00183 // templates only in basic_string, thus activating its debug-mode
00184 // checks even at -O0.
00185 # define _GLIBCXX_EXTERN_TEMPLATE 1
00186 
00187 /*
00188   Outline of libstdc++ namespaces.
00189 
00190   namespace std
00191   {
00192     namespace __debug { }
00193     namespace __parallel { }
00194     namespace __profile { }
00195     namespace __cxx1998 { }
00196 
00197     namespace __detail {
00198       namespace __variant { }                           // C++17
00199     }
00200 
00201     namespace rel_ops { }
00202 
00203     namespace tr1
00204     {
00205       namespace placeholders { }
00206       namespace regex_constants { }
00207       namespace __detail { }
00208     }
00209 
00210     namespace tr2 { }
00211     
00212     namespace decimal { }
00213 
00214     namespace chrono { }                                // C++11
00215     namespace placeholders { }                          // C++11
00216     namespace regex_constants { }                       // C++11
00217     namespace this_thread { }                           // C++11
00218     inline namespace literals {                         // C++14
00219       inline namespace chrono_literals { }              // C++14
00220       inline namespace complex_literals { }             // C++14
00221       inline namespace string_literals { }              // C++14
00222       inline namespace string_view_literals { }         // C++17
00223     }
00224   }
00225 
00226   namespace abi { }
00227 
00228   namespace __gnu_cxx
00229   {
00230     namespace __detail { }
00231   }
00232 
00233   For full details see:
00234   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
00235 */
00236 namespace std
00237 {
00238   typedef __SIZE_TYPE__         size_t;
00239   typedef __PTRDIFF_TYPE__      ptrdiff_t;
00240 
00241 #if __cplusplus >= 201103L
00242   typedef decltype(nullptr)     nullptr_t;
00243 #endif
00244 }
00245 
00246 # define _GLIBCXX_USE_DUAL_ABI 1
00247 
00248 #if ! _GLIBCXX_USE_DUAL_ABI
00249 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
00250 # undef _GLIBCXX_USE_CXX11_ABI
00251 #endif
00252 
00253 #ifndef _GLIBCXX_USE_CXX11_ABI
00254 # define _GLIBCXX_USE_CXX11_ABI 0
00255 #endif
00256 
00257 #if _GLIBCXX_USE_CXX11_ABI
00258 namespace std
00259 {
00260   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
00261 }
00262 namespace __gnu_cxx
00263 {
00264   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
00265 }
00266 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
00267 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
00268 # define _GLIBCXX_END_NAMESPACE_CXX11 }
00269 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
00270 #else
00271 # define _GLIBCXX_NAMESPACE_CXX11
00272 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11
00273 # define _GLIBCXX_END_NAMESPACE_CXX11
00274 # define _GLIBCXX_DEFAULT_ABI_TAG
00275 #endif
00276 
00277 // Defined if inline namespaces are used for versioning.
00278 # define _GLIBCXX_INLINE_VERSION 0 
00279 
00280 // Inline namespace for symbol versioning.
00281 #if _GLIBCXX_INLINE_VERSION
00282 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __8 {
00283 # define _GLIBCXX_END_NAMESPACE_VERSION }
00284 
00285 namespace std
00286 {
00287 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
00288 #if __cplusplus >= 201402L
00289   inline namespace literals {
00290     inline namespace chrono_literals { }
00291     inline namespace complex_literals { }
00292     inline namespace string_literals { }
00293 #if __cplusplus > 201402L
00294     inline namespace string_view_literals { }
00295 #endif // C++17
00296   }
00297 #endif // C++14
00298 _GLIBCXX_END_NAMESPACE_VERSION
00299 }
00300 
00301 namespace __gnu_cxx
00302 {
00303 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
00304 _GLIBCXX_END_NAMESPACE_VERSION
00305 }
00306 
00307 #else
00308 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
00309 # define _GLIBCXX_END_NAMESPACE_VERSION
00310 #endif
00311 
00312 // Inline namespaces for special modes: debug, parallel, profile.
00313 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
00314     || defined(_GLIBCXX_PROFILE)
00315 namespace std
00316 {
00317 _GLIBCXX_BEGIN_NAMESPACE_VERSION
00318 
00319   // Non-inline namespace for components replaced by alternates in active mode.
00320   namespace __cxx1998
00321   {
00322 # if _GLIBCXX_USE_CXX11_ABI
00323   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
00324 # endif
00325   }
00326 
00327 _GLIBCXX_END_NAMESPACE_VERSION
00328 
00329   // Inline namespace for debug mode.
00330 # ifdef _GLIBCXX_DEBUG
00331   inline namespace __debug { }
00332 # endif
00333 
00334   // Inline namespaces for parallel mode.
00335 # ifdef _GLIBCXX_PARALLEL
00336   inline namespace __parallel { }
00337 # endif
00338 
00339   // Inline namespaces for profile mode
00340 # ifdef _GLIBCXX_PROFILE
00341   inline namespace __profile { }
00342 # endif
00343 }
00344 
00345 // Check for invalid usage and unsupported mixed-mode use.
00346 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
00347 #  error illegal use of multiple inlined namespaces
00348 # endif
00349 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
00350 #  error illegal use of multiple inlined namespaces
00351 # endif
00352 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
00353 #  error illegal use of multiple inlined namespaces
00354 # endif
00355 
00356 // Check for invalid use due to lack for weak symbols.
00357 # if __NO_INLINE__ && !__GXX_WEAK__
00358 #  warning currently using inlined namespace mode which may fail \
00359    without inlining due to lack of weak symbols
00360 # endif
00361 #endif
00362 
00363 // Macros for namespace scope. Either namespace std:: or the name
00364 // of some nested namespace within it corresponding to the active mode.
00365 // _GLIBCXX_STD_A
00366 // _GLIBCXX_STD_C
00367 //
00368 // Macros for opening/closing conditional namespaces.
00369 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
00370 // _GLIBCXX_END_NAMESPACE_ALGO
00371 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00372 // _GLIBCXX_END_NAMESPACE_CONTAINER
00373 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
00374 # define _GLIBCXX_STD_C __cxx1998
00375 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
00376          namespace _GLIBCXX_STD_C {
00377 # define _GLIBCXX_END_NAMESPACE_CONTAINER }
00378 #else
00379 # define _GLIBCXX_STD_C std
00380 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00381 # define _GLIBCXX_END_NAMESPACE_CONTAINER
00382 #endif
00383 
00384 #ifdef _GLIBCXX_PARALLEL
00385 # define _GLIBCXX_STD_A __cxx1998
00386 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
00387          namespace _GLIBCXX_STD_A {
00388 # define _GLIBCXX_END_NAMESPACE_ALGO }
00389 #else
00390 # define _GLIBCXX_STD_A std
00391 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
00392 # define _GLIBCXX_END_NAMESPACE_ALGO
00393 #endif
00394 
00395 // GLIBCXX_ABI Deprecated
00396 // Define if compatibility should be provided for -mlong-double-64.
00397 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
00398 
00399 // Inline namespace for long double 128 mode.
00400 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
00401 namespace std
00402 {
00403   inline namespace __gnu_cxx_ldbl128 { }
00404 }
00405 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
00406 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
00407 # define _GLIBCXX_END_NAMESPACE_LDBL }
00408 #else
00409 # define _GLIBCXX_NAMESPACE_LDBL
00410 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
00411 # define _GLIBCXX_END_NAMESPACE_LDBL
00412 #endif
00413 #if _GLIBCXX_USE_CXX11_ABI
00414 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11
00415 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11
00416 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11
00417 #else
00418 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL
00419 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL
00420 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL
00421 #endif
00422 
00423 // Debug Mode implies checking assertions.
00424 #if defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_ASSERTIONS)
00425 # define _GLIBCXX_ASSERTIONS 1
00426 #endif
00427 
00428 // Disable std::string explicit instantiation declarations in order to assert.
00429 #ifdef _GLIBCXX_ASSERTIONS
00430 # undef _GLIBCXX_EXTERN_TEMPLATE
00431 # define _GLIBCXX_EXTERN_TEMPLATE -1
00432 #endif
00433 
00434 // Assert.
00435 #if defined(_GLIBCXX_ASSERTIONS) \
00436   || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS)
00437 namespace std
00438 {
00439   // Avoid the use of assert, because we're trying to keep the <cassert>
00440   // include out of the mix.
00441   inline void
00442   __replacement_assert(const char* __file, int __line,
00443                        const char* __function, const char* __condition)
00444   {
00445     __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
00446                      __function, __condition);
00447     __builtin_abort();
00448   }
00449 }
00450 #define __glibcxx_assert_impl(_Condition)                                \
00451   do                                                                     \
00452   {                                                                      \
00453     if (! (_Condition))                                                  \
00454       std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
00455                                 #_Condition);                            \
00456   } while (false)
00457 #endif
00458 
00459 #if defined(_GLIBCXX_ASSERTIONS)
00460 # define __glibcxx_assert(_Condition) __glibcxx_assert_impl(_Condition)
00461 #else
00462 # define __glibcxx_assert(_Condition)
00463 #endif
00464 
00465 // Macros for race detectors.
00466 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
00467 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
00468 // atomic (lock-free) synchronization to race detectors:
00469 // the race detector will infer a happens-before arc from the former to the
00470 // latter when they share the same argument pointer.
00471 //
00472 // The most frequent use case for these macros (and the only case in the
00473 // current implementation of the library) is atomic reference counting:
00474 //   void _M_remove_reference()
00475 //   {
00476 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
00477 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
00478 //       {
00479 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
00480 //         _M_destroy(__a);
00481 //       }
00482 //   }
00483 // The annotations in this example tell the race detector that all memory
00484 // accesses occurred when the refcount was positive do not race with
00485 // memory accesses which occurred after the refcount became zero.
00486 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
00487 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
00488 #endif
00489 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
00490 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
00491 #endif
00492 
00493 // Macros for C linkage: define extern "C" linkage only when using C++.
00494 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
00495 # define _GLIBCXX_END_EXTERN_C }
00496 
00497 # define _GLIBCXX_USE_ALLOCATOR_NEW 1
00498 
00499 #else // !__cplusplus
00500 # define _GLIBCXX_BEGIN_EXTERN_C
00501 # define _GLIBCXX_END_EXTERN_C
00502 #endif
00503 
00504 
00505 // First includes.
00506 
00507 // Pick up any OS-specific definitions.
00508 #include <bits/os_defines.h>
00509 
00510 // Pick up any CPU-specific definitions.
00511 #include <bits/cpu_defines.h>
00512 
00513 // If platform uses neither visibility nor psuedo-visibility,
00514 // specify empty default for namespace annotation macros.
00515 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
00516 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
00517 #endif
00518 
00519 // Certain function definitions that are meant to be overridable from
00520 // user code are decorated with this macro.  For some targets, this
00521 // macro causes these definitions to be weak.
00522 #ifndef _GLIBCXX_WEAK_DEFINITION
00523 # define _GLIBCXX_WEAK_DEFINITION
00524 #endif
00525 
00526 // By default, we assume that __GXX_WEAK__ also means that there is support
00527 // for declaring functions as weak while not defining such functions.  This
00528 // allows for referring to functions provided by other libraries (e.g.,
00529 // libitm) without depending on them if the respective features are not used.
00530 #ifndef _GLIBCXX_USE_WEAK_REF
00531 # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__
00532 #endif
00533 
00534 // Conditionally enable annotations for the Transactional Memory TS on C++11.
00535 // Most of the following conditions are due to limitations in the current
00536 // implementation.
00537 #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI                    \
00538   && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201505L     \
00539   &&  !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF           \
00540   && _GLIBCXX_USE_ALLOCATOR_NEW
00541 #define _GLIBCXX_TXN_SAFE transaction_safe
00542 #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic
00543 #else
00544 #define _GLIBCXX_TXN_SAFE
00545 #define _GLIBCXX_TXN_SAFE_DYN
00546 #endif
00547 
00548 #if __cplusplus > 201402L
00549 // In C++17 mathematical special functions are in namespace std.
00550 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
00551 #elif __cplusplus >= 201103L && __STDCPP_WANT_MATH_SPEC_FUNCS__ != 0
00552 // For C++11 and C++14 they are in namespace std when requested.
00553 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
00554 #endif
00555 
00556 // The remainder of the prewritten config is automatic; all the
00557 // user hooks are listed above.
00558 
00559 // Create a boolean flag to be used to determine if --fast-math is set.
00560 #ifdef __FAST_MATH__
00561 # define _GLIBCXX_FAST_MATH 1
00562 #else
00563 # define _GLIBCXX_FAST_MATH 0
00564 #endif
00565 
00566 // This marks string literals in header files to be extracted for eventual
00567 // translation.  It is primarily used for messages in thrown exceptions; see
00568 // src/functexcept.cc.  We use __N because the more traditional _N is used
00569 // for something else under certain OSes (see BADNAMES).
00570 #define __N(msgid)     (msgid)
00571 
00572 // For example, <windows.h> is known to #define min and max as macros...
00573 #undef min
00574 #undef max
00575 
00576 // N.B. these _GLIBCXX_USE_C99_XXX macros are defined unconditionally
00577 // so they should be tested with #if not with #ifdef.
00578 #if __cplusplus >= 201103L
00579 # ifndef _GLIBCXX_USE_C99_MATH
00580 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH
00581 # endif
00582 # ifndef _GLIBCXX_USE_C99_COMPLEX
00583 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX
00584 # endif
00585 # ifndef _GLIBCXX_USE_C99_STDIO
00586 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO
00587 # endif
00588 # ifndef _GLIBCXX_USE_C99_STDLIB
00589 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB
00590 # endif
00591 # ifndef _GLIBCXX_USE_C99_WCHAR
00592 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR
00593 # endif
00594 #else
00595 # ifndef _GLIBCXX_USE_C99_MATH
00596 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH
00597 # endif
00598 # ifndef _GLIBCXX_USE_C99_COMPLEX
00599 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX
00600 # endif
00601 # ifndef _GLIBCXX_USE_C99_STDIO
00602 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO
00603 # endif
00604 # ifndef _GLIBCXX_USE_C99_STDLIB
00605 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB
00606 # endif
00607 # ifndef _GLIBCXX_USE_C99_WCHAR
00608 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR
00609 # endif
00610 #endif
00611 
00612 /* Define if __float128 is supported on this host. */
00613 #if defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__)
00614 #define _GLIBCXX_USE_FLOAT128 1
00615 #endif
00616 
00617 // End of prewritten config; the settings discovered at configure time follow.
00618 /* config.h.  Generated from config.h.in by configure.  */
00619 /* config.h.in.  Generated from configure.ac by autoheader.  */
00620 
00621 /* Define to 1 if you have the `acosf' function. */
00622 #define _GLIBCXX_HAVE_ACOSF 1
00623 
00624 /* Define to 1 if you have the `acosl' function. */
00625 #define _GLIBCXX_HAVE_ACOSL 1
00626 
00627 /* Define to 1 if you have the `aligned_alloc' function. */
00628 /* #undef _GLIBCXX_HAVE_ALIGNED_ALLOC */
00629 
00630 /* Define to 1 if you have the `asinf' function. */
00631 #define _GLIBCXX_HAVE_ASINF 1
00632 
00633 /* Define to 1 if you have the `asinl' function. */
00634 #define _GLIBCXX_HAVE_ASINL 1
00635 
00636 /* Define to 1 if the target assembler supports .symver directive. */
00637 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
00638 
00639 /* Define to 1 if you have the `atan2f' function. */
00640 #define _GLIBCXX_HAVE_ATAN2F 1
00641 
00642 /* Define to 1 if you have the `atan2l' function. */
00643 #define _GLIBCXX_HAVE_ATAN2L 1
00644 
00645 /* Define to 1 if you have the `atanf' function. */
00646 #define _GLIBCXX_HAVE_ATANF 1
00647 
00648 /* Define to 1 if you have the `atanl' function. */
00649 #define _GLIBCXX_HAVE_ATANL 1
00650 
00651 /* Define to 1 if you have the `at_quick_exit' function. */
00652 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
00653 
00654 /* Define to 1 if the target assembler supports thread-local storage. */
00655 /* #undef _GLIBCXX_HAVE_CC_TLS */
00656 
00657 /* Define to 1 if you have the `ceilf' function. */
00658 #define _GLIBCXX_HAVE_CEILF 1
00659 
00660 /* Define to 1 if you have the `ceill' function. */
00661 #define _GLIBCXX_HAVE_CEILL 1
00662 
00663 /* Define to 1 if you have the <complex.h> header file. */
00664 #define _GLIBCXX_HAVE_COMPLEX_H 1
00665 
00666 /* Define to 1 if you have the `cosf' function. */
00667 #define _GLIBCXX_HAVE_COSF 1
00668 
00669 /* Define to 1 if you have the `coshf' function. */
00670 #define _GLIBCXX_HAVE_COSHF 1
00671 
00672 /* Define to 1 if you have the `coshl' function. */
00673 #define _GLIBCXX_HAVE_COSHL 1
00674 
00675 /* Define to 1 if you have the `cosl' function. */
00676 #define _GLIBCXX_HAVE_COSL 1
00677 
00678 /* Define to 1 if you have the <dirent.h> header file. */
00679 #define _GLIBCXX_HAVE_DIRENT_H 1
00680 
00681 /* Define to 1 if you have the <dlfcn.h> header file. */
00682 #define _GLIBCXX_HAVE_DLFCN_H 1
00683 
00684 /* Define if EBADMSG exists. */
00685 #define _GLIBCXX_HAVE_EBADMSG 1
00686 
00687 /* Define if ECANCELED exists. */
00688 #define _GLIBCXX_HAVE_ECANCELED 1
00689 
00690 /* Define if ECHILD exists. */
00691 #define _GLIBCXX_HAVE_ECHILD 1
00692 
00693 /* Define if EIDRM exists. */
00694 #define _GLIBCXX_HAVE_EIDRM 1
00695 
00696 /* Define to 1 if you have the <endian.h> header file. */
00697 #define _GLIBCXX_HAVE_ENDIAN_H 1
00698 
00699 /* Define if ENODATA exists. */
00700 #define _GLIBCXX_HAVE_ENODATA 1
00701 
00702 /* Define if ENOLINK exists. */
00703 #define _GLIBCXX_HAVE_ENOLINK 1
00704 
00705 /* Define if ENOSPC exists. */
00706 #define _GLIBCXX_HAVE_ENOSPC 1
00707 
00708 /* Define if ENOSR exists. */
00709 #define _GLIBCXX_HAVE_ENOSR 1
00710 
00711 /* Define if ENOSTR exists. */
00712 #define _GLIBCXX_HAVE_ENOSTR 1
00713 
00714 /* Define if ENOTRECOVERABLE exists. */
00715 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
00716 
00717 /* Define if ENOTSUP exists. */
00718 #define _GLIBCXX_HAVE_ENOTSUP 1
00719 
00720 /* Define if EOVERFLOW exists. */
00721 #define _GLIBCXX_HAVE_EOVERFLOW 1
00722 
00723 /* Define if EOWNERDEAD exists. */
00724 #define _GLIBCXX_HAVE_EOWNERDEAD 1
00725 
00726 /* Define if EPERM exists. */
00727 #define _GLIBCXX_HAVE_EPERM 1
00728 
00729 /* Define if EPROTO exists. */
00730 #define _GLIBCXX_HAVE_EPROTO 1
00731 
00732 /* Define if ETIME exists. */
00733 #define _GLIBCXX_HAVE_ETIME 1
00734 
00735 /* Define if ETIMEDOUT exists. */
00736 #define _GLIBCXX_HAVE_ETIMEDOUT 1
00737 
00738 /* Define if ETXTBSY exists. */
00739 #define _GLIBCXX_HAVE_ETXTBSY 1
00740 
00741 /* Define if EWOULDBLOCK exists. */
00742 #define _GLIBCXX_HAVE_EWOULDBLOCK 1
00743 
00744 /* Define to 1 if GCC 4.6 supported std::exception_ptr for the target */
00745 #define _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 1
00746 
00747 /* Define to 1 if you have the <execinfo.h> header file. */
00748 #define _GLIBCXX_HAVE_EXECINFO_H 1
00749 
00750 /* Define to 1 if you have the `expf' function. */
00751 #define _GLIBCXX_HAVE_EXPF 1
00752 
00753 /* Define to 1 if you have the `expl' function. */
00754 #define _GLIBCXX_HAVE_EXPL 1
00755 
00756 /* Define to 1 if you have the `fabsf' function. */
00757 #define _GLIBCXX_HAVE_FABSF 1
00758 
00759 /* Define to 1 if you have the `fabsl' function. */
00760 #define _GLIBCXX_HAVE_FABSL 1
00761 
00762 /* Define to 1 if you have the <fcntl.h> header file. */
00763 #define _GLIBCXX_HAVE_FCNTL_H 1
00764 
00765 /* Define to 1 if you have the <fenv.h> header file. */
00766 #define _GLIBCXX_HAVE_FENV_H 1
00767 
00768 /* Define to 1 if you have the `finite' function. */
00769 #define _GLIBCXX_HAVE_FINITE 1
00770 
00771 /* Define to 1 if you have the `finitef' function. */
00772 #define _GLIBCXX_HAVE_FINITEF 1
00773 
00774 /* Define to 1 if you have the `finitel' function. */
00775 #define _GLIBCXX_HAVE_FINITEL 1
00776 
00777 /* Define to 1 if you have the <float.h> header file. */
00778 #define _GLIBCXX_HAVE_FLOAT_H 1
00779 
00780 /* Define to 1 if you have the `floorf' function. */
00781 #define _GLIBCXX_HAVE_FLOORF 1
00782 
00783 /* Define to 1 if you have the `floorl' function. */
00784 #define _GLIBCXX_HAVE_FLOORL 1
00785 
00786 /* Define to 1 if you have the `fmodf' function. */
00787 #define _GLIBCXX_HAVE_FMODF 1
00788 
00789 /* Define to 1 if you have the `fmodl' function. */
00790 #define _GLIBCXX_HAVE_FMODL 1
00791 
00792 /* Define to 1 if you have the `fpclass' function. */
00793 /* #undef _GLIBCXX_HAVE_FPCLASS */
00794 
00795 /* Define to 1 if you have the <fp.h> header file. */
00796 /* #undef _GLIBCXX_HAVE_FP_H */
00797 
00798 /* Define to 1 if you have the `frexpf' function. */
00799 #define _GLIBCXX_HAVE_FREXPF 1
00800 
00801 /* Define to 1 if you have the `frexpl' function. */
00802 #define _GLIBCXX_HAVE_FREXPL 1
00803 
00804 /* Define if _Unwind_GetIPInfo is available. */
00805 #define _GLIBCXX_HAVE_GETIPINFO 1
00806 
00807 /* Define if gets is available in <stdio.h> before C++14. */
00808 #define _GLIBCXX_HAVE_GETS 1
00809 
00810 /* Define to 1 if you have the `hypot' function. */
00811 #define _GLIBCXX_HAVE_HYPOT 1
00812 
00813 /* Define to 1 if you have the `hypotf' function. */
00814 #define _GLIBCXX_HAVE_HYPOTF 1
00815 
00816 /* Define to 1 if you have the `hypotl' function. */
00817 #define _GLIBCXX_HAVE_HYPOTL 1
00818 
00819 /* Define if you have the iconv() function. */
00820 #define _GLIBCXX_HAVE_ICONV 1
00821 
00822 /* Define to 1 if you have the <ieeefp.h> header file. */
00823 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00824 
00825 /* Define if int64_t is available in <stdint.h>. */
00826 #define _GLIBCXX_HAVE_INT64_T 1
00827 
00828 /* Define if int64_t is a long. */
00829 #define _GLIBCXX_HAVE_INT64_T_LONG 1
00830 
00831 /* Define if int64_t is a long long. */
00832 /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
00833 
00834 /* Define to 1 if you have the <inttypes.h> header file. */
00835 #define _GLIBCXX_HAVE_INTTYPES_H 1
00836 
00837 /* Define to 1 if you have the `isinf' function. */
00838 #define _GLIBCXX_HAVE_ISINF 1
00839 
00840 /* Define to 1 if you have the `isinff' function. */
00841 #define _GLIBCXX_HAVE_ISINFF 1
00842 
00843 /* Define to 1 if you have the `isinfl' function. */
00844 #define _GLIBCXX_HAVE_ISINFL 1
00845 
00846 /* Define to 1 if you have the `isnan' function. */
00847 #define _GLIBCXX_HAVE_ISNAN 1
00848 
00849 /* Define to 1 if you have the `isnanf' function. */
00850 #define _GLIBCXX_HAVE_ISNANF 1
00851 
00852 /* Define to 1 if you have the `isnanl' function. */
00853 #define _GLIBCXX_HAVE_ISNANL 1
00854 
00855 /* Defined if iswblank exists. */
00856 #define _GLIBCXX_HAVE_ISWBLANK 1
00857 
00858 /* Define if LC_MESSAGES is available in <locale.h>. */
00859 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00860 
00861 /* Define to 1 if you have the `ldexpf' function. */
00862 #define _GLIBCXX_HAVE_LDEXPF 1
00863 
00864 /* Define to 1 if you have the `ldexpl' function. */
00865 #define _GLIBCXX_HAVE_LDEXPL 1
00866 
00867 /* Define to 1 if you have the <libintl.h> header file. */
00868 #define _GLIBCXX_HAVE_LIBINTL_H 1
00869 
00870 /* Only used in build directory testsuite_hooks.h. */
00871 #define _GLIBCXX_HAVE_LIMIT_AS 1
00872 
00873 /* Only used in build directory testsuite_hooks.h. */
00874 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00875 
00876 /* Only used in build directory testsuite_hooks.h. */
00877 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00878 
00879 /* Only used in build directory testsuite_hooks.h. */
00880 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00881 
00882 /* Only used in build directory testsuite_hooks.h. */
00883 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00884 
00885 /* Define if futex syscall is available. */
00886 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
00887 
00888 /* Define to 1 if you have the <linux/random.h> header file. */
00889 #define _GLIBCXX_HAVE_LINUX_RANDOM_H 1
00890 
00891 /* Define to 1 if you have the <linux/types.h> header file. */
00892 #define _GLIBCXX_HAVE_LINUX_TYPES_H 1
00893 
00894 /* Define to 1 if you have the <locale.h> header file. */
00895 #define _GLIBCXX_HAVE_LOCALE_H 1
00896 
00897 /* Define to 1 if you have the `log10f' function. */
00898 #define _GLIBCXX_HAVE_LOG10F 1
00899 
00900 /* Define to 1 if you have the `log10l' function. */
00901 #define _GLIBCXX_HAVE_LOG10L 1
00902 
00903 /* Define to 1 if you have the `logf' function. */
00904 #define _GLIBCXX_HAVE_LOGF 1
00905 
00906 /* Define to 1 if you have the `logl' function. */
00907 #define _GLIBCXX_HAVE_LOGL 1
00908 
00909 /* Define to 1 if you have the <machine/endian.h> header file. */
00910 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00911 
00912 /* Define to 1 if you have the <machine/param.h> header file. */
00913 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00914 
00915 /* Define if mbstate_t exists in wchar.h. */
00916 #define _GLIBCXX_HAVE_MBSTATE_T 1
00917 
00918 /* Define to 1 if you have the `memalign' function. */
00919 #define _GLIBCXX_HAVE_MEMALIGN 1
00920 
00921 /* Define to 1 if you have the <memory.h> header file. */
00922 #define _GLIBCXX_HAVE_MEMORY_H 1
00923 
00924 /* Define to 1 if you have the `modf' function. */
00925 #define _GLIBCXX_HAVE_MODF 1
00926 
00927 /* Define to 1 if you have the `modff' function. */
00928 #define _GLIBCXX_HAVE_MODFF 1
00929 
00930 /* Define to 1 if you have the `modfl' function. */
00931 #define _GLIBCXX_HAVE_MODFL 1
00932 
00933 /* Define to 1 if you have the <nan.h> header file. */
00934 /* #undef _GLIBCXX_HAVE_NAN_H */
00935 
00936 /* Define if <math.h> defines obsolete isinf function. */
00937 #define _GLIBCXX_HAVE_OBSOLETE_ISINF 1
00938 
00939 /* Define if <math.h> defines obsolete isnan function. */
00940 #define _GLIBCXX_HAVE_OBSOLETE_ISNAN 1
00941 
00942 /* Define if poll is available in <poll.h>. */
00943 #define _GLIBCXX_HAVE_POLL 1
00944 
00945 /* Define to 1 if you have the `posix_memalign' function. */
00946 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1
00947 
00948 /* Define to 1 if you have the `powf' function. */
00949 #define _GLIBCXX_HAVE_POWF 1
00950 
00951 /* Define to 1 if you have the `powl' function. */
00952 #define _GLIBCXX_HAVE_POWL 1
00953 
00954 /* Define to 1 if you have the `qfpclass' function. */
00955 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00956 
00957 /* Define to 1 if you have the `quick_exit' function. */
00958 #define _GLIBCXX_HAVE_QUICK_EXIT 1
00959 
00960 /* Define to 1 if you have the `setenv' function. */
00961 #define _GLIBCXX_HAVE_SETENV 1
00962 
00963 /* Define to 1 if you have the `sincos' function. */
00964 #define _GLIBCXX_HAVE_SINCOS 1
00965 
00966 /* Define to 1 if you have the `sincosf' function. */
00967 #define _GLIBCXX_HAVE_SINCOSF 1
00968 
00969 /* Define to 1 if you have the `sincosl' function. */
00970 #define _GLIBCXX_HAVE_SINCOSL 1
00971 
00972 /* Define to 1 if you have the `sinf' function. */
00973 #define _GLIBCXX_HAVE_SINF 1
00974 
00975 /* Define to 1 if you have the `sinhf' function. */
00976 #define _GLIBCXX_HAVE_SINHF 1
00977 
00978 /* Define to 1 if you have the `sinhl' function. */
00979 #define _GLIBCXX_HAVE_SINHL 1
00980 
00981 /* Define to 1 if you have the `sinl' function. */
00982 #define _GLIBCXX_HAVE_SINL 1
00983 
00984 /* Defined if sleep exists. */
00985 /* #undef _GLIBCXX_HAVE_SLEEP */
00986 
00987 /* Define to 1 if you have the `sqrtf' function. */
00988 #define _GLIBCXX_HAVE_SQRTF 1
00989 
00990 /* Define to 1 if you have the `sqrtl' function. */
00991 #define _GLIBCXX_HAVE_SQRTL 1
00992 
00993 /* Define to 1 if you have the <stdalign.h> header file. */
00994 #define _GLIBCXX_HAVE_STDALIGN_H 1
00995 
00996 /* Define to 1 if you have the <stdbool.h> header file. */
00997 #define _GLIBCXX_HAVE_STDBOOL_H 1
00998 
00999 /* Define to 1 if you have the <stdint.h> header file. */
01000 #define _GLIBCXX_HAVE_STDINT_H 1
01001 
01002 /* Define to 1 if you have the <stdlib.h> header file. */
01003 #define _GLIBCXX_HAVE_STDLIB_H 1
01004 
01005 /* Define if strerror_l is available in <string.h>. */
01006 #define _GLIBCXX_HAVE_STRERROR_L 1
01007 
01008 /* Define if strerror_r is available in <string.h>. */
01009 #define _GLIBCXX_HAVE_STRERROR_R 1
01010 
01011 /* Define to 1 if you have the <strings.h> header file. */
01012 #define _GLIBCXX_HAVE_STRINGS_H 1
01013 
01014 /* Define to 1 if you have the <string.h> header file. */
01015 #define _GLIBCXX_HAVE_STRING_H 1
01016 
01017 /* Define to 1 if you have the `strtof' function. */
01018 #define _GLIBCXX_HAVE_STRTOF 1
01019 
01020 /* Define to 1 if you have the `strtold' function. */
01021 #define _GLIBCXX_HAVE_STRTOLD 1
01022 
01023 /* Define to 1 if `d_type' is a member of `struct dirent'. */
01024 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
01025 
01026 /* Define if strxfrm_l is available in <string.h>. */
01027 #define _GLIBCXX_HAVE_STRXFRM_L 1
01028 
01029 /* Define to 1 if the target runtime linker supports binding the same symbol
01030    to different versions. */
01031 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
01032 
01033 /* Define to 1 if you have the <sys/filio.h> header file. */
01034 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
01035 
01036 /* Define to 1 if you have the <sys/ioctl.h> header file. */
01037 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
01038 
01039 /* Define to 1 if you have the <sys/ipc.h> header file. */
01040 #define _GLIBCXX_HAVE_SYS_IPC_H 1
01041 
01042 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
01043 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
01044 
01045 /* Define to 1 if you have the <sys/machine.h> header file. */
01046 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
01047 
01048 /* Define to 1 if you have the <sys/param.h> header file. */
01049 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
01050 
01051 /* Define to 1 if you have the <sys/resource.h> header file. */
01052 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
01053 
01054 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
01055 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
01056 
01057 /* Define to 1 if you have the <sys/sem.h> header file. */
01058 #define _GLIBCXX_HAVE_SYS_SEM_H 1
01059 
01060 /* Define to 1 if you have the <sys/statvfs.h> header file. */
01061 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
01062 
01063 /* Define to 1 if you have the <sys/stat.h> header file. */
01064 #define _GLIBCXX_HAVE_SYS_STAT_H 1
01065 
01066 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
01067 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
01068 
01069 /* Define to 1 if you have the <sys/time.h> header file. */
01070 #define _GLIBCXX_HAVE_SYS_TIME_H 1
01071 
01072 /* Define to 1 if you have the <sys/types.h> header file. */
01073 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
01074 
01075 /* Define to 1 if you have the <sys/uio.h> header file. */
01076 #define _GLIBCXX_HAVE_SYS_UIO_H 1
01077 
01078 /* Define if S_IFREG is available in <sys/stat.h>. */
01079 /* #undef _GLIBCXX_HAVE_S_IFREG */
01080 
01081 /* Define if S_ISREG is available in <sys/stat.h>. */
01082 #define _GLIBCXX_HAVE_S_ISREG 1
01083 
01084 /* Define to 1 if you have the `tanf' function. */
01085 #define _GLIBCXX_HAVE_TANF 1
01086 
01087 /* Define to 1 if you have the `tanhf' function. */
01088 #define _GLIBCXX_HAVE_TANHF 1
01089 
01090 /* Define to 1 if you have the `tanhl' function. */
01091 #define _GLIBCXX_HAVE_TANHL 1
01092 
01093 /* Define to 1 if you have the `tanl' function. */
01094 #define _GLIBCXX_HAVE_TANL 1
01095 
01096 /* Define to 1 if you have the <tgmath.h> header file. */
01097 #define _GLIBCXX_HAVE_TGMATH_H 1
01098 
01099 /* Define to 1 if the target supports thread-local storage. */
01100 #define _GLIBCXX_HAVE_TLS 1
01101 
01102 /* Define to 1 if you have the <uchar.h> header file. */
01103 /* #undef _GLIBCXX_HAVE_UCHAR_H */
01104 
01105 /* Define to 1 if you have the <unistd.h> header file. */
01106 #define _GLIBCXX_HAVE_UNISTD_H 1
01107 
01108 /* Defined if usleep exists. */
01109 /* #undef _GLIBCXX_HAVE_USLEEP */
01110 
01111 /* Define to 1 if you have the <utime.h> header file. */
01112 #define _GLIBCXX_HAVE_UTIME_H 1
01113 
01114 /* Defined if vfwscanf exists. */
01115 #define _GLIBCXX_HAVE_VFWSCANF 1
01116 
01117 /* Defined if vswscanf exists. */
01118 #define _GLIBCXX_HAVE_VSWSCANF 1
01119 
01120 /* Defined if vwscanf exists. */
01121 #define _GLIBCXX_HAVE_VWSCANF 1
01122 
01123 /* Define to 1 if you have the <wchar.h> header file. */
01124 #define _GLIBCXX_HAVE_WCHAR_H 1
01125 
01126 /* Defined if wcstof exists. */
01127 #define _GLIBCXX_HAVE_WCSTOF 1
01128 
01129 /* Define to 1 if you have the <wctype.h> header file. */
01130 #define _GLIBCXX_HAVE_WCTYPE_H 1
01131 
01132 /* Defined if Sleep exists. */
01133 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
01134 
01135 /* Define if writev is available in <sys/uio.h>. */
01136 #define _GLIBCXX_HAVE_WRITEV 1
01137 
01138 /* Define to 1 if you have the `_acosf' function. */
01139 /* #undef _GLIBCXX_HAVE__ACOSF */
01140 
01141 /* Define to 1 if you have the `_acosl' function. */
01142 /* #undef _GLIBCXX_HAVE__ACOSL */
01143 
01144 /* Define to 1 if you have the `_aligned_malloc' function. */
01145 /* #undef _GLIBCXX_HAVE__ALIGNED_MALLOC */
01146 
01147 /* Define to 1 if you have the `_asinf' function. */
01148 /* #undef _GLIBCXX_HAVE__ASINF */
01149 
01150 /* Define to 1 if you have the `_asinl' function. */
01151 /* #undef _GLIBCXX_HAVE__ASINL */
01152 
01153 /* Define to 1 if you have the `_atan2f' function. */
01154 /* #undef _GLIBCXX_HAVE__ATAN2F */
01155 
01156 /* Define to 1 if you have the `_atan2l' function. */
01157 /* #undef _GLIBCXX_HAVE__ATAN2L */
01158 
01159 /* Define to 1 if you have the `_atanf' function. */
01160 /* #undef _GLIBCXX_HAVE__ATANF */
01161 
01162 /* Define to 1 if you have the `_atanl' function. */
01163 /* #undef _GLIBCXX_HAVE__ATANL */
01164 
01165 /* Define to 1 if you have the `_ceilf' function. */
01166 /* #undef _GLIBCXX_HAVE__CEILF */
01167 
01168 /* Define to 1 if you have the `_ceill' function. */
01169 /* #undef _GLIBCXX_HAVE__CEILL */
01170 
01171 /* Define to 1 if you have the `_cosf' function. */
01172 /* #undef _GLIBCXX_HAVE__COSF */
01173 
01174 /* Define to 1 if you have the `_coshf' function. */
01175 /* #undef _GLIBCXX_HAVE__COSHF */
01176 
01177 /* Define to 1 if you have the `_coshl' function. */
01178 /* #undef _GLIBCXX_HAVE__COSHL */
01179 
01180 /* Define to 1 if you have the `_cosl' function. */
01181 /* #undef _GLIBCXX_HAVE__COSL */
01182 
01183 /* Define to 1 if you have the `_expf' function. */
01184 /* #undef _GLIBCXX_HAVE__EXPF */
01185 
01186 /* Define to 1 if you have the `_expl' function. */
01187 /* #undef _GLIBCXX_HAVE__EXPL */
01188 
01189 /* Define to 1 if you have the `_fabsf' function. */
01190 /* #undef _GLIBCXX_HAVE__FABSF */
01191 
01192 /* Define to 1 if you have the `_fabsl' function. */
01193 /* #undef _GLIBCXX_HAVE__FABSL */
01194 
01195 /* Define to 1 if you have the `_finite' function. */
01196 /* #undef _GLIBCXX_HAVE__FINITE */
01197 
01198 /* Define to 1 if you have the `_finitef' function. */
01199 /* #undef _GLIBCXX_HAVE__FINITEF */
01200 
01201 /* Define to 1 if you have the `_finitel' function. */
01202 /* #undef _GLIBCXX_HAVE__FINITEL */
01203 
01204 /* Define to 1 if you have the `_floorf' function. */
01205 /* #undef _GLIBCXX_HAVE__FLOORF */
01206 
01207 /* Define to 1 if you have the `_floorl' function. */
01208 /* #undef _GLIBCXX_HAVE__FLOORL */
01209 
01210 /* Define to 1 if you have the `_fmodf' function. */
01211 /* #undef _GLIBCXX_HAVE__FMODF */
01212 
01213 /* Define to 1 if you have the `_fmodl' function. */
01214 /* #undef _GLIBCXX_HAVE__FMODL */
01215 
01216 /* Define to 1 if you have the `_fpclass' function. */
01217 /* #undef _GLIBCXX_HAVE__FPCLASS */
01218 
01219 /* Define to 1 if you have the `_frexpf' function. */
01220 /* #undef _GLIBCXX_HAVE__FREXPF */
01221 
01222 /* Define to 1 if you have the `_frexpl' function. */
01223 /* #undef _GLIBCXX_HAVE__FREXPL */
01224 
01225 /* Define to 1 if you have the `_hypot' function. */
01226 /* #undef _GLIBCXX_HAVE__HYPOT */
01227 
01228 /* Define to 1 if you have the `_hypotf' function. */
01229 /* #undef _GLIBCXX_HAVE__HYPOTF */
01230 
01231 /* Define to 1 if you have the `_hypotl' function. */
01232 /* #undef _GLIBCXX_HAVE__HYPOTL */
01233 
01234 /* Define to 1 if you have the `_isinf' function. */
01235 /* #undef _GLIBCXX_HAVE__ISINF */
01236 
01237 /* Define to 1 if you have the `_isinff' function. */
01238 /* #undef _GLIBCXX_HAVE__ISINFF */
01239 
01240 /* Define to 1 if you have the `_isinfl' function. */
01241 /* #undef _GLIBCXX_HAVE__ISINFL */
01242 
01243 /* Define to 1 if you have the `_isnan' function. */
01244 /* #undef _GLIBCXX_HAVE__ISNAN */
01245 
01246 /* Define to 1 if you have the `_isnanf' function. */
01247 /* #undef _GLIBCXX_HAVE__ISNANF */
01248 
01249 /* Define to 1 if you have the `_isnanl' function. */
01250 /* #undef _GLIBCXX_HAVE__ISNANL */
01251 
01252 /* Define to 1 if you have the `_ldexpf' function. */
01253 /* #undef _GLIBCXX_HAVE__LDEXPF */
01254 
01255 /* Define to 1 if you have the `_ldexpl' function. */
01256 /* #undef _GLIBCXX_HAVE__LDEXPL */
01257 
01258 /* Define to 1 if you have the `_log10f' function. */
01259 /* #undef _GLIBCXX_HAVE__LOG10F */
01260 
01261 /* Define to 1 if you have the `_log10l' function. */
01262 /* #undef _GLIBCXX_HAVE__LOG10L */
01263 
01264 /* Define to 1 if you have the `_logf' function. */
01265 /* #undef _GLIBCXX_HAVE__LOGF */
01266 
01267 /* Define to 1 if you have the `_logl' function. */
01268 /* #undef _GLIBCXX_HAVE__LOGL */
01269 
01270 /* Define to 1 if you have the `_modf' function. */
01271 /* #undef _GLIBCXX_HAVE__MODF */
01272 
01273 /* Define to 1 if you have the `_modff' function. */
01274 /* #undef _GLIBCXX_HAVE__MODFF */
01275 
01276 /* Define to 1 if you have the `_modfl' function. */
01277 /* #undef _GLIBCXX_HAVE__MODFL */
01278 
01279 /* Define to 1 if you have the `_powf' function. */
01280 /* #undef _GLIBCXX_HAVE__POWF */
01281 
01282 /* Define to 1 if you have the `_powl' function. */
01283 /* #undef _GLIBCXX_HAVE__POWL */
01284 
01285 /* Define to 1 if you have the `_qfpclass' function. */
01286 /* #undef _GLIBCXX_HAVE__QFPCLASS */
01287 
01288 /* Define to 1 if you have the `_sincos' function. */
01289 /* #undef _GLIBCXX_HAVE__SINCOS */
01290 
01291 /* Define to 1 if you have the `_sincosf' function. */
01292 /* #undef _GLIBCXX_HAVE__SINCOSF */
01293 
01294 /* Define to 1 if you have the `_sincosl' function. */
01295 /* #undef _GLIBCXX_HAVE__SINCOSL */
01296 
01297 /* Define to 1 if you have the `_sinf' function. */
01298 /* #undef _GLIBCXX_HAVE__SINF */
01299 
01300 /* Define to 1 if you have the `_sinhf' function. */
01301 /* #undef _GLIBCXX_HAVE__SINHF */
01302 
01303 /* Define to 1 if you have the `_sinhl' function. */
01304 /* #undef _GLIBCXX_HAVE__SINHL */
01305 
01306 /* Define to 1 if you have the `_sinl' function. */
01307 /* #undef _GLIBCXX_HAVE__SINL */
01308 
01309 /* Define to 1 if you have the `_sqrtf' function. */
01310 /* #undef _GLIBCXX_HAVE__SQRTF */
01311 
01312 /* Define to 1 if you have the `_sqrtl' function. */
01313 /* #undef _GLIBCXX_HAVE__SQRTL */
01314 
01315 /* Define to 1 if you have the `_tanf' function. */
01316 /* #undef _GLIBCXX_HAVE__TANF */
01317 
01318 /* Define to 1 if you have the `_tanhf' function. */
01319 /* #undef _GLIBCXX_HAVE__TANHF */
01320 
01321 /* Define to 1 if you have the `_tanhl' function. */
01322 /* #undef _GLIBCXX_HAVE__TANHL */
01323 
01324 /* Define to 1 if you have the `_tanl' function. */
01325 /* #undef _GLIBCXX_HAVE__TANL */
01326 
01327 /* Define to 1 if you have the `__cxa_thread_atexit' function. */
01328 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT */
01329 
01330 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
01331 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */
01332 
01333 /* Define as const if the declaration of iconv() needs const. */
01334 #define _GLIBCXX_ICONV_CONST 
01335 
01336 /* Define to the sub-directory in which libtool stores uninstalled libraries.
01337    */
01338 #define LT_OBJDIR ".libs/"
01339 
01340 /* Name of package */
01341 /* #undef _GLIBCXX_PACKAGE */
01342 
01343 /* Define to the address where bug reports for this package should be sent. */
01344 #define _GLIBCXX_PACKAGE_BUGREPORT ""
01345 
01346 /* Define to the full name of this package. */
01347 #define _GLIBCXX_PACKAGE_NAME "package-unused"
01348 
01349 /* Define to the full name and version of this package. */
01350 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
01351 
01352 /* Define to the one symbol short name of this package. */
01353 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
01354 
01355 /* Define to the home page for this package. */
01356 #define _GLIBCXX_PACKAGE_URL ""
01357 
01358 /* Define to the version of this package. */
01359 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
01360 
01361 /* The size of `char', as computed by sizeof. */
01362 /* #undef SIZEOF_CHAR */
01363 
01364 /* The size of `int', as computed by sizeof. */
01365 /* #undef SIZEOF_INT */
01366 
01367 /* The size of `long', as computed by sizeof. */
01368 /* #undef SIZEOF_LONG */
01369 
01370 /* The size of `short', as computed by sizeof. */
01371 /* #undef SIZEOF_SHORT */
01372 
01373 /* The size of `void *', as computed by sizeof. */
01374 /* #undef SIZEOF_VOID_P */
01375 
01376 /* Define to 1 if you have the ANSI C header files. */
01377 #define STDC_HEADERS 1
01378 
01379 /* Version number of package */
01380 /* #undef _GLIBCXX_VERSION */
01381 
01382 /* Define if C99 functions in <complex.h> should be used in <complex> for
01383    C++11. Using compiler builtins for these functions requires corresponding
01384    C99 library functions to be present. */
01385 #define _GLIBCXX11_USE_C99_COMPLEX 1
01386 
01387 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01388    in namespace std for C++11. */
01389 #define _GLIBCXX11_USE_C99_MATH 1
01390 
01391 /* Define if C99 functions or macros in <stdio.h> should be imported in
01392    <cstdio> in namespace std for C++11. */
01393 #define _GLIBCXX11_USE_C99_STDIO 1
01394 
01395 /* Define if C99 functions or macros in <stdlib.h> should be imported in
01396    <cstdlib> in namespace std for C++11. */
01397 #define _GLIBCXX11_USE_C99_STDLIB 1
01398 
01399 /* Define if C99 functions or macros in <wchar.h> should be imported in
01400    <cwchar> in namespace std for C++11. */
01401 #define _GLIBCXX11_USE_C99_WCHAR 1
01402 
01403 /* Define if C99 functions in <complex.h> should be used in <complex> for
01404    C++98. Using compiler builtins for these functions requires corresponding
01405    C99 library functions to be present. */
01406 #define _GLIBCXX98_USE_C99_COMPLEX 1
01407 
01408 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01409    in namespace std for C++98. */
01410 #define _GLIBCXX98_USE_C99_MATH 1
01411 
01412 /* Define if C99 functions or macros in <stdio.h> should be imported in
01413    <cstdio> in namespace std for C++98. */
01414 #define _GLIBCXX98_USE_C99_STDIO 1
01415 
01416 /* Define if C99 functions or macros in <stdlib.h> should be imported in
01417    <cstdlib> in namespace std for C++98. */
01418 #define _GLIBCXX98_USE_C99_STDLIB 1
01419 
01420 /* Define if C99 functions or macros in <wchar.h> should be imported in
01421    <cwchar> in namespace std for C++98. */
01422 #define _GLIBCXX98_USE_C99_WCHAR 1
01423 
01424 /* Define if the compiler supports C++11 atomics. */
01425 #define _GLIBCXX_ATOMIC_BUILTINS 1
01426 
01427 /* Define to use concept checking code from the boost libraries. */
01428 /* #undef _GLIBCXX_CONCEPT_CHECKS */
01429 
01430 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
01431    undefined for platform defaults */
01432 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
01433 
01434 /* Define if gthreads library is available. */
01435 #define _GLIBCXX_HAS_GTHREADS 1
01436 
01437 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
01438 #define _GLIBCXX_HOSTED 1
01439 
01440 /* Define if compatibility should be provided for -mlong-double-64. */
01441 
01442 /* Define to the letter to which size_t is mangled. */
01443 #define _GLIBCXX_MANGLE_SIZE_T m
01444 
01445 /* Define if C99 llrint and llround functions are missing from <math.h>. */
01446 /* #undef _GLIBCXX_NO_C99_ROUNDING_FUNCS */
01447 
01448 /* Define if ptrdiff_t is int. */
01449 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
01450 
01451 /* Define if using setrlimit to set resource limits during "make check" */
01452 #define _GLIBCXX_RES_LIMITS 1
01453 
01454 /* Define if size_t is unsigned int. */
01455 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
01456 
01457 /* Define to the value of the EOF integer constant. */
01458 #define _GLIBCXX_STDIO_EOF -1
01459 
01460 /* Define to the value of the SEEK_CUR integer constant. */
01461 #define _GLIBCXX_STDIO_SEEK_CUR 1
01462 
01463 /* Define to the value of the SEEK_END integer constant. */
01464 #define _GLIBCXX_STDIO_SEEK_END 2
01465 
01466 /* Define to use symbol versioning in the shared library. */
01467 #define _GLIBCXX_SYMVER 1
01468 
01469 /* Define to use darwin versioning in the shared library. */
01470 /* #undef _GLIBCXX_SYMVER_DARWIN */
01471 
01472 /* Define to use GNU versioning in the shared library. */
01473 #define _GLIBCXX_SYMVER_GNU 1
01474 
01475 /* Define to use GNU namespace versioning in the shared library. */
01476 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
01477 
01478 /* Define to use Sun versioning in the shared library. */
01479 /* #undef _GLIBCXX_SYMVER_SUN */
01480 
01481 /* Define if C11 functions in <uchar.h> should be imported into namespace std
01482    in <cuchar>. */
01483 /* #undef _GLIBCXX_USE_C11_UCHAR_CXX11 */
01484 
01485 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
01486    <stdio.h>, and <stdlib.h> can be used or exposed. */
01487 #define _GLIBCXX_USE_C99 1
01488 
01489 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
01490    Using compiler builtins for these functions requires corresponding C99
01491    library functions to be present. */
01492 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
01493 
01494 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
01495    namespace std::tr1. */
01496 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
01497 
01498 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
01499    namespace std::tr1. */
01500 #define _GLIBCXX_USE_C99_FENV_TR1 1
01501 
01502 /* Define if C99 functions in <inttypes.h> should be imported in
01503    <tr1/cinttypes> in namespace std::tr1. */
01504 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
01505 
01506 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
01507    <tr1/cinttypes> in namespace std::tr1. */
01508 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
01509 
01510 /* Define if C99 functions or macros in <math.h> should be imported in
01511    <tr1/cmath> in namespace std::tr1. */
01512 #define _GLIBCXX_USE_C99_MATH_TR1 1
01513 
01514 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
01515    namespace std::tr1. */
01516 #define _GLIBCXX_USE_C99_STDINT_TR1 1
01517 
01518 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
01519    */
01520 #define _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL 1
01521 
01522 /* Defined if clock_gettime has monotonic clock support. */
01523 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
01524 
01525 /* Defined if clock_gettime has realtime clock support. */
01526 #define _GLIBCXX_USE_CLOCK_REALTIME 1
01527 
01528 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
01529    this host. */
01530 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
01531 
01532 /* Define if fchmod is available in <sys/stat.h>. */
01533 #define _GLIBCXX_USE_FCHMOD 1
01534 
01535 /* Define if fchmodat is available in <sys/stat.h>. */
01536 #define _GLIBCXX_USE_FCHMODAT 1
01537 
01538 /* Defined if gettimeofday is available. */
01539 #define _GLIBCXX_USE_GETTIMEOFDAY 1
01540 
01541 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
01542 #define _GLIBCXX_USE_GET_NPROCS 1
01543 
01544 /* Define if __int128 is supported on this host. */
01545 #define _GLIBCXX_USE_INT128 1
01546 
01547 /* Define if LFS support is available. */
01548 #define _GLIBCXX_USE_LFS 1
01549 
01550 /* Define if code specialized for long long should be used. */
01551 #define _GLIBCXX_USE_LONG_LONG 1
01552 
01553 /* Defined if nanosleep is available. */
01554 #define _GLIBCXX_USE_NANOSLEEP 1
01555 
01556 /* Define if NLS translations are to be used. */
01557 #define _GLIBCXX_USE_NLS 1
01558 
01559 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
01560 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
01561 
01562 /* Define if POSIX read/write locks are available in <gthr.h>. */
01563 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
01564 
01565 /* Define if /dev/random and /dev/urandom are available for the random_device
01566    of TR1 (Chapter 5.1). */
01567 #define _GLIBCXX_USE_RANDOM_TR1 1
01568 
01569 /* Define if usable realpath is available in <stdlib.h>. */
01570 #define _GLIBCXX_USE_REALPATH 1
01571 
01572 /* Defined if sched_yield is available. */
01573 #define _GLIBCXX_USE_SCHED_YIELD 1
01574 
01575 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
01576 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
01577 
01578 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
01579 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
01580 
01581 /* Define if sendfile is available in <sys/sendfile.h>. */
01582 #define _GLIBCXX_USE_SENDFILE 1
01583 
01584 /* Define if struct stat has timespec members. */
01585 #define _GLIBCXX_USE_ST_MTIM 1
01586 
01587 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
01588 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
01589 
01590 /* Define if obsolescent tmpnam is available in <stdio.h>. */
01591 #define _GLIBCXX_USE_TMPNAM 1
01592 
01593 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
01594    AT_FDCWD in <fcntl.h>. */
01595 #define _GLIBCXX_USE_UTIMENSAT 1
01596 
01597 /* Define if code specialized for wchar_t should be used. */
01598 #define _GLIBCXX_USE_WCHAR_T 1
01599 
01600 /* Define to 1 if a verbose library is built, or 0 otherwise. */
01601 #define _GLIBCXX_VERBOSE 1
01602 
01603 /* Defined if as can handle rdrand. */
01604 #define _GLIBCXX_X86_RDRAND 1
01605 
01606 /* Define to 1 if mutex_timedlock is available. */
01607 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
01608 
01609 /* Define if all C++11 floating point overloads are available in <math.h>.  */
01610 #if __cplusplus >= 201103L
01611 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
01612 #endif
01613 
01614 /* Define if all C++11 integral type overloads are available in <math.h>.  */
01615 #if __cplusplus >= 201103L
01616 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
01617 #endif
01618 
01619 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
01620 # define _GLIBCXX_HAVE_ACOSF 1
01621 # define acosf _acosf
01622 #endif
01623 
01624 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
01625 # define _GLIBCXX_HAVE_ACOSL 1
01626 # define acosl _acosl
01627 #endif
01628 
01629 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
01630 # define _GLIBCXX_HAVE_ASINF 1
01631 # define asinf _asinf
01632 #endif
01633 
01634 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
01635 # define _GLIBCXX_HAVE_ASINL 1
01636 # define asinl _asinl
01637 #endif
01638 
01639 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
01640 # define _GLIBCXX_HAVE_ATAN2F 1
01641 # define atan2f _atan2f
01642 #endif
01643 
01644 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
01645 # define _GLIBCXX_HAVE_ATAN2L 1
01646 # define atan2l _atan2l
01647 #endif
01648 
01649 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
01650 # define _GLIBCXX_HAVE_ATANF 1
01651 # define atanf _atanf
01652 #endif
01653 
01654 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
01655 # define _GLIBCXX_HAVE_ATANL 1
01656 # define atanl _atanl
01657 #endif
01658 
01659 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
01660 # define _GLIBCXX_HAVE_CEILF 1
01661 # define ceilf _ceilf
01662 #endif
01663 
01664 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
01665 # define _GLIBCXX_HAVE_CEILL 1
01666 # define ceill _ceill
01667 #endif
01668 
01669 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
01670 # define _GLIBCXX_HAVE_COSF 1
01671 # define cosf _cosf
01672 #endif
01673 
01674 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
01675 # define _GLIBCXX_HAVE_COSHF 1
01676 # define coshf _coshf
01677 #endif
01678 
01679 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
01680 # define _GLIBCXX_HAVE_COSHL 1
01681 # define coshl _coshl
01682 #endif
01683 
01684 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
01685 # define _GLIBCXX_HAVE_COSL 1
01686 # define cosl _cosl
01687 #endif
01688 
01689 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
01690 # define _GLIBCXX_HAVE_EXPF 1
01691 # define expf _expf
01692 #endif
01693 
01694 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
01695 # define _GLIBCXX_HAVE_EXPL 1
01696 # define expl _expl
01697 #endif
01698 
01699 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
01700 # define _GLIBCXX_HAVE_FABSF 1
01701 # define fabsf _fabsf
01702 #endif
01703 
01704 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
01705 # define _GLIBCXX_HAVE_FABSL 1
01706 # define fabsl _fabsl
01707 #endif
01708 
01709 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
01710 # define _GLIBCXX_HAVE_FINITE 1
01711 # define finite _finite
01712 #endif
01713 
01714 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
01715 # define _GLIBCXX_HAVE_FINITEF 1
01716 # define finitef _finitef
01717 #endif
01718 
01719 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
01720 # define _GLIBCXX_HAVE_FINITEL 1
01721 # define finitel _finitel
01722 #endif
01723 
01724 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
01725 # define _GLIBCXX_HAVE_FLOORF 1
01726 # define floorf _floorf
01727 #endif
01728 
01729 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
01730 # define _GLIBCXX_HAVE_FLOORL 1
01731 # define floorl _floorl
01732 #endif
01733 
01734 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
01735 # define _GLIBCXX_HAVE_FMODF 1
01736 # define fmodf _fmodf
01737 #endif
01738 
01739 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
01740 # define _GLIBCXX_HAVE_FMODL 1
01741 # define fmodl _fmodl
01742 #endif
01743 
01744 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
01745 # define _GLIBCXX_HAVE_FPCLASS 1
01746 # define fpclass _fpclass
01747 #endif
01748 
01749 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
01750 # define _GLIBCXX_HAVE_FREXPF 1
01751 # define frexpf _frexpf
01752 #endif
01753 
01754 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
01755 # define _GLIBCXX_HAVE_FREXPL 1
01756 # define frexpl _frexpl
01757 #endif
01758 
01759 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
01760 # define _GLIBCXX_HAVE_HYPOT 1
01761 # define hypot _hypot
01762 #endif
01763 
01764 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
01765 # define _GLIBCXX_HAVE_HYPOTF 1
01766 # define hypotf _hypotf
01767 #endif
01768 
01769 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
01770 # define _GLIBCXX_HAVE_HYPOTL 1
01771 # define hypotl _hypotl
01772 #endif
01773 
01774 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
01775 # define _GLIBCXX_HAVE_ISINF 1
01776 # define isinf _isinf
01777 #endif
01778 
01779 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
01780 # define _GLIBCXX_HAVE_ISINFF 1
01781 # define isinff _isinff
01782 #endif
01783 
01784 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
01785 # define _GLIBCXX_HAVE_ISINFL 1
01786 # define isinfl _isinfl
01787 #endif
01788 
01789 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
01790 # define _GLIBCXX_HAVE_ISNAN 1
01791 # define isnan _isnan
01792 #endif
01793 
01794 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
01795 # define _GLIBCXX_HAVE_ISNANF 1
01796 # define isnanf _isnanf
01797 #endif
01798 
01799 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01800 # define _GLIBCXX_HAVE_ISNANL 1
01801 # define isnanl _isnanl
01802 #endif
01803 
01804 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01805 # define _GLIBCXX_HAVE_LDEXPF 1
01806 # define ldexpf _ldexpf
01807 #endif
01808 
01809 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01810 # define _GLIBCXX_HAVE_LDEXPL 1
01811 # define ldexpl _ldexpl
01812 #endif
01813 
01814 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01815 # define _GLIBCXX_HAVE_LOG10F 1
01816 # define log10f _log10f
01817 #endif
01818 
01819 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01820 # define _GLIBCXX_HAVE_LOG10L 1
01821 # define log10l _log10l
01822 #endif
01823 
01824 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01825 # define _GLIBCXX_HAVE_LOGF 1
01826 # define logf _logf
01827 #endif
01828 
01829 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01830 # define _GLIBCXX_HAVE_LOGL 1
01831 # define logl _logl
01832 #endif
01833 
01834 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01835 # define _GLIBCXX_HAVE_MODF 1
01836 # define modf _modf
01837 #endif
01838 
01839 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
01840 # define _GLIBCXX_HAVE_MODFF 1
01841 # define modff _modff
01842 #endif
01843 
01844 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
01845 # define _GLIBCXX_HAVE_MODFL 1
01846 # define modfl _modfl
01847 #endif
01848 
01849 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01850 # define _GLIBCXX_HAVE_POWF 1
01851 # define powf _powf
01852 #endif
01853 
01854 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01855 # define _GLIBCXX_HAVE_POWL 1
01856 # define powl _powl
01857 #endif
01858 
01859 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01860 # define _GLIBCXX_HAVE_QFPCLASS 1
01861 # define qfpclass _qfpclass
01862 #endif
01863 
01864 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01865 # define _GLIBCXX_HAVE_SINCOS 1
01866 # define sincos _sincos
01867 #endif
01868 
01869 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01870 # define _GLIBCXX_HAVE_SINCOSF 1
01871 # define sincosf _sincosf
01872 #endif
01873 
01874 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01875 # define _GLIBCXX_HAVE_SINCOSL 1
01876 # define sincosl _sincosl
01877 #endif
01878 
01879 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01880 # define _GLIBCXX_HAVE_SINF 1
01881 # define sinf _sinf
01882 #endif
01883 
01884 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01885 # define _GLIBCXX_HAVE_SINHF 1
01886 # define sinhf _sinhf
01887 #endif
01888 
01889 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01890 # define _GLIBCXX_HAVE_SINHL 1
01891 # define sinhl _sinhl
01892 #endif
01893 
01894 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01895 # define _GLIBCXX_HAVE_SINL 1
01896 # define sinl _sinl
01897 #endif
01898 
01899 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01900 # define _GLIBCXX_HAVE_SQRTF 1
01901 # define sqrtf _sqrtf
01902 #endif
01903 
01904 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01905 # define _GLIBCXX_HAVE_SQRTL 1
01906 # define sqrtl _sqrtl
01907 #endif
01908 
01909 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01910 # define _GLIBCXX_HAVE_STRTOF 1
01911 # define strtof _strtof
01912 #endif
01913 
01914 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01915 # define _GLIBCXX_HAVE_STRTOLD 1
01916 # define strtold _strtold
01917 #endif
01918 
01919 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01920 # define _GLIBCXX_HAVE_TANF 1
01921 # define tanf _tanf
01922 #endif
01923 
01924 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01925 # define _GLIBCXX_HAVE_TANHF 1
01926 # define tanhf _tanhf
01927 #endif
01928 
01929 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01930 # define _GLIBCXX_HAVE_TANHL 1
01931 # define tanhl _tanhl
01932 #endif
01933 
01934 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01935 # define _GLIBCXX_HAVE_TANL 1
01936 # define tanl _tanl
01937 #endif
01938 
01939 #endif // _GLIBCXX_CXX_CONFIG_H