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__ 20180712
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 // End of prewritten config; the settings discovered at configure time follow.
00613 /* config.h.  Generated from config.h.in by configure.  */
00614 /* config.h.in.  Generated from configure.ac by autoheader.  */
00615 
00616 /* Define to 1 if you have the `acosf' function. */
00617 #define _GLIBCXX_HAVE_ACOSF 1
00618 
00619 /* Define to 1 if you have the `acosl' function. */
00620 #define _GLIBCXX_HAVE_ACOSL 1
00621 
00622 /* Define to 1 if you have the `aligned_alloc' function. */
00623 /* #undef _GLIBCXX_HAVE_ALIGNED_ALLOC */
00624 
00625 /* Define to 1 if you have the `asinf' function. */
00626 #define _GLIBCXX_HAVE_ASINF 1
00627 
00628 /* Define to 1 if you have the `asinl' function. */
00629 #define _GLIBCXX_HAVE_ASINL 1
00630 
00631 /* Define to 1 if the target assembler supports .symver directive. */
00632 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
00633 
00634 /* Define to 1 if you have the `atan2f' function. */
00635 #define _GLIBCXX_HAVE_ATAN2F 1
00636 
00637 /* Define to 1 if you have the `atan2l' function. */
00638 #define _GLIBCXX_HAVE_ATAN2L 1
00639 
00640 /* Define to 1 if you have the `atanf' function. */
00641 #define _GLIBCXX_HAVE_ATANF 1
00642 
00643 /* Define to 1 if you have the `atanl' function. */
00644 #define _GLIBCXX_HAVE_ATANL 1
00645 
00646 /* Define to 1 if you have the `at_quick_exit' function. */
00647 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
00648 
00649 /* Define to 1 if the target assembler supports thread-local storage. */
00650 /* #undef _GLIBCXX_HAVE_CC_TLS */
00651 
00652 /* Define to 1 if you have the `ceilf' function. */
00653 #define _GLIBCXX_HAVE_CEILF 1
00654 
00655 /* Define to 1 if you have the `ceill' function. */
00656 #define _GLIBCXX_HAVE_CEILL 1
00657 
00658 /* Define to 1 if you have the <complex.h> header file. */
00659 #define _GLIBCXX_HAVE_COMPLEX_H 1
00660 
00661 /* Define to 1 if you have the `cosf' function. */
00662 #define _GLIBCXX_HAVE_COSF 1
00663 
00664 /* Define to 1 if you have the `coshf' function. */
00665 #define _GLIBCXX_HAVE_COSHF 1
00666 
00667 /* Define to 1 if you have the `coshl' function. */
00668 #define _GLIBCXX_HAVE_COSHL 1
00669 
00670 /* Define to 1 if you have the `cosl' function. */
00671 #define _GLIBCXX_HAVE_COSL 1
00672 
00673 /* Define to 1 if you have the <dirent.h> header file. */
00674 #define _GLIBCXX_HAVE_DIRENT_H 1
00675 
00676 /* Define to 1 if you have the <dlfcn.h> header file. */
00677 #define _GLIBCXX_HAVE_DLFCN_H 1
00678 
00679 /* Define if EBADMSG exists. */
00680 #define _GLIBCXX_HAVE_EBADMSG 1
00681 
00682 /* Define if ECANCELED exists. */
00683 #define _GLIBCXX_HAVE_ECANCELED 1
00684 
00685 /* Define if ECHILD exists. */
00686 #define _GLIBCXX_HAVE_ECHILD 1
00687 
00688 /* Define if EIDRM exists. */
00689 #define _GLIBCXX_HAVE_EIDRM 1
00690 
00691 /* Define to 1 if you have the <endian.h> header file. */
00692 #define _GLIBCXX_HAVE_ENDIAN_H 1
00693 
00694 /* Define if ENODATA exists. */
00695 #define _GLIBCXX_HAVE_ENODATA 1
00696 
00697 /* Define if ENOLINK exists. */
00698 #define _GLIBCXX_HAVE_ENOLINK 1
00699 
00700 /* Define if ENOSPC exists. */
00701 #define _GLIBCXX_HAVE_ENOSPC 1
00702 
00703 /* Define if ENOSR exists. */
00704 #define _GLIBCXX_HAVE_ENOSR 1
00705 
00706 /* Define if ENOSTR exists. */
00707 #define _GLIBCXX_HAVE_ENOSTR 1
00708 
00709 /* Define if ENOTRECOVERABLE exists. */
00710 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
00711 
00712 /* Define if ENOTSUP exists. */
00713 #define _GLIBCXX_HAVE_ENOTSUP 1
00714 
00715 /* Define if EOVERFLOW exists. */
00716 #define _GLIBCXX_HAVE_EOVERFLOW 1
00717 
00718 /* Define if EOWNERDEAD exists. */
00719 #define _GLIBCXX_HAVE_EOWNERDEAD 1
00720 
00721 /* Define if EPERM exists. */
00722 #define _GLIBCXX_HAVE_EPERM 1
00723 
00724 /* Define if EPROTO exists. */
00725 #define _GLIBCXX_HAVE_EPROTO 1
00726 
00727 /* Define if ETIME exists. */
00728 #define _GLIBCXX_HAVE_ETIME 1
00729 
00730 /* Define if ETIMEDOUT exists. */
00731 #define _GLIBCXX_HAVE_ETIMEDOUT 1
00732 
00733 /* Define if ETXTBSY exists. */
00734 #define _GLIBCXX_HAVE_ETXTBSY 1
00735 
00736 /* Define if EWOULDBLOCK exists. */
00737 #define _GLIBCXX_HAVE_EWOULDBLOCK 1
00738 
00739 /* Define to 1 if GCC 4.6 supported std::exception_ptr for the target */
00740 #define _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 1
00741 
00742 /* Define to 1 if you have the <execinfo.h> header file. */
00743 #define _GLIBCXX_HAVE_EXECINFO_H 1
00744 
00745 /* Define to 1 if you have the `expf' function. */
00746 #define _GLIBCXX_HAVE_EXPF 1
00747 
00748 /* Define to 1 if you have the `expl' function. */
00749 #define _GLIBCXX_HAVE_EXPL 1
00750 
00751 /* Define to 1 if you have the `fabsf' function. */
00752 #define _GLIBCXX_HAVE_FABSF 1
00753 
00754 /* Define to 1 if you have the `fabsl' function. */
00755 #define _GLIBCXX_HAVE_FABSL 1
00756 
00757 /* Define to 1 if you have the <fcntl.h> header file. */
00758 #define _GLIBCXX_HAVE_FCNTL_H 1
00759 
00760 /* Define to 1 if you have the <fenv.h> header file. */
00761 #define _GLIBCXX_HAVE_FENV_H 1
00762 
00763 /* Define to 1 if you have the `finite' function. */
00764 #define _GLIBCXX_HAVE_FINITE 1
00765 
00766 /* Define to 1 if you have the `finitef' function. */
00767 #define _GLIBCXX_HAVE_FINITEF 1
00768 
00769 /* Define to 1 if you have the `finitel' function. */
00770 #define _GLIBCXX_HAVE_FINITEL 1
00771 
00772 /* Define to 1 if you have the <float.h> header file. */
00773 #define _GLIBCXX_HAVE_FLOAT_H 1
00774 
00775 /* Define to 1 if you have the `floorf' function. */
00776 #define _GLIBCXX_HAVE_FLOORF 1
00777 
00778 /* Define to 1 if you have the `floorl' function. */
00779 #define _GLIBCXX_HAVE_FLOORL 1
00780 
00781 /* Define to 1 if you have the `fmodf' function. */
00782 #define _GLIBCXX_HAVE_FMODF 1
00783 
00784 /* Define to 1 if you have the `fmodl' function. */
00785 #define _GLIBCXX_HAVE_FMODL 1
00786 
00787 /* Define to 1 if you have the `fpclass' function. */
00788 /* #undef _GLIBCXX_HAVE_FPCLASS */
00789 
00790 /* Define to 1 if you have the <fp.h> header file. */
00791 /* #undef _GLIBCXX_HAVE_FP_H */
00792 
00793 /* Define to 1 if you have the `frexpf' function. */
00794 #define _GLIBCXX_HAVE_FREXPF 1
00795 
00796 /* Define to 1 if you have the `frexpl' function. */
00797 #define _GLIBCXX_HAVE_FREXPL 1
00798 
00799 /* Define if _Unwind_GetIPInfo is available. */
00800 #define _GLIBCXX_HAVE_GETIPINFO 1
00801 
00802 /* Define if gets is available in <stdio.h> before C++14. */
00803 #define _GLIBCXX_HAVE_GETS 1
00804 
00805 /* Define to 1 if you have the `hypot' function. */
00806 #define _GLIBCXX_HAVE_HYPOT 1
00807 
00808 /* Define to 1 if you have the `hypotf' function. */
00809 #define _GLIBCXX_HAVE_HYPOTF 1
00810 
00811 /* Define to 1 if you have the `hypotl' function. */
00812 #define _GLIBCXX_HAVE_HYPOTL 1
00813 
00814 /* Define if you have the iconv() function. */
00815 #define _GLIBCXX_HAVE_ICONV 1
00816 
00817 /* Define to 1 if you have the <ieeefp.h> header file. */
00818 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00819 
00820 /* Define if int64_t is available in <stdint.h>. */
00821 #define _GLIBCXX_HAVE_INT64_T 1
00822 
00823 /* Define if int64_t is a long. */
00824 #define _GLIBCXX_HAVE_INT64_T_LONG 1
00825 
00826 /* Define if int64_t is a long long. */
00827 /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
00828 
00829 /* Define to 1 if you have the <inttypes.h> header file. */
00830 #define _GLIBCXX_HAVE_INTTYPES_H 1
00831 
00832 /* Define to 1 if you have the `isinf' function. */
00833 #define _GLIBCXX_HAVE_ISINF 1
00834 
00835 /* Define to 1 if you have the `isinff' function. */
00836 #define _GLIBCXX_HAVE_ISINFF 1
00837 
00838 /* Define to 1 if you have the `isinfl' function. */
00839 #define _GLIBCXX_HAVE_ISINFL 1
00840 
00841 /* Define to 1 if you have the `isnan' function. */
00842 #define _GLIBCXX_HAVE_ISNAN 1
00843 
00844 /* Define to 1 if you have the `isnanf' function. */
00845 #define _GLIBCXX_HAVE_ISNANF 1
00846 
00847 /* Define to 1 if you have the `isnanl' function. */
00848 #define _GLIBCXX_HAVE_ISNANL 1
00849 
00850 /* Defined if iswblank exists. */
00851 #define _GLIBCXX_HAVE_ISWBLANK 1
00852 
00853 /* Define if LC_MESSAGES is available in <locale.h>. */
00854 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00855 
00856 /* Define to 1 if you have the `ldexpf' function. */
00857 #define _GLIBCXX_HAVE_LDEXPF 1
00858 
00859 /* Define to 1 if you have the `ldexpl' function. */
00860 #define _GLIBCXX_HAVE_LDEXPL 1
00861 
00862 /* Define to 1 if you have the <libintl.h> header file. */
00863 #define _GLIBCXX_HAVE_LIBINTL_H 1
00864 
00865 /* Only used in build directory testsuite_hooks.h. */
00866 #define _GLIBCXX_HAVE_LIMIT_AS 1
00867 
00868 /* Only used in build directory testsuite_hooks.h. */
00869 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00870 
00871 /* Only used in build directory testsuite_hooks.h. */
00872 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00873 
00874 /* Only used in build directory testsuite_hooks.h. */
00875 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00876 
00877 /* Only used in build directory testsuite_hooks.h. */
00878 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00879 
00880 /* Define if futex syscall is available. */
00881 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
00882 
00883 /* Define to 1 if you have the <linux/random.h> header file. */
00884 #define _GLIBCXX_HAVE_LINUX_RANDOM_H 1
00885 
00886 /* Define to 1 if you have the <linux/types.h> header file. */
00887 #define _GLIBCXX_HAVE_LINUX_TYPES_H 1
00888 
00889 /* Define to 1 if you have the <locale.h> header file. */
00890 #define _GLIBCXX_HAVE_LOCALE_H 1
00891 
00892 /* Define to 1 if you have the `log10f' function. */
00893 #define _GLIBCXX_HAVE_LOG10F 1
00894 
00895 /* Define to 1 if you have the `log10l' function. */
00896 #define _GLIBCXX_HAVE_LOG10L 1
00897 
00898 /* Define to 1 if you have the `logf' function. */
00899 #define _GLIBCXX_HAVE_LOGF 1
00900 
00901 /* Define to 1 if you have the `logl' function. */
00902 #define _GLIBCXX_HAVE_LOGL 1
00903 
00904 /* Define to 1 if you have the <machine/endian.h> header file. */
00905 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00906 
00907 /* Define to 1 if you have the <machine/param.h> header file. */
00908 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00909 
00910 /* Define if mbstate_t exists in wchar.h. */
00911 #define _GLIBCXX_HAVE_MBSTATE_T 1
00912 
00913 /* Define to 1 if you have the `memalign' function. */
00914 #define _GLIBCXX_HAVE_MEMALIGN 1
00915 
00916 /* Define to 1 if you have the <memory.h> header file. */
00917 #define _GLIBCXX_HAVE_MEMORY_H 1
00918 
00919 /* Define to 1 if you have the `modf' function. */
00920 #define _GLIBCXX_HAVE_MODF 1
00921 
00922 /* Define to 1 if you have the `modff' function. */
00923 #define _GLIBCXX_HAVE_MODFF 1
00924 
00925 /* Define to 1 if you have the `modfl' function. */
00926 #define _GLIBCXX_HAVE_MODFL 1
00927 
00928 /* Define to 1 if you have the <nan.h> header file. */
00929 /* #undef _GLIBCXX_HAVE_NAN_H */
00930 
00931 /* Define if <math.h> defines obsolete isinf function. */
00932 #define _GLIBCXX_HAVE_OBSOLETE_ISINF 1
00933 
00934 /* Define if <math.h> defines obsolete isnan function. */
00935 #define _GLIBCXX_HAVE_OBSOLETE_ISNAN 1
00936 
00937 /* Define if poll is available in <poll.h>. */
00938 #define _GLIBCXX_HAVE_POLL 1
00939 
00940 /* Define to 1 if you have the `posix_memalign' function. */
00941 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1
00942 
00943 /* Define to 1 if you have the `powf' function. */
00944 #define _GLIBCXX_HAVE_POWF 1
00945 
00946 /* Define to 1 if you have the `powl' function. */
00947 #define _GLIBCXX_HAVE_POWL 1
00948 
00949 /* Define to 1 if you have the `qfpclass' function. */
00950 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00951 
00952 /* Define to 1 if you have the `quick_exit' function. */
00953 #define _GLIBCXX_HAVE_QUICK_EXIT 1
00954 
00955 /* Define to 1 if you have the `setenv' function. */
00956 #define _GLIBCXX_HAVE_SETENV 1
00957 
00958 /* Define to 1 if you have the `sincos' function. */
00959 #define _GLIBCXX_HAVE_SINCOS 1
00960 
00961 /* Define to 1 if you have the `sincosf' function. */
00962 #define _GLIBCXX_HAVE_SINCOSF 1
00963 
00964 /* Define to 1 if you have the `sincosl' function. */
00965 #define _GLIBCXX_HAVE_SINCOSL 1
00966 
00967 /* Define to 1 if you have the `sinf' function. */
00968 #define _GLIBCXX_HAVE_SINF 1
00969 
00970 /* Define to 1 if you have the `sinhf' function. */
00971 #define _GLIBCXX_HAVE_SINHF 1
00972 
00973 /* Define to 1 if you have the `sinhl' function. */
00974 #define _GLIBCXX_HAVE_SINHL 1
00975 
00976 /* Define to 1 if you have the `sinl' function. */
00977 #define _GLIBCXX_HAVE_SINL 1
00978 
00979 /* Defined if sleep exists. */
00980 /* #undef _GLIBCXX_HAVE_SLEEP */
00981 
00982 /* Define to 1 if you have the `sqrtf' function. */
00983 #define _GLIBCXX_HAVE_SQRTF 1
00984 
00985 /* Define to 1 if you have the `sqrtl' function. */
00986 #define _GLIBCXX_HAVE_SQRTL 1
00987 
00988 /* Define to 1 if you have the <stdalign.h> header file. */
00989 #define _GLIBCXX_HAVE_STDALIGN_H 1
00990 
00991 /* Define to 1 if you have the <stdbool.h> header file. */
00992 #define _GLIBCXX_HAVE_STDBOOL_H 1
00993 
00994 /* Define to 1 if you have the <stdint.h> header file. */
00995 #define _GLIBCXX_HAVE_STDINT_H 1
00996 
00997 /* Define to 1 if you have the <stdlib.h> header file. */
00998 #define _GLIBCXX_HAVE_STDLIB_H 1
00999 
01000 /* Define if strerror_l is available in <string.h>. */
01001 #define _GLIBCXX_HAVE_STRERROR_L 1
01002 
01003 /* Define if strerror_r is available in <string.h>. */
01004 #define _GLIBCXX_HAVE_STRERROR_R 1
01005 
01006 /* Define to 1 if you have the <strings.h> header file. */
01007 #define _GLIBCXX_HAVE_STRINGS_H 1
01008 
01009 /* Define to 1 if you have the <string.h> header file. */
01010 #define _GLIBCXX_HAVE_STRING_H 1
01011 
01012 /* Define to 1 if you have the `strtof' function. */
01013 #define _GLIBCXX_HAVE_STRTOF 1
01014 
01015 /* Define to 1 if you have the `strtold' function. */
01016 #define _GLIBCXX_HAVE_STRTOLD 1
01017 
01018 /* Define to 1 if `d_type' is a member of `struct dirent'. */
01019 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
01020 
01021 /* Define if strxfrm_l is available in <string.h>. */
01022 #define _GLIBCXX_HAVE_STRXFRM_L 1
01023 
01024 /* Define to 1 if the target runtime linker supports binding the same symbol
01025    to different versions. */
01026 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
01027 
01028 /* Define to 1 if you have the <sys/filio.h> header file. */
01029 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
01030 
01031 /* Define to 1 if you have the <sys/ioctl.h> header file. */
01032 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
01033 
01034 /* Define to 1 if you have the <sys/ipc.h> header file. */
01035 #define _GLIBCXX_HAVE_SYS_IPC_H 1
01036 
01037 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
01038 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
01039 
01040 /* Define to 1 if you have the <sys/machine.h> header file. */
01041 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
01042 
01043 /* Define to 1 if you have the <sys/param.h> header file. */
01044 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
01045 
01046 /* Define to 1 if you have the <sys/resource.h> header file. */
01047 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
01048 
01049 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
01050 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
01051 
01052 /* Define to 1 if you have the <sys/sem.h> header file. */
01053 #define _GLIBCXX_HAVE_SYS_SEM_H 1
01054 
01055 /* Define to 1 if you have the <sys/statvfs.h> header file. */
01056 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
01057 
01058 /* Define to 1 if you have the <sys/stat.h> header file. */
01059 #define _GLIBCXX_HAVE_SYS_STAT_H 1
01060 
01061 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
01062 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
01063 
01064 /* Define to 1 if you have the <sys/time.h> header file. */
01065 #define _GLIBCXX_HAVE_SYS_TIME_H 1
01066 
01067 /* Define to 1 if you have the <sys/types.h> header file. */
01068 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
01069 
01070 /* Define to 1 if you have the <sys/uio.h> header file. */
01071 #define _GLIBCXX_HAVE_SYS_UIO_H 1
01072 
01073 /* Define if S_IFREG is available in <sys/stat.h>. */
01074 /* #undef _GLIBCXX_HAVE_S_IFREG */
01075 
01076 /* Define if S_ISREG is available in <sys/stat.h>. */
01077 #define _GLIBCXX_HAVE_S_ISREG 1
01078 
01079 /* Define to 1 if you have the `tanf' function. */
01080 #define _GLIBCXX_HAVE_TANF 1
01081 
01082 /* Define to 1 if you have the `tanhf' function. */
01083 #define _GLIBCXX_HAVE_TANHF 1
01084 
01085 /* Define to 1 if you have the `tanhl' function. */
01086 #define _GLIBCXX_HAVE_TANHL 1
01087 
01088 /* Define to 1 if you have the `tanl' function. */
01089 #define _GLIBCXX_HAVE_TANL 1
01090 
01091 /* Define to 1 if you have the <tgmath.h> header file. */
01092 #define _GLIBCXX_HAVE_TGMATH_H 1
01093 
01094 /* Define to 1 if the target supports thread-local storage. */
01095 #define _GLIBCXX_HAVE_TLS 1
01096 
01097 /* Define to 1 if you have the <uchar.h> header file. */
01098 /* #undef _GLIBCXX_HAVE_UCHAR_H */
01099 
01100 /* Define to 1 if you have the <unistd.h> header file. */
01101 #define _GLIBCXX_HAVE_UNISTD_H 1
01102 
01103 /* Defined if usleep exists. */
01104 /* #undef _GLIBCXX_HAVE_USLEEP */
01105 
01106 /* Define to 1 if you have the <utime.h> header file. */
01107 #define _GLIBCXX_HAVE_UTIME_H 1
01108 
01109 /* Defined if vfwscanf exists. */
01110 #define _GLIBCXX_HAVE_VFWSCANF 1
01111 
01112 /* Defined if vswscanf exists. */
01113 #define _GLIBCXX_HAVE_VSWSCANF 1
01114 
01115 /* Defined if vwscanf exists. */
01116 #define _GLIBCXX_HAVE_VWSCANF 1
01117 
01118 /* Define to 1 if you have the <wchar.h> header file. */
01119 #define _GLIBCXX_HAVE_WCHAR_H 1
01120 
01121 /* Defined if wcstof exists. */
01122 #define _GLIBCXX_HAVE_WCSTOF 1
01123 
01124 /* Define to 1 if you have the <wctype.h> header file. */
01125 #define _GLIBCXX_HAVE_WCTYPE_H 1
01126 
01127 /* Defined if Sleep exists. */
01128 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
01129 
01130 /* Define if writev is available in <sys/uio.h>. */
01131 #define _GLIBCXX_HAVE_WRITEV 1
01132 
01133 /* Define to 1 if you have the `_acosf' function. */
01134 /* #undef _GLIBCXX_HAVE__ACOSF */
01135 
01136 /* Define to 1 if you have the `_acosl' function. */
01137 /* #undef _GLIBCXX_HAVE__ACOSL */
01138 
01139 /* Define to 1 if you have the `_aligned_malloc' function. */
01140 /* #undef _GLIBCXX_HAVE__ALIGNED_MALLOC */
01141 
01142 /* Define to 1 if you have the `_asinf' function. */
01143 /* #undef _GLIBCXX_HAVE__ASINF */
01144 
01145 /* Define to 1 if you have the `_asinl' function. */
01146 /* #undef _GLIBCXX_HAVE__ASINL */
01147 
01148 /* Define to 1 if you have the `_atan2f' function. */
01149 /* #undef _GLIBCXX_HAVE__ATAN2F */
01150 
01151 /* Define to 1 if you have the `_atan2l' function. */
01152 /* #undef _GLIBCXX_HAVE__ATAN2L */
01153 
01154 /* Define to 1 if you have the `_atanf' function. */
01155 /* #undef _GLIBCXX_HAVE__ATANF */
01156 
01157 /* Define to 1 if you have the `_atanl' function. */
01158 /* #undef _GLIBCXX_HAVE__ATANL */
01159 
01160 /* Define to 1 if you have the `_ceilf' function. */
01161 /* #undef _GLIBCXX_HAVE__CEILF */
01162 
01163 /* Define to 1 if you have the `_ceill' function. */
01164 /* #undef _GLIBCXX_HAVE__CEILL */
01165 
01166 /* Define to 1 if you have the `_cosf' function. */
01167 /* #undef _GLIBCXX_HAVE__COSF */
01168 
01169 /* Define to 1 if you have the `_coshf' function. */
01170 /* #undef _GLIBCXX_HAVE__COSHF */
01171 
01172 /* Define to 1 if you have the `_coshl' function. */
01173 /* #undef _GLIBCXX_HAVE__COSHL */
01174 
01175 /* Define to 1 if you have the `_cosl' function. */
01176 /* #undef _GLIBCXX_HAVE__COSL */
01177 
01178 /* Define to 1 if you have the `_expf' function. */
01179 /* #undef _GLIBCXX_HAVE__EXPF */
01180 
01181 /* Define to 1 if you have the `_expl' function. */
01182 /* #undef _GLIBCXX_HAVE__EXPL */
01183 
01184 /* Define to 1 if you have the `_fabsf' function. */
01185 /* #undef _GLIBCXX_HAVE__FABSF */
01186 
01187 /* Define to 1 if you have the `_fabsl' function. */
01188 /* #undef _GLIBCXX_HAVE__FABSL */
01189 
01190 /* Define to 1 if you have the `_finite' function. */
01191 /* #undef _GLIBCXX_HAVE__FINITE */
01192 
01193 /* Define to 1 if you have the `_finitef' function. */
01194 /* #undef _GLIBCXX_HAVE__FINITEF */
01195 
01196 /* Define to 1 if you have the `_finitel' function. */
01197 /* #undef _GLIBCXX_HAVE__FINITEL */
01198 
01199 /* Define to 1 if you have the `_floorf' function. */
01200 /* #undef _GLIBCXX_HAVE__FLOORF */
01201 
01202 /* Define to 1 if you have the `_floorl' function. */
01203 /* #undef _GLIBCXX_HAVE__FLOORL */
01204 
01205 /* Define to 1 if you have the `_fmodf' function. */
01206 /* #undef _GLIBCXX_HAVE__FMODF */
01207 
01208 /* Define to 1 if you have the `_fmodl' function. */
01209 /* #undef _GLIBCXX_HAVE__FMODL */
01210 
01211 /* Define to 1 if you have the `_fpclass' function. */
01212 /* #undef _GLIBCXX_HAVE__FPCLASS */
01213 
01214 /* Define to 1 if you have the `_frexpf' function. */
01215 /* #undef _GLIBCXX_HAVE__FREXPF */
01216 
01217 /* Define to 1 if you have the `_frexpl' function. */
01218 /* #undef _GLIBCXX_HAVE__FREXPL */
01219 
01220 /* Define to 1 if you have the `_hypot' function. */
01221 /* #undef _GLIBCXX_HAVE__HYPOT */
01222 
01223 /* Define to 1 if you have the `_hypotf' function. */
01224 /* #undef _GLIBCXX_HAVE__HYPOTF */
01225 
01226 /* Define to 1 if you have the `_hypotl' function. */
01227 /* #undef _GLIBCXX_HAVE__HYPOTL */
01228 
01229 /* Define to 1 if you have the `_isinf' function. */
01230 /* #undef _GLIBCXX_HAVE__ISINF */
01231 
01232 /* Define to 1 if you have the `_isinff' function. */
01233 /* #undef _GLIBCXX_HAVE__ISINFF */
01234 
01235 /* Define to 1 if you have the `_isinfl' function. */
01236 /* #undef _GLIBCXX_HAVE__ISINFL */
01237 
01238 /* Define to 1 if you have the `_isnan' function. */
01239 /* #undef _GLIBCXX_HAVE__ISNAN */
01240 
01241 /* Define to 1 if you have the `_isnanf' function. */
01242 /* #undef _GLIBCXX_HAVE__ISNANF */
01243 
01244 /* Define to 1 if you have the `_isnanl' function. */
01245 /* #undef _GLIBCXX_HAVE__ISNANL */
01246 
01247 /* Define to 1 if you have the `_ldexpf' function. */
01248 /* #undef _GLIBCXX_HAVE__LDEXPF */
01249 
01250 /* Define to 1 if you have the `_ldexpl' function. */
01251 /* #undef _GLIBCXX_HAVE__LDEXPL */
01252 
01253 /* Define to 1 if you have the `_log10f' function. */
01254 /* #undef _GLIBCXX_HAVE__LOG10F */
01255 
01256 /* Define to 1 if you have the `_log10l' function. */
01257 /* #undef _GLIBCXX_HAVE__LOG10L */
01258 
01259 /* Define to 1 if you have the `_logf' function. */
01260 /* #undef _GLIBCXX_HAVE__LOGF */
01261 
01262 /* Define to 1 if you have the `_logl' function. */
01263 /* #undef _GLIBCXX_HAVE__LOGL */
01264 
01265 /* Define to 1 if you have the `_modf' function. */
01266 /* #undef _GLIBCXX_HAVE__MODF */
01267 
01268 /* Define to 1 if you have the `_modff' function. */
01269 /* #undef _GLIBCXX_HAVE__MODFF */
01270 
01271 /* Define to 1 if you have the `_modfl' function. */
01272 /* #undef _GLIBCXX_HAVE__MODFL */
01273 
01274 /* Define to 1 if you have the `_powf' function. */
01275 /* #undef _GLIBCXX_HAVE__POWF */
01276 
01277 /* Define to 1 if you have the `_powl' function. */
01278 /* #undef _GLIBCXX_HAVE__POWL */
01279 
01280 /* Define to 1 if you have the `_qfpclass' function. */
01281 /* #undef _GLIBCXX_HAVE__QFPCLASS */
01282 
01283 /* Define to 1 if you have the `_sincos' function. */
01284 /* #undef _GLIBCXX_HAVE__SINCOS */
01285 
01286 /* Define to 1 if you have the `_sincosf' function. */
01287 /* #undef _GLIBCXX_HAVE__SINCOSF */
01288 
01289 /* Define to 1 if you have the `_sincosl' function. */
01290 /* #undef _GLIBCXX_HAVE__SINCOSL */
01291 
01292 /* Define to 1 if you have the `_sinf' function. */
01293 /* #undef _GLIBCXX_HAVE__SINF */
01294 
01295 /* Define to 1 if you have the `_sinhf' function. */
01296 /* #undef _GLIBCXX_HAVE__SINHF */
01297 
01298 /* Define to 1 if you have the `_sinhl' function. */
01299 /* #undef _GLIBCXX_HAVE__SINHL */
01300 
01301 /* Define to 1 if you have the `_sinl' function. */
01302 /* #undef _GLIBCXX_HAVE__SINL */
01303 
01304 /* Define to 1 if you have the `_sqrtf' function. */
01305 /* #undef _GLIBCXX_HAVE__SQRTF */
01306 
01307 /* Define to 1 if you have the `_sqrtl' function. */
01308 /* #undef _GLIBCXX_HAVE__SQRTL */
01309 
01310 /* Define to 1 if you have the `_tanf' function. */
01311 /* #undef _GLIBCXX_HAVE__TANF */
01312 
01313 /* Define to 1 if you have the `_tanhf' function. */
01314 /* #undef _GLIBCXX_HAVE__TANHF */
01315 
01316 /* Define to 1 if you have the `_tanhl' function. */
01317 /* #undef _GLIBCXX_HAVE__TANHL */
01318 
01319 /* Define to 1 if you have the `_tanl' function. */
01320 /* #undef _GLIBCXX_HAVE__TANL */
01321 
01322 /* Define to 1 if you have the `__cxa_thread_atexit' function. */
01323 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT */
01324 
01325 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
01326 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */
01327 
01328 /* Define as const if the declaration of iconv() needs const. */
01329 #define _GLIBCXX_ICONV_CONST 
01330 
01331 /* Define to the sub-directory in which libtool stores uninstalled libraries.
01332    */
01333 #define LT_OBJDIR ".libs/"
01334 
01335 /* Name of package */
01336 /* #undef _GLIBCXX_PACKAGE */
01337 
01338 /* Define to the address where bug reports for this package should be sent. */
01339 #define _GLIBCXX_PACKAGE_BUGREPORT ""
01340 
01341 /* Define to the full name of this package. */
01342 #define _GLIBCXX_PACKAGE_NAME "package-unused"
01343 
01344 /* Define to the full name and version of this package. */
01345 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
01346 
01347 /* Define to the one symbol short name of this package. */
01348 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
01349 
01350 /* Define to the home page for this package. */
01351 #define _GLIBCXX_PACKAGE_URL ""
01352 
01353 /* Define to the version of this package. */
01354 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
01355 
01356 /* The size of `char', as computed by sizeof. */
01357 /* #undef SIZEOF_CHAR */
01358 
01359 /* The size of `int', as computed by sizeof. */
01360 /* #undef SIZEOF_INT */
01361 
01362 /* The size of `long', as computed by sizeof. */
01363 /* #undef SIZEOF_LONG */
01364 
01365 /* The size of `short', as computed by sizeof. */
01366 /* #undef SIZEOF_SHORT */
01367 
01368 /* The size of `void *', as computed by sizeof. */
01369 /* #undef SIZEOF_VOID_P */
01370 
01371 /* Define to 1 if you have the ANSI C header files. */
01372 #define STDC_HEADERS 1
01373 
01374 /* Version number of package */
01375 /* #undef _GLIBCXX_VERSION */
01376 
01377 /* Define if C99 functions in <complex.h> should be used in <complex> for
01378    C++11. Using compiler builtins for these functions requires corresponding
01379    C99 library functions to be present. */
01380 #define _GLIBCXX11_USE_C99_COMPLEX 1
01381 
01382 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01383    in namespace std for C++11. */
01384 #define _GLIBCXX11_USE_C99_MATH 1
01385 
01386 /* Define if C99 functions or macros in <stdio.h> should be imported in
01387    <cstdio> in namespace std for C++11. */
01388 #define _GLIBCXX11_USE_C99_STDIO 1
01389 
01390 /* Define if C99 functions or macros in <stdlib.h> should be imported in
01391    <cstdlib> in namespace std for C++11. */
01392 #define _GLIBCXX11_USE_C99_STDLIB 1
01393 
01394 /* Define if C99 functions or macros in <wchar.h> should be imported in
01395    <cwchar> in namespace std for C++11. */
01396 #define _GLIBCXX11_USE_C99_WCHAR 1
01397 
01398 /* Define if C99 functions in <complex.h> should be used in <complex> for
01399    C++98. Using compiler builtins for these functions requires corresponding
01400    C99 library functions to be present. */
01401 #define _GLIBCXX98_USE_C99_COMPLEX 1
01402 
01403 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01404    in namespace std for C++98. */
01405 #define _GLIBCXX98_USE_C99_MATH 1
01406 
01407 /* Define if C99 functions or macros in <stdio.h> should be imported in
01408    <cstdio> in namespace std for C++98. */
01409 #define _GLIBCXX98_USE_C99_STDIO 1
01410 
01411 /* Define if C99 functions or macros in <stdlib.h> should be imported in
01412    <cstdlib> in namespace std for C++98. */
01413 #define _GLIBCXX98_USE_C99_STDLIB 1
01414 
01415 /* Define if C99 functions or macros in <wchar.h> should be imported in
01416    <cwchar> in namespace std for C++98. */
01417 #define _GLIBCXX98_USE_C99_WCHAR 1
01418 
01419 /* Define if the compiler supports C++11 atomics. */
01420 #define _GLIBCXX_ATOMIC_BUILTINS 1
01421 
01422 /* Define to use concept checking code from the boost libraries. */
01423 /* #undef _GLIBCXX_CONCEPT_CHECKS */
01424 
01425 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
01426    undefined for platform defaults */
01427 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
01428 
01429 /* Define if gthreads library is available. */
01430 #define _GLIBCXX_HAS_GTHREADS 1
01431 
01432 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
01433 #define _GLIBCXX_HOSTED 1
01434 
01435 /* Define if compatibility should be provided for -mlong-double-64. */
01436 
01437 /* Define to the letter to which size_t is mangled. */
01438 #define _GLIBCXX_MANGLE_SIZE_T m
01439 
01440 /* Define if C99 llrint and llround functions are missing from <math.h>. */
01441 /* #undef _GLIBCXX_NO_C99_ROUNDING_FUNCS */
01442 
01443 /* Define if ptrdiff_t is int. */
01444 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
01445 
01446 /* Define if using setrlimit to set resource limits during "make check" */
01447 #define _GLIBCXX_RES_LIMITS 1
01448 
01449 /* Define if size_t is unsigned int. */
01450 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
01451 
01452 /* Define to the value of the EOF integer constant. */
01453 #define _GLIBCXX_STDIO_EOF -1
01454 
01455 /* Define to the value of the SEEK_CUR integer constant. */
01456 #define _GLIBCXX_STDIO_SEEK_CUR 1
01457 
01458 /* Define to the value of the SEEK_END integer constant. */
01459 #define _GLIBCXX_STDIO_SEEK_END 2
01460 
01461 /* Define to use symbol versioning in the shared library. */
01462 #define _GLIBCXX_SYMVER 1
01463 
01464 /* Define to use darwin versioning in the shared library. */
01465 /* #undef _GLIBCXX_SYMVER_DARWIN */
01466 
01467 /* Define to use GNU versioning in the shared library. */
01468 #define _GLIBCXX_SYMVER_GNU 1
01469 
01470 /* Define to use GNU namespace versioning in the shared library. */
01471 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
01472 
01473 /* Define to use Sun versioning in the shared library. */
01474 /* #undef _GLIBCXX_SYMVER_SUN */
01475 
01476 /* Define if C11 functions in <uchar.h> should be imported into namespace std
01477    in <cuchar>. */
01478 /* #undef _GLIBCXX_USE_C11_UCHAR_CXX11 */
01479 
01480 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
01481    <stdio.h>, and <stdlib.h> can be used or exposed. */
01482 #define _GLIBCXX_USE_C99 1
01483 
01484 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
01485    Using compiler builtins for these functions requires corresponding C99
01486    library functions to be present. */
01487 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
01488 
01489 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
01490    namespace std::tr1. */
01491 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
01492 
01493 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
01494    namespace std::tr1. */
01495 #define _GLIBCXX_USE_C99_FENV_TR1 1
01496 
01497 /* Define if C99 functions in <inttypes.h> should be imported in
01498    <tr1/cinttypes> in namespace std::tr1. */
01499 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
01500 
01501 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
01502    <tr1/cinttypes> in namespace std::tr1. */
01503 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
01504 
01505 /* Define if C99 functions or macros in <math.h> should be imported in
01506    <tr1/cmath> in namespace std::tr1. */
01507 #define _GLIBCXX_USE_C99_MATH_TR1 1
01508 
01509 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
01510    namespace std::tr1. */
01511 #define _GLIBCXX_USE_C99_STDINT_TR1 1
01512 
01513 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
01514    */
01515 #define _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL 1
01516 
01517 /* Defined if clock_gettime has monotonic clock support. */
01518 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
01519 
01520 /* Defined if clock_gettime has realtime clock support. */
01521 #define _GLIBCXX_USE_CLOCK_REALTIME 1
01522 
01523 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
01524    this host. */
01525 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
01526 
01527 /* Define if fchmod is available in <sys/stat.h>. */
01528 #define _GLIBCXX_USE_FCHMOD 1
01529 
01530 /* Define if fchmodat is available in <sys/stat.h>. */
01531 #define _GLIBCXX_USE_FCHMODAT 1
01532 
01533 /* Define if __float128 is supported on this host. */
01534 #define _GLIBCXX_USE_FLOAT128 1
01535 
01536 /* Defined if gettimeofday is available. */
01537 #define _GLIBCXX_USE_GETTIMEOFDAY 1
01538 
01539 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
01540 #define _GLIBCXX_USE_GET_NPROCS 1
01541 
01542 /* Define if __int128 is supported on this host. */
01543 #define _GLIBCXX_USE_INT128 1
01544 
01545 /* Define if LFS support is available. */
01546 #define _GLIBCXX_USE_LFS 1
01547 
01548 /* Define if code specialized for long long should be used. */
01549 #define _GLIBCXX_USE_LONG_LONG 1
01550 
01551 /* Defined if nanosleep is available. */
01552 #define _GLIBCXX_USE_NANOSLEEP 1
01553 
01554 /* Define if NLS translations are to be used. */
01555 #define _GLIBCXX_USE_NLS 1
01556 
01557 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
01558 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
01559 
01560 /* Define if POSIX read/write locks are available in <gthr.h>. */
01561 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
01562 
01563 /* Define if /dev/random and /dev/urandom are available for the random_device
01564    of TR1 (Chapter 5.1). */
01565 #define _GLIBCXX_USE_RANDOM_TR1 1
01566 
01567 /* Define if usable realpath is available in <stdlib.h>. */
01568 #define _GLIBCXX_USE_REALPATH 1
01569 
01570 /* Defined if sched_yield is available. */
01571 #define _GLIBCXX_USE_SCHED_YIELD 1
01572 
01573 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
01574 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
01575 
01576 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
01577 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
01578 
01579 /* Define if sendfile is available in <sys/sendfile.h>. */
01580 #define _GLIBCXX_USE_SENDFILE 1
01581 
01582 /* Define if struct stat has timespec members. */
01583 #define _GLIBCXX_USE_ST_MTIM 1
01584 
01585 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
01586 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
01587 
01588 /* Define if obsolescent tmpnam is available in <stdio.h>. */
01589 #define _GLIBCXX_USE_TMPNAM 1
01590 
01591 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
01592    AT_FDCWD in <fcntl.h>. */
01593 #define _GLIBCXX_USE_UTIMENSAT 1
01594 
01595 /* Define if code specialized for wchar_t should be used. */
01596 #define _GLIBCXX_USE_WCHAR_T 1
01597 
01598 /* Define to 1 if a verbose library is built, or 0 otherwise. */
01599 #define _GLIBCXX_VERBOSE 1
01600 
01601 /* Defined if as can handle rdrand. */
01602 #define _GLIBCXX_X86_RDRAND 1
01603 
01604 /* Define to 1 if mutex_timedlock is available. */
01605 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
01606 
01607 /* Define if all C++11 floating point overloads are available in <math.h>.  */
01608 #if __cplusplus >= 201103L
01609 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
01610 #endif
01611 
01612 /* Define if all C++11 integral type overloads are available in <math.h>.  */
01613 #if __cplusplus >= 201103L
01614 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
01615 #endif
01616 
01617 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
01618 # define _GLIBCXX_HAVE_ACOSF 1
01619 # define acosf _acosf
01620 #endif
01621 
01622 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
01623 # define _GLIBCXX_HAVE_ACOSL 1
01624 # define acosl _acosl
01625 #endif
01626 
01627 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
01628 # define _GLIBCXX_HAVE_ASINF 1
01629 # define asinf _asinf
01630 #endif
01631 
01632 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
01633 # define _GLIBCXX_HAVE_ASINL 1
01634 # define asinl _asinl
01635 #endif
01636 
01637 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
01638 # define _GLIBCXX_HAVE_ATAN2F 1
01639 # define atan2f _atan2f
01640 #endif
01641 
01642 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
01643 # define _GLIBCXX_HAVE_ATAN2L 1
01644 # define atan2l _atan2l
01645 #endif
01646 
01647 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
01648 # define _GLIBCXX_HAVE_ATANF 1
01649 # define atanf _atanf
01650 #endif
01651 
01652 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
01653 # define _GLIBCXX_HAVE_ATANL 1
01654 # define atanl _atanl
01655 #endif
01656 
01657 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
01658 # define _GLIBCXX_HAVE_CEILF 1
01659 # define ceilf _ceilf
01660 #endif
01661 
01662 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
01663 # define _GLIBCXX_HAVE_CEILL 1
01664 # define ceill _ceill
01665 #endif
01666 
01667 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
01668 # define _GLIBCXX_HAVE_COSF 1
01669 # define cosf _cosf
01670 #endif
01671 
01672 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
01673 # define _GLIBCXX_HAVE_COSHF 1
01674 # define coshf _coshf
01675 #endif
01676 
01677 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
01678 # define _GLIBCXX_HAVE_COSHL 1
01679 # define coshl _coshl
01680 #endif
01681 
01682 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
01683 # define _GLIBCXX_HAVE_COSL 1
01684 # define cosl _cosl
01685 #endif
01686 
01687 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
01688 # define _GLIBCXX_HAVE_EXPF 1
01689 # define expf _expf
01690 #endif
01691 
01692 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
01693 # define _GLIBCXX_HAVE_EXPL 1
01694 # define expl _expl
01695 #endif
01696 
01697 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
01698 # define _GLIBCXX_HAVE_FABSF 1
01699 # define fabsf _fabsf
01700 #endif
01701 
01702 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
01703 # define _GLIBCXX_HAVE_FABSL 1
01704 # define fabsl _fabsl
01705 #endif
01706 
01707 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
01708 # define _GLIBCXX_HAVE_FINITE 1
01709 # define finite _finite
01710 #endif
01711 
01712 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
01713 # define _GLIBCXX_HAVE_FINITEF 1
01714 # define finitef _finitef
01715 #endif
01716 
01717 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
01718 # define _GLIBCXX_HAVE_FINITEL 1
01719 # define finitel _finitel
01720 #endif
01721 
01722 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
01723 # define _GLIBCXX_HAVE_FLOORF 1
01724 # define floorf _floorf
01725 #endif
01726 
01727 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
01728 # define _GLIBCXX_HAVE_FLOORL 1
01729 # define floorl _floorl
01730 #endif
01731 
01732 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
01733 # define _GLIBCXX_HAVE_FMODF 1
01734 # define fmodf _fmodf
01735 #endif
01736 
01737 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
01738 # define _GLIBCXX_HAVE_FMODL 1
01739 # define fmodl _fmodl
01740 #endif
01741 
01742 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
01743 # define _GLIBCXX_HAVE_FPCLASS 1
01744 # define fpclass _fpclass
01745 #endif
01746 
01747 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
01748 # define _GLIBCXX_HAVE_FREXPF 1
01749 # define frexpf _frexpf
01750 #endif
01751 
01752 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
01753 # define _GLIBCXX_HAVE_FREXPL 1
01754 # define frexpl _frexpl
01755 #endif
01756 
01757 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
01758 # define _GLIBCXX_HAVE_HYPOT 1
01759 # define hypot _hypot
01760 #endif
01761 
01762 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
01763 # define _GLIBCXX_HAVE_HYPOTF 1
01764 # define hypotf _hypotf
01765 #endif
01766 
01767 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
01768 # define _GLIBCXX_HAVE_HYPOTL 1
01769 # define hypotl _hypotl
01770 #endif
01771 
01772 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
01773 # define _GLIBCXX_HAVE_ISINF 1
01774 # define isinf _isinf
01775 #endif
01776 
01777 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
01778 # define _GLIBCXX_HAVE_ISINFF 1
01779 # define isinff _isinff
01780 #endif
01781 
01782 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
01783 # define _GLIBCXX_HAVE_ISINFL 1
01784 # define isinfl _isinfl
01785 #endif
01786 
01787 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
01788 # define _GLIBCXX_HAVE_ISNAN 1
01789 # define isnan _isnan
01790 #endif
01791 
01792 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
01793 # define _GLIBCXX_HAVE_ISNANF 1
01794 # define isnanf _isnanf
01795 #endif
01796 
01797 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01798 # define _GLIBCXX_HAVE_ISNANL 1
01799 # define isnanl _isnanl
01800 #endif
01801 
01802 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01803 # define _GLIBCXX_HAVE_LDEXPF 1
01804 # define ldexpf _ldexpf
01805 #endif
01806 
01807 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01808 # define _GLIBCXX_HAVE_LDEXPL 1
01809 # define ldexpl _ldexpl
01810 #endif
01811 
01812 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01813 # define _GLIBCXX_HAVE_LOG10F 1
01814 # define log10f _log10f
01815 #endif
01816 
01817 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01818 # define _GLIBCXX_HAVE_LOG10L 1
01819 # define log10l _log10l
01820 #endif
01821 
01822 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01823 # define _GLIBCXX_HAVE_LOGF 1
01824 # define logf _logf
01825 #endif
01826 
01827 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01828 # define _GLIBCXX_HAVE_LOGL 1
01829 # define logl _logl
01830 #endif
01831 
01832 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01833 # define _GLIBCXX_HAVE_MODF 1
01834 # define modf _modf
01835 #endif
01836 
01837 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
01838 # define _GLIBCXX_HAVE_MODFF 1
01839 # define modff _modff
01840 #endif
01841 
01842 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
01843 # define _GLIBCXX_HAVE_MODFL 1
01844 # define modfl _modfl
01845 #endif
01846 
01847 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01848 # define _GLIBCXX_HAVE_POWF 1
01849 # define powf _powf
01850 #endif
01851 
01852 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01853 # define _GLIBCXX_HAVE_POWL 1
01854 # define powl _powl
01855 #endif
01856 
01857 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01858 # define _GLIBCXX_HAVE_QFPCLASS 1
01859 # define qfpclass _qfpclass
01860 #endif
01861 
01862 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01863 # define _GLIBCXX_HAVE_SINCOS 1
01864 # define sincos _sincos
01865 #endif
01866 
01867 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01868 # define _GLIBCXX_HAVE_SINCOSF 1
01869 # define sincosf _sincosf
01870 #endif
01871 
01872 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01873 # define _GLIBCXX_HAVE_SINCOSL 1
01874 # define sincosl _sincosl
01875 #endif
01876 
01877 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01878 # define _GLIBCXX_HAVE_SINF 1
01879 # define sinf _sinf
01880 #endif
01881 
01882 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01883 # define _GLIBCXX_HAVE_SINHF 1
01884 # define sinhf _sinhf
01885 #endif
01886 
01887 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01888 # define _GLIBCXX_HAVE_SINHL 1
01889 # define sinhl _sinhl
01890 #endif
01891 
01892 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01893 # define _GLIBCXX_HAVE_SINL 1
01894 # define sinl _sinl
01895 #endif
01896 
01897 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01898 # define _GLIBCXX_HAVE_SQRTF 1
01899 # define sqrtf _sqrtf
01900 #endif
01901 
01902 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01903 # define _GLIBCXX_HAVE_SQRTL 1
01904 # define sqrtl _sqrtl
01905 #endif
01906 
01907 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01908 # define _GLIBCXX_HAVE_STRTOF 1
01909 # define strtof _strtof
01910 #endif
01911 
01912 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01913 # define _GLIBCXX_HAVE_STRTOLD 1
01914 # define strtold _strtold
01915 #endif
01916 
01917 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01918 # define _GLIBCXX_HAVE_TANF 1
01919 # define tanf _tanf
01920 #endif
01921 
01922 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01923 # define _GLIBCXX_HAVE_TANHF 1
01924 # define tanhf _tanhf
01925 #endif
01926 
01927 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01928 # define _GLIBCXX_HAVE_TANHL 1
01929 # define tanhl _tanhl
01930 #endif
01931 
01932 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01933 # define _GLIBCXX_HAVE_TANL 1
01934 # define tanl _tanl
01935 #endif
01936 
01937 #endif // _GLIBCXX_CXX_CONFIG_H