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