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