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