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