OpenCores
URL https://opencores.org/ocsvn/altor32/altor32/trunk

Subversion Repositories altor32

[/] [altor32/] [trunk/] [gcc-x64/] [or1knd-elf/] [or1knd-elf/] [include/] [c++/] [4.8.0/] [or1knd-elf/] [compat-delay/] [soft-float/] [bits/] [c++config.h] - Blame information for rev 35

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 35 ultra_embe
// Predefined symbols and macros -*- C++ -*-
2
 
3
// Copyright (C) 1997-2012 Free Software Foundation, Inc.
4
//
5
// This file is part of the GNU ISO C++ Library.  This library is free
6
// software; you can redistribute it and/or modify it under the
7
// terms of the GNU General Public License as published by the
8
// Free Software Foundation; either version 3, or (at your option)
9
// any later version.
10
 
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
 
16
// Under Section 7 of GPL version 3, you are granted additional
17
// permissions described in the GCC Runtime Library Exception, version
18
// 3.1, as published by the Free Software Foundation.
19
 
20
// You should have received a copy of the GNU General Public License and
21
// a copy of the GCC Runtime Library Exception along with this program;
22
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23
// <http://www.gnu.org/licenses/>.
24
 
25
/** @file bits/c++config.h
26
 *  This is an internal header file, included by other library headers.
27
 *  Do not attempt to use it directly. @headername{iosfwd}
28
 */
29
 
30
#ifndef _GLIBCXX_CXX_CONFIG_H
31
#define _GLIBCXX_CXX_CONFIG_H 1
32
 
33
// The current version of the C++ library in compressed ISO date format.
34
#define __GLIBCXX__ 20121129
35
 
36
// Macros for various attributes.
37
//   _GLIBCXX_PURE
38
//   _GLIBCXX_CONST
39
//   _GLIBCXX_NORETURN
40
//   _GLIBCXX_NOTHROW
41
//   _GLIBCXX_VISIBILITY
42
#ifndef _GLIBCXX_PURE
43
# define _GLIBCXX_PURE __attribute__ ((__pure__))
44
#endif
45
 
46
#ifndef _GLIBCXX_CONST
47
# define _GLIBCXX_CONST __attribute__ ((__const__))
48
#endif
49
 
50
#ifndef _GLIBCXX_NORETURN
51
# define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
52
#endif
53
 
54
// See below for C++
55
#ifndef _GLIBCXX_NOTHROW
56
# ifndef __cplusplus
57
#  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
58
# endif
59
#endif
60
 
61
// Macros for visibility attributes.
62
//   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
63
//   _GLIBCXX_VISIBILITY
64
# define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
65
 
66
#if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
67
# define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
68
#else
69
// If this is not supplied by the OS-specific or CPU-specific
70
// headers included below, it will be defined to an empty default.
71
# define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
72
#endif
73
 
74
// Macros for deprecated attributes.
75
//   _GLIBCXX_USE_DEPRECATED
76
//   _GLIBCXX_DEPRECATED
77
#ifndef _GLIBCXX_USE_DEPRECATED
78
# define _GLIBCXX_USE_DEPRECATED 1
79
#endif
80
 
81
#if defined(__DEPRECATED) && (__cplusplus >= 201103L)
82
# define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
83
#else
84
# define _GLIBCXX_DEPRECATED
85
#endif
86
 
87
#if __cplusplus
88
 
89
// Macro for constexpr, to support in mixed 03/0x mode.
90
#ifndef _GLIBCXX_CONSTEXPR
91
# if __cplusplus >= 201103L
92
#  define _GLIBCXX_CONSTEXPR constexpr
93
#  define _GLIBCXX_USE_CONSTEXPR constexpr
94
# else
95
#  define _GLIBCXX_CONSTEXPR
96
#  define _GLIBCXX_USE_CONSTEXPR const
97
# endif
98
#endif
99
 
100
// Macro for noexcept, to support in mixed 03/0x mode.
101
#ifndef _GLIBCXX_NOEXCEPT
102
# if __cplusplus >= 201103L
103
#  define _GLIBCXX_NOEXCEPT noexcept
104
#  define _GLIBCXX_USE_NOEXCEPT noexcept
105
#  define _GLIBCXX_THROW(_EXC)
106
# else
107
#  define _GLIBCXX_NOEXCEPT
108
#  define _GLIBCXX_USE_NOEXCEPT throw()
109
#  define _GLIBCXX_THROW(_EXC) throw(_EXC)
110
# endif
111
#endif
112
 
113
#ifndef _GLIBCXX_NOTHROW
114
# define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
115
#endif
116
 
117
#ifndef _GLIBCXX_THROW_OR_ABORT
118
# if __EXCEPTIONS
119
#  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
120
# else
121
#  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
122
# endif
123
#endif
124
 
125
// Macro for extern template, ie controling template linkage via use
126
// of extern keyword on template declaration. As documented in the g++
127
// manual, it inhibits all implicit instantiations and is used
128
// throughout the library to avoid multiple weak definitions for
129
// required types that are already explicitly instantiated in the
130
// library binary. This substantially reduces the binary size of
131
// resulting executables.
132
// Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
133
// templates only in basic_string, thus activating its debug-mode
134
// checks even at -O0.
135
# define _GLIBCXX_EXTERN_TEMPLATE 1
136
 
137
/*
138
  Outline of libstdc++ namespaces.
139
 
140
  namespace std
141
  {
142
    namespace __debug { }
143
    namespace __parallel { }
144
    namespace __profile { }
145
    namespace __cxx1998 { }
146
 
147
    namespace __detail { }
148
 
149
    namespace rel_ops { }
150
 
151
    namespace tr1
152
    {
153
      namespace placeholders { }
154
      namespace regex_constants { }
155
      namespace __detail { }
156
    }
157
 
158
    namespace tr2 { }
159
 
160
    namespace decimal { }
161
 
162
    namespace chrono { }
163
    namespace placeholders { }
164
    namespace regex_constants { }
165
    namespace this_thread { }
166
  }
167
 
168
  namespace abi { }
169
 
170
  namespace __gnu_cxx
171
  {
172
    namespace __detail { }
173
  }
174
 
175
  For full details see:
176
  http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
177
*/
178
namespace std
179
{
180
  typedef __SIZE_TYPE__         size_t;
181
  typedef __PTRDIFF_TYPE__      ptrdiff_t;
182
 
183
#if __cplusplus >= 201103L
184
  typedef decltype(nullptr)     nullptr_t;
185
#endif
186
}
187
 
188
 
189
// Defined if inline namespaces are used for versioning.
190
# define _GLIBCXX_INLINE_VERSION 0 
191
 
192
// Inline namespace for symbol versioning.
193
#if _GLIBCXX_INLINE_VERSION
194
 
195
namespace std
196
{
197
  inline namespace __7 { }
198
 
199
  namespace rel_ops { inline namespace __7 { } }
200
 
201
  namespace tr1
202
  {
203
    inline namespace __7 { }
204
    namespace placeholders { inline namespace __7 { } }
205
    namespace regex_constants { inline namespace __7 { } }
206
    namespace __detail { inline namespace __7 { } }
207
  }
208
 
209
  namespace tr2
210
  { inline namespace __7 { } }
211
 
212
  namespace decimal { inline namespace __7 { } }
213
 
214
  namespace chrono { inline namespace __7 { } }
215
  namespace placeholders { inline namespace __7 { } }
216
  namespace regex_constants { inline namespace __7 { } }
217
  namespace this_thread { inline namespace __7 { } }
218
 
219
  namespace __detail { inline namespace __7 { } }
220
}
221
 
222
namespace __gnu_cxx
223
{
224
  inline namespace __7 { }
225
  namespace __detail { inline namespace __7 { } }
226
}
227
# define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 {
228
# define _GLIBCXX_END_NAMESPACE_VERSION }
229
#else
230
# define _GLIBCXX_BEGIN_NAMESPACE_VERSION
231
# define _GLIBCXX_END_NAMESPACE_VERSION
232
#endif
233
 
234
 
235
// Inline namespaces for special modes: debug, parallel, profile.
236
#if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
237
    || defined(_GLIBCXX_PROFILE)
238
namespace std
239
{
240
  // Non-inline namespace for components replaced by alternates in active mode.
241
  namespace __cxx1998
242
  {
243
#if _GLIBCXX_INLINE_VERSION
244
 inline namespace __7 { }
245
#endif
246
  }
247
 
248
  // Inline namespace for debug mode.
249
# ifdef _GLIBCXX_DEBUG
250
  inline namespace __debug { }
251
# endif
252
 
253
  // Inline namespaces for parallel mode.
254
# ifdef _GLIBCXX_PARALLEL
255
  inline namespace __parallel { }
256
# endif
257
 
258
  // Inline namespaces for profile mode
259
# ifdef _GLIBCXX_PROFILE
260
  inline namespace __profile { }
261
# endif
262
}
263
 
264
// Check for invalid usage and unsupported mixed-mode use.
265
# if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
266
#  error illegal use of multiple inlined namespaces
267
# endif
268
# if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
269
#  error illegal use of multiple inlined namespaces
270
# endif
271
# if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
272
#  error illegal use of multiple inlined namespaces
273
# endif
274
 
275
// Check for invalid use due to lack for weak symbols.
276
# if __NO_INLINE__ && !__GXX_WEAK__
277
#  warning currently using inlined namespace mode which may fail \
278
   without inlining due to lack of weak symbols
279
# endif
280
#endif
281
 
282
// Macros for namespace scope. Either namespace std:: or the name
283
// of some nested namespace within it corresponding to the active mode.
284
// _GLIBCXX_STD_A
285
// _GLIBCXX_STD_C
286
//
287
// Macros for opening/closing conditional namespaces.
288
// _GLIBCXX_BEGIN_NAMESPACE_ALGO
289
// _GLIBCXX_END_NAMESPACE_ALGO
290
// _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
291
// _GLIBCXX_END_NAMESPACE_CONTAINER
292
#if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
293
# define _GLIBCXX_STD_C __cxx1998
294
# define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
295
         namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
296
# define _GLIBCXX_END_NAMESPACE_CONTAINER \
297
         _GLIBCXX_END_NAMESPACE_VERSION }
298
# undef _GLIBCXX_EXTERN_TEMPLATE
299
# define _GLIBCXX_EXTERN_TEMPLATE -1
300
#endif
301
 
302
#ifdef _GLIBCXX_PARALLEL
303
# define _GLIBCXX_STD_A __cxx1998
304
# define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
305
         namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
306
# define _GLIBCXX_END_NAMESPACE_ALGO \
307
         _GLIBCXX_END_NAMESPACE_VERSION }
308
#endif
309
 
310
#ifndef _GLIBCXX_STD_A
311
# define _GLIBCXX_STD_A std
312
#endif
313
 
314
#ifndef _GLIBCXX_STD_C
315
# define _GLIBCXX_STD_C std
316
#endif
317
 
318
#ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
319
# define _GLIBCXX_BEGIN_NAMESPACE_ALGO
320
#endif
321
 
322
#ifndef _GLIBCXX_END_NAMESPACE_ALGO
323
# define _GLIBCXX_END_NAMESPACE_ALGO
324
#endif
325
 
326
#ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
327
# define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
328
#endif
329
 
330
#ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
331
# define _GLIBCXX_END_NAMESPACE_CONTAINER
332
#endif
333
 
334
// GLIBCXX_ABI Deprecated
335
// Define if compatibility should be provided for -mlong-double-64.
336
#undef _GLIBCXX_LONG_DOUBLE_COMPAT
337
 
338
// Inline namespace for long double 128 mode.
339
#if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
340
namespace std
341
{
342
  inline namespace __gnu_cxx_ldbl128 { }
343
}
344
# define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
345
# define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
346
# define _GLIBCXX_END_NAMESPACE_LDBL }
347
#else
348
# define _GLIBCXX_NAMESPACE_LDBL
349
# define _GLIBCXX_BEGIN_NAMESPACE_LDBL
350
# define _GLIBCXX_END_NAMESPACE_LDBL
351
#endif
352
 
353
// Assert.
354
#if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
355
# define __glibcxx_assert(_Condition)
356
#else
357
namespace std
358
{
359
  // Avoid the use of assert, because we're trying to keep the <cassert>
360
  // include out of the mix.
361
  inline void
362
  __replacement_assert(const char* __file, int __line,
363
                       const char* __function, const char* __condition)
364
  {
365
    __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
366
                     __function, __condition);
367
    __builtin_abort();
368
  }
369
}
370
#define __glibcxx_assert(_Condition)                                     \
371
  do                                                                     \
372
  {                                                                      \
373
    if (! (_Condition))                                                  \
374
      std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
375
                                #_Condition);                            \
376
  } while (false)
377
#endif
378
 
379
// Macros for race detectors.
380
// _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
381
// _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
382
// atomic (lock-free) synchronization to race detectors:
383
// the race detector will infer a happens-before arc from the former to the
384
// latter when they share the same argument pointer.
385
//
386
// The most frequent use case for these macros (and the only case in the
387
// current implementation of the library) is atomic reference counting:
388
//   void _M_remove_reference()
389
//   {
390
//     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
391
//     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
392
//       {
393
//         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
394
//         _M_destroy(__a);
395
//       }
396
//   }
397
// The annotations in this example tell the race detector that all memory
398
// accesses occurred when the refcount was positive do not race with
399
// memory accesses which occurred after the refcount became zero.
400
#ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
401
# define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
402
#endif
403
#ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
404
# define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
405
#endif
406
 
407
// Macros for C linkage: define extern "C" linkage only when using C++.
408
# define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
409
# define _GLIBCXX_END_EXTERN_C }
410
 
411
#else // !__cplusplus
412
# define _GLIBCXX_BEGIN_EXTERN_C
413
# define _GLIBCXX_END_EXTERN_C
414
#endif
415
 
416
 
417
// First includes.
418
 
419
// Pick up any OS-specific definitions.
420
#include <bits/os_defines.h>
421
 
422
// Pick up any CPU-specific definitions.
423
#include <bits/cpu_defines.h>
424
 
425
// If platform uses neither visibility nor psuedo-visibility,
426
// specify empty default for namespace annotation macros.
427
#ifndef _GLIBCXX_PSEUDO_VISIBILITY
428
# define _GLIBCXX_PSEUDO_VISIBILITY(V)
429
#endif
430
 
431
// Certain function definitions that are meant to be overridable from
432
// user code are decorated with this macro.  For some targets, this
433
// macro causes these definitions to be weak.
434
#ifndef _GLIBCXX_WEAK_DEFINITION
435
# define _GLIBCXX_WEAK_DEFINITION
436
#endif
437
 
438
 
439
// The remainder of the prewritten config is automatic; all the
440
// user hooks are listed above.
441
 
442
// Create a boolean flag to be used to determine if --fast-math is set.
443
#ifdef __FAST_MATH__
444
# define _GLIBCXX_FAST_MATH 1
445
#else
446
# define _GLIBCXX_FAST_MATH 0
447
#endif
448
 
449
// This marks string literals in header files to be extracted for eventual
450
// translation.  It is primarily used for messages in thrown exceptions; see
451
// src/functexcept.cc.  We use __N because the more traditional _N is used
452
// for something else under certain OSes (see BADNAMES).
453
#define __N(msgid)     (msgid)
454
 
455
// For example, <windows.h> is known to #define min and max as macros...
456
#undef min
457
#undef max
458
 
459
// End of prewritten config; the settings discovered at configure time follow.
460
/* config.h.  Generated from config.h.in by configure.  */
461
/* config.h.in.  Generated from configure.ac by autoheader.  */
462
 
463
/* Define to 1 if you have the `acosf' function. */
464
#define _GLIBCXX_HAVE_ACOSF 1
465
 
466
/* Define to 1 if you have the `acosl' function. */
467
/* #undef _GLIBCXX_HAVE_ACOSL */
468
 
469
/* Define to 1 if you have the `asinf' function. */
470
#define _GLIBCXX_HAVE_ASINF 1
471
 
472
/* Define to 1 if you have the `asinl' function. */
473
/* #undef _GLIBCXX_HAVE_ASINL */
474
 
475
/* Define to 1 if the target assembler supports .symver directive. */
476
#define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
477
 
478
/* Define to 1 if you have the `atan2f' function. */
479
#define _GLIBCXX_HAVE_ATAN2F 1
480
 
481
/* Define to 1 if you have the `atan2l' function. */
482
/* #undef _GLIBCXX_HAVE_ATAN2L */
483
 
484
/* Define to 1 if you have the `atanf' function. */
485
#define _GLIBCXX_HAVE_ATANF 1
486
 
487
/* Define to 1 if you have the `atanl' function. */
488
/* #undef _GLIBCXX_HAVE_ATANL */
489
 
490
/* Define to 1 if the target assembler supports thread-local storage. */
491
/* #undef _GLIBCXX_HAVE_CC_TLS */
492
 
493
/* Define to 1 if you have the `ceilf' function. */
494
#define _GLIBCXX_HAVE_CEILF 1
495
 
496
/* Define to 1 if you have the `ceill' function. */
497
/* #undef _GLIBCXX_HAVE_CEILL */
498
 
499
/* Define to 1 if you have the <complex.h> header file. */
500
#define _GLIBCXX_HAVE_COMPLEX_H 1
501
 
502
/* Define to 1 if you have the `cosf' function. */
503
#define _GLIBCXX_HAVE_COSF 1
504
 
505
/* Define to 1 if you have the `coshf' function. */
506
#define _GLIBCXX_HAVE_COSHF 1
507
 
508
/* Define to 1 if you have the `coshl' function. */
509
/* #undef _GLIBCXX_HAVE_COSHL */
510
 
511
/* Define to 1 if you have the `cosl' function. */
512
/* #undef _GLIBCXX_HAVE_COSL */
513
 
514
/* Define to 1 if you have the <dlfcn.h> header file. */
515
/* #undef _GLIBCXX_HAVE_DLFCN_H */
516
 
517
/* Define if EBADMSG exists. */
518
#define _GLIBCXX_HAVE_EBADMSG 1
519
 
520
/* Define if ECANCELED exists. */
521
#define _GLIBCXX_HAVE_ECANCELED 1
522
 
523
/* Define if ECHILD exists. */
524
#define _GLIBCXX_HAVE_ECHILD 1
525
 
526
/* Define if EIDRM exists. */
527
#define _GLIBCXX_HAVE_EIDRM 1
528
 
529
/* Define to 1 if you have the <endian.h> header file. */
530
/* #undef _GLIBCXX_HAVE_ENDIAN_H */
531
 
532
/* Define if ENODATA exists. */
533
#define _GLIBCXX_HAVE_ENODATA 1
534
 
535
/* Define if ENOLINK exists. */
536
#define _GLIBCXX_HAVE_ENOLINK 1
537
 
538
/* Define if ENOSPC exists. */
539
#define _GLIBCXX_HAVE_ENOSPC 1
540
 
541
/* Define if ENOSR exists. */
542
#define _GLIBCXX_HAVE_ENOSR 1
543
 
544
/* Define if ENOSTR exists. */
545
#define _GLIBCXX_HAVE_ENOSTR 1
546
 
547
/* Define if ENOTRECOVERABLE exists. */
548
#define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
549
 
550
/* Define if ENOTSUP exists. */
551
#define _GLIBCXX_HAVE_ENOTSUP 1
552
 
553
/* Define if EOVERFLOW exists. */
554
#define _GLIBCXX_HAVE_EOVERFLOW 1
555
 
556
/* Define if EOWNERDEAD exists. */
557
#define _GLIBCXX_HAVE_EOWNERDEAD 1
558
 
559
/* Define if EPERM exists. */
560
#define _GLIBCXX_HAVE_EPERM 1
561
 
562
/* Define if EPROTO exists. */
563
#define _GLIBCXX_HAVE_EPROTO 1
564
 
565
/* Define if ETIME exists. */
566
#define _GLIBCXX_HAVE_ETIME 1
567
 
568
/* Define if ETIMEDOUT exists. */
569
#define _GLIBCXX_HAVE_ETIMEDOUT 1
570
 
571
/* Define if ETXTBSY exists. */
572
#define _GLIBCXX_HAVE_ETXTBSY 1
573
 
574
/* Define if EWOULDBLOCK exists. */
575
#define _GLIBCXX_HAVE_EWOULDBLOCK 1
576
 
577
/* Define to 1 if you have the <execinfo.h> header file. */
578
/* #undef _GLIBCXX_HAVE_EXECINFO_H */
579
 
580
/* Define to 1 if you have the `expf' function. */
581
#define _GLIBCXX_HAVE_EXPF 1
582
 
583
/* Define to 1 if you have the `expl' function. */
584
/* #undef _GLIBCXX_HAVE_EXPL */
585
 
586
/* Define to 1 if you have the `fabsf' function. */
587
#define _GLIBCXX_HAVE_FABSF 1
588
 
589
/* Define to 1 if you have the `fabsl' function. */
590
/* #undef _GLIBCXX_HAVE_FABSL */
591
 
592
/* Define to 1 if you have the <fenv.h> header file. */
593
/* #undef _GLIBCXX_HAVE_FENV_H */
594
 
595
/* Define to 1 if you have the `finite' function. */
596
/* #undef _GLIBCXX_HAVE_FINITE */
597
 
598
/* Define to 1 if you have the `finitef' function. */
599
/* #undef _GLIBCXX_HAVE_FINITEF */
600
 
601
/* Define to 1 if you have the `finitel' function. */
602
/* #undef _GLIBCXX_HAVE_FINITEL */
603
 
604
/* Define to 1 if you have the <float.h> header file. */
605
#define _GLIBCXX_HAVE_FLOAT_H 1
606
 
607
/* Define to 1 if you have the `floorf' function. */
608
#define _GLIBCXX_HAVE_FLOORF 1
609
 
610
/* Define to 1 if you have the `floorl' function. */
611
/* #undef _GLIBCXX_HAVE_FLOORL */
612
 
613
/* Define to 1 if you have the `fmodf' function. */
614
#define _GLIBCXX_HAVE_FMODF 1
615
 
616
/* Define to 1 if you have the `fmodl' function. */
617
/* #undef _GLIBCXX_HAVE_FMODL */
618
 
619
/* Define to 1 if you have the `fpclass' function. */
620
/* #undef _GLIBCXX_HAVE_FPCLASS */
621
 
622
/* Define to 1 if you have the <fp.h> header file. */
623
/* #undef _GLIBCXX_HAVE_FP_H */
624
 
625
/* Define to 1 if you have the `frexpf' function. */
626
#define _GLIBCXX_HAVE_FREXPF 1
627
 
628
/* Define to 1 if you have the `frexpl' function. */
629
/* #undef _GLIBCXX_HAVE_FREXPL */
630
 
631
/* Define if _Unwind_GetIPInfo is available. */
632
#define _GLIBCXX_HAVE_GETIPINFO 1
633
 
634
/* Define if gets is available in <stdio.h>. */
635
#define _GLIBCXX_HAVE_GETS 1
636
 
637
/* Define to 1 if you have the `hypot' function. */
638
#define _GLIBCXX_HAVE_HYPOT 1
639
 
640
/* Define to 1 if you have the `hypotf' function. */
641
/* #undef _GLIBCXX_HAVE_HYPOTF */
642
 
643
/* Define to 1 if you have the `hypotl' function. */
644
/* #undef _GLIBCXX_HAVE_HYPOTL */
645
 
646
/* Define if you have the iconv() function. */
647
#define _GLIBCXX_HAVE_ICONV 1
648
 
649
/* Define to 1 if you have the <ieeefp.h> header file. */
650
#define _GLIBCXX_HAVE_IEEEFP_H 1
651
 
652
/* Define if int64_t is available in <stdint.h>. */
653
#define _GLIBCXX_HAVE_INT64_T 1
654
 
655
/* Define if int64_t is a long. */
656
/* #undef _GLIBCXX_HAVE_INT64_T_LONG */
657
 
658
/* Define if int64_t is a long long. */
659
#define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1
660
 
661
/* Define to 1 if you have the <inttypes.h> header file. */
662
#define _GLIBCXX_HAVE_INTTYPES_H 1
663
 
664
/* Define to 1 if you have the `isinf' function. */
665
/* #undef _GLIBCXX_HAVE_ISINF */
666
 
667
/* Define to 1 if you have the `isinff' function. */
668
/* #undef _GLIBCXX_HAVE_ISINFF */
669
 
670
/* Define to 1 if you have the `isinfl' function. */
671
/* #undef _GLIBCXX_HAVE_ISINFL */
672
 
673
/* Define to 1 if you have the `isnan' function. */
674
/* #undef _GLIBCXX_HAVE_ISNAN */
675
 
676
/* Define to 1 if you have the `isnanf' function. */
677
/* #undef _GLIBCXX_HAVE_ISNANF */
678
 
679
/* Define to 1 if you have the `isnanl' function. */
680
/* #undef _GLIBCXX_HAVE_ISNANL */
681
 
682
/* Defined if iswblank exists. */
683
#define _GLIBCXX_HAVE_ISWBLANK 1
684
 
685
/* Define if LC_MESSAGES is available in <locale.h>. */
686
#define _GLIBCXX_HAVE_LC_MESSAGES 1
687
 
688
/* Define to 1 if you have the `ldexpf' function. */
689
#define _GLIBCXX_HAVE_LDEXPF 1
690
 
691
/* Define to 1 if you have the `ldexpl' function. */
692
/* #undef _GLIBCXX_HAVE_LDEXPL */
693
 
694
/* Define to 1 if you have the <libintl.h> header file. */
695
/* #undef _GLIBCXX_HAVE_LIBINTL_H */
696
 
697
/* Only used in build directory testsuite_hooks.h. */
698
/* #undef _GLIBCXX_HAVE_LIMIT_AS */
699
 
700
/* Only used in build directory testsuite_hooks.h. */
701
/* #undef _GLIBCXX_HAVE_LIMIT_DATA */
702
 
703
/* Only used in build directory testsuite_hooks.h. */
704
/* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */
705
 
706
/* Only used in build directory testsuite_hooks.h. */
707
/* #undef _GLIBCXX_HAVE_LIMIT_RSS */
708
 
709
/* Only used in build directory testsuite_hooks.h. */
710
/* #undef _GLIBCXX_HAVE_LIMIT_VMEM */
711
 
712
/* Define if futex syscall is available. */
713
/* #undef _GLIBCXX_HAVE_LINUX_FUTEX */
714
 
715
/* Define to 1 if you have the <locale.h> header file. */
716
#define _GLIBCXX_HAVE_LOCALE_H 1
717
 
718
/* Define to 1 if you have the `log10f' function. */
719
#define _GLIBCXX_HAVE_LOG10F 1
720
 
721
/* Define to 1 if you have the `log10l' function. */
722
/* #undef _GLIBCXX_HAVE_LOG10L */
723
 
724
/* Define to 1 if you have the `logf' function. */
725
#define _GLIBCXX_HAVE_LOGF 1
726
 
727
/* Define to 1 if you have the `logl' function. */
728
/* #undef _GLIBCXX_HAVE_LOGL */
729
 
730
/* Define to 1 if you have the <machine/endian.h> header file. */
731
#define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
732
 
733
/* Define to 1 if you have the <machine/param.h> header file. */
734
#define _GLIBCXX_HAVE_MACHINE_PARAM_H 1
735
 
736
/* Define if mbstate_t exists in wchar.h. */
737
#define _GLIBCXX_HAVE_MBSTATE_T 1
738
 
739
/* Define to 1 if you have the <memory.h> header file. */
740
/* #undef _GLIBCXX_HAVE_MEMORY_H */
741
 
742
/* Define to 1 if you have the `modf' function. */
743
/* #undef _GLIBCXX_HAVE_MODF */
744
 
745
/* Define to 1 if you have the `modff' function. */
746
#define _GLIBCXX_HAVE_MODFF 1
747
 
748
/* Define to 1 if you have the `modfl' function. */
749
/* #undef _GLIBCXX_HAVE_MODFL */
750
 
751
/* Define to 1 if you have the <nan.h> header file. */
752
/* #undef _GLIBCXX_HAVE_NAN_H */
753
 
754
/* Define if poll is available in <poll.h>. */
755
/* #undef _GLIBCXX_HAVE_POLL */
756
 
757
/* Define to 1 if you have the `powf' function. */
758
#define _GLIBCXX_HAVE_POWF 1
759
 
760
/* Define to 1 if you have the `powl' function. */
761
/* #undef _GLIBCXX_HAVE_POWL */
762
 
763
/* Define to 1 if you have the `qfpclass' function. */
764
/* #undef _GLIBCXX_HAVE_QFPCLASS */
765
 
766
/* Define to 1 if you have the `setenv' function. */
767
/* #undef _GLIBCXX_HAVE_SETENV */
768
 
769
/* Define to 1 if you have the `sincos' function. */
770
/* #undef _GLIBCXX_HAVE_SINCOS */
771
 
772
/* Define to 1 if you have the `sincosf' function. */
773
/* #undef _GLIBCXX_HAVE_SINCOSF */
774
 
775
/* Define to 1 if you have the `sincosl' function. */
776
/* #undef _GLIBCXX_HAVE_SINCOSL */
777
 
778
/* Define to 1 if you have the `sinf' function. */
779
#define _GLIBCXX_HAVE_SINF 1
780
 
781
/* Define to 1 if you have the `sinhf' function. */
782
#define _GLIBCXX_HAVE_SINHF 1
783
 
784
/* Define to 1 if you have the `sinhl' function. */
785
/* #undef _GLIBCXX_HAVE_SINHL */
786
 
787
/* Define to 1 if you have the `sinl' function. */
788
/* #undef _GLIBCXX_HAVE_SINL */
789
 
790
/* Defined if sleep exists. */
791
#define _GLIBCXX_HAVE_SLEEP 1
792
 
793
/* Define to 1 if you have the `sqrtf' function. */
794
#define _GLIBCXX_HAVE_SQRTF 1
795
 
796
/* Define to 1 if you have the `sqrtl' function. */
797
/* #undef _GLIBCXX_HAVE_SQRTL */
798
 
799
/* Define to 1 if you have the <stdalign.h> header file. */
800
#define _GLIBCXX_HAVE_STDALIGN_H 1
801
 
802
/* Define to 1 if you have the <stdbool.h> header file. */
803
#define _GLIBCXX_HAVE_STDBOOL_H 1
804
 
805
/* Define to 1 if you have the <stdint.h> header file. */
806
#define _GLIBCXX_HAVE_STDINT_H 1
807
 
808
/* Define to 1 if you have the <stdlib.h> header file. */
809
#define _GLIBCXX_HAVE_STDLIB_H 1
810
 
811
/* Define if strerror_l is available in <string.h>. */
812
/* #undef _GLIBCXX_HAVE_STRERROR_L */
813
 
814
/* Define if strerror_r is available in <string.h>. */
815
#define _GLIBCXX_HAVE_STRERROR_R 1
816
 
817
/* Define to 1 if you have the <strings.h> header file. */
818
#define _GLIBCXX_HAVE_STRINGS_H 1
819
 
820
/* Define to 1 if you have the <string.h> header file. */
821
#define _GLIBCXX_HAVE_STRING_H 1
822
 
823
/* Define to 1 if you have the `strtof' function. */
824
#define _GLIBCXX_HAVE_STRTOF 1
825
 
826
/* Define to 1 if you have the `strtold' function. */
827
/* #undef _GLIBCXX_HAVE_STRTOLD */
828
 
829
/* Define if strxfrm_l is available in <string.h>. */
830
/* #undef _GLIBCXX_HAVE_STRXFRM_L */
831
 
832
/* Define to 1 if the target runtime linker supports binding the same symbol
833
   to different versions. */
834
/* #undef _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT */
835
 
836
/* Define to 1 if you have the <sys/filio.h> header file. */
837
/* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
838
 
839
/* Define to 1 if you have the <sys/ioctl.h> header file. */
840
/* #undef _GLIBCXX_HAVE_SYS_IOCTL_H */
841
 
842
/* Define to 1 if you have the <sys/ipc.h> header file. */
843
/* #undef _GLIBCXX_HAVE_SYS_IPC_H */
844
 
845
/* Define to 1 if you have the <sys/isa_defs.h> header file. */
846
/* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
847
 
848
/* Define to 1 if you have the <sys/machine.h> header file. */
849
/* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
850
 
851
/* Define to 1 if you have the <sys/param.h> header file. */
852
#define _GLIBCXX_HAVE_SYS_PARAM_H 1
853
 
854
/* Define to 1 if you have the <sys/resource.h> header file. */
855
#define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
856
 
857
/* Define to 1 if you have the <sys/sem.h> header file. */
858
/* #undef _GLIBCXX_HAVE_SYS_SEM_H */
859
 
860
/* Define to 1 if you have the <sys/stat.h> header file. */
861
#define _GLIBCXX_HAVE_SYS_STAT_H 1
862
 
863
/* Define to 1 if you have the <sys/sysinfo.h> header file. */
864
/* #undef _GLIBCXX_HAVE_SYS_SYSINFO_H */
865
 
866
/* Define to 1 if you have the <sys/time.h> header file. */
867
#define _GLIBCXX_HAVE_SYS_TIME_H 1
868
 
869
/* Define to 1 if you have the <sys/types.h> header file. */
870
#define _GLIBCXX_HAVE_SYS_TYPES_H 1
871
 
872
/* Define to 1 if you have the <sys/uio.h> header file. */
873
/* #undef _GLIBCXX_HAVE_SYS_UIO_H */
874
 
875
/* Define if S_IFREG is available in <sys/stat.h>. */
876
/* #undef _GLIBCXX_HAVE_S_IFREG */
877
 
878
/* Define if S_IFREG is available in <sys/stat.h>. */
879
#define _GLIBCXX_HAVE_S_ISREG 1
880
 
881
/* Define to 1 if you have the `tanf' function. */
882
#define _GLIBCXX_HAVE_TANF 1
883
 
884
/* Define to 1 if you have the `tanhf' function. */
885
#define _GLIBCXX_HAVE_TANHF 1
886
 
887
/* Define to 1 if you have the `tanhl' function. */
888
/* #undef _GLIBCXX_HAVE_TANHL */
889
 
890
/* Define to 1 if you have the `tanl' function. */
891
/* #undef _GLIBCXX_HAVE_TANL */
892
 
893
/* Define to 1 if you have the <tgmath.h> header file. */
894
#define _GLIBCXX_HAVE_TGMATH_H 1
895
 
896
/* Define to 1 if the target supports thread-local storage. */
897
/* #undef _GLIBCXX_HAVE_TLS */
898
 
899
/* Define to 1 if you have the <unistd.h> header file. */
900
#define _GLIBCXX_HAVE_UNISTD_H 1
901
 
902
/* Defined if usleep exists. */
903
#define _GLIBCXX_HAVE_USLEEP 1
904
 
905
/* Defined if vfwscanf exists. */
906
#define _GLIBCXX_HAVE_VFWSCANF 1
907
 
908
/* Defined if vswscanf exists. */
909
#define _GLIBCXX_HAVE_VSWSCANF 1
910
 
911
/* Defined if vwscanf exists. */
912
#define _GLIBCXX_HAVE_VWSCANF 1
913
 
914
/* Define to 1 if you have the <wchar.h> header file. */
915
#define _GLIBCXX_HAVE_WCHAR_H 1
916
 
917
/* Defined if wcstof exists. */
918
#define _GLIBCXX_HAVE_WCSTOF 1
919
 
920
/* Define to 1 if you have the <wctype.h> header file. */
921
#define _GLIBCXX_HAVE_WCTYPE_H 1
922
 
923
/* Define if writev is available in <sys/uio.h>. */
924
/* #undef _GLIBCXX_HAVE_WRITEV */
925
 
926
/* Define to 1 if you have the `_acosf' function. */
927
/* #undef _GLIBCXX_HAVE__ACOSF */
928
 
929
/* Define to 1 if you have the `_acosl' function. */
930
/* #undef _GLIBCXX_HAVE__ACOSL */
931
 
932
/* Define to 1 if you have the `_asinf' function. */
933
/* #undef _GLIBCXX_HAVE__ASINF */
934
 
935
/* Define to 1 if you have the `_asinl' function. */
936
/* #undef _GLIBCXX_HAVE__ASINL */
937
 
938
/* Define to 1 if you have the `_atan2f' function. */
939
/* #undef _GLIBCXX_HAVE__ATAN2F */
940
 
941
/* Define to 1 if you have the `_atan2l' function. */
942
/* #undef _GLIBCXX_HAVE__ATAN2L */
943
 
944
/* Define to 1 if you have the `_atanf' function. */
945
/* #undef _GLIBCXX_HAVE__ATANF */
946
 
947
/* Define to 1 if you have the `_atanl' function. */
948
/* #undef _GLIBCXX_HAVE__ATANL */
949
 
950
/* Define to 1 if you have the `_ceilf' function. */
951
/* #undef _GLIBCXX_HAVE__CEILF */
952
 
953
/* Define to 1 if you have the `_ceill' function. */
954
/* #undef _GLIBCXX_HAVE__CEILL */
955
 
956
/* Define to 1 if you have the `_cosf' function. */
957
/* #undef _GLIBCXX_HAVE__COSF */
958
 
959
/* Define to 1 if you have the `_coshf' function. */
960
/* #undef _GLIBCXX_HAVE__COSHF */
961
 
962
/* Define to 1 if you have the `_coshl' function. */
963
/* #undef _GLIBCXX_HAVE__COSHL */
964
 
965
/* Define to 1 if you have the `_cosl' function. */
966
/* #undef _GLIBCXX_HAVE__COSL */
967
 
968
/* Define to 1 if you have the `_expf' function. */
969
/* #undef _GLIBCXX_HAVE__EXPF */
970
 
971
/* Define to 1 if you have the `_expl' function. */
972
/* #undef _GLIBCXX_HAVE__EXPL */
973
 
974
/* Define to 1 if you have the `_fabsf' function. */
975
/* #undef _GLIBCXX_HAVE__FABSF */
976
 
977
/* Define to 1 if you have the `_fabsl' function. */
978
/* #undef _GLIBCXX_HAVE__FABSL */
979
 
980
/* Define to 1 if you have the `_finite' function. */
981
/* #undef _GLIBCXX_HAVE__FINITE */
982
 
983
/* Define to 1 if you have the `_finitef' function. */
984
/* #undef _GLIBCXX_HAVE__FINITEF */
985
 
986
/* Define to 1 if you have the `_finitel' function. */
987
/* #undef _GLIBCXX_HAVE__FINITEL */
988
 
989
/* Define to 1 if you have the `_floorf' function. */
990
/* #undef _GLIBCXX_HAVE__FLOORF */
991
 
992
/* Define to 1 if you have the `_floorl' function. */
993
/* #undef _GLIBCXX_HAVE__FLOORL */
994
 
995
/* Define to 1 if you have the `_fmodf' function. */
996
/* #undef _GLIBCXX_HAVE__FMODF */
997
 
998
/* Define to 1 if you have the `_fmodl' function. */
999
/* #undef _GLIBCXX_HAVE__FMODL */
1000
 
1001
/* Define to 1 if you have the `_fpclass' function. */
1002
/* #undef _GLIBCXX_HAVE__FPCLASS */
1003
 
1004
/* Define to 1 if you have the `_frexpf' function. */
1005
/* #undef _GLIBCXX_HAVE__FREXPF */
1006
 
1007
/* Define to 1 if you have the `_frexpl' function. */
1008
/* #undef _GLIBCXX_HAVE__FREXPL */
1009
 
1010
/* Define to 1 if you have the `_hypot' function. */
1011
/* #undef _GLIBCXX_HAVE__HYPOT */
1012
 
1013
/* Define to 1 if you have the `_hypotf' function. */
1014
/* #undef _GLIBCXX_HAVE__HYPOTF */
1015
 
1016
/* Define to 1 if you have the `_hypotl' function. */
1017
/* #undef _GLIBCXX_HAVE__HYPOTL */
1018
 
1019
/* Define to 1 if you have the `_isinf' function. */
1020
/* #undef _GLIBCXX_HAVE__ISINF */
1021
 
1022
/* Define to 1 if you have the `_isinff' function. */
1023
/* #undef _GLIBCXX_HAVE__ISINFF */
1024
 
1025
/* Define to 1 if you have the `_isinfl' function. */
1026
/* #undef _GLIBCXX_HAVE__ISINFL */
1027
 
1028
/* Define to 1 if you have the `_isnan' function. */
1029
/* #undef _GLIBCXX_HAVE__ISNAN */
1030
 
1031
/* Define to 1 if you have the `_isnanf' function. */
1032
/* #undef _GLIBCXX_HAVE__ISNANF */
1033
 
1034
/* Define to 1 if you have the `_isnanl' function. */
1035
/* #undef _GLIBCXX_HAVE__ISNANL */
1036
 
1037
/* Define to 1 if you have the `_ldexpf' function. */
1038
/* #undef _GLIBCXX_HAVE__LDEXPF */
1039
 
1040
/* Define to 1 if you have the `_ldexpl' function. */
1041
/* #undef _GLIBCXX_HAVE__LDEXPL */
1042
 
1043
/* Define to 1 if you have the `_log10f' function. */
1044
/* #undef _GLIBCXX_HAVE__LOG10F */
1045
 
1046
/* Define to 1 if you have the `_log10l' function. */
1047
/* #undef _GLIBCXX_HAVE__LOG10L */
1048
 
1049
/* Define to 1 if you have the `_logf' function. */
1050
/* #undef _GLIBCXX_HAVE__LOGF */
1051
 
1052
/* Define to 1 if you have the `_logl' function. */
1053
/* #undef _GLIBCXX_HAVE__LOGL */
1054
 
1055
/* Define to 1 if you have the `_modf' function. */
1056
/* #undef _GLIBCXX_HAVE__MODF */
1057
 
1058
/* Define to 1 if you have the `_modff' function. */
1059
/* #undef _GLIBCXX_HAVE__MODFF */
1060
 
1061
/* Define to 1 if you have the `_modfl' function. */
1062
/* #undef _GLIBCXX_HAVE__MODFL */
1063
 
1064
/* Define to 1 if you have the `_powf' function. */
1065
/* #undef _GLIBCXX_HAVE__POWF */
1066
 
1067
/* Define to 1 if you have the `_powl' function. */
1068
/* #undef _GLIBCXX_HAVE__POWL */
1069
 
1070
/* Define to 1 if you have the `_qfpclass' function. */
1071
/* #undef _GLIBCXX_HAVE__QFPCLASS */
1072
 
1073
/* Define to 1 if you have the `_sincos' function. */
1074
/* #undef _GLIBCXX_HAVE__SINCOS */
1075
 
1076
/* Define to 1 if you have the `_sincosf' function. */
1077
/* #undef _GLIBCXX_HAVE__SINCOSF */
1078
 
1079
/* Define to 1 if you have the `_sincosl' function. */
1080
/* #undef _GLIBCXX_HAVE__SINCOSL */
1081
 
1082
/* Define to 1 if you have the `_sinf' function. */
1083
/* #undef _GLIBCXX_HAVE__SINF */
1084
 
1085
/* Define to 1 if you have the `_sinhf' function. */
1086
/* #undef _GLIBCXX_HAVE__SINHF */
1087
 
1088
/* Define to 1 if you have the `_sinhl' function. */
1089
/* #undef _GLIBCXX_HAVE__SINHL */
1090
 
1091
/* Define to 1 if you have the `_sinl' function. */
1092
/* #undef _GLIBCXX_HAVE__SINL */
1093
 
1094
/* Define to 1 if you have the `_sqrtf' function. */
1095
/* #undef _GLIBCXX_HAVE__SQRTF */
1096
 
1097
/* Define to 1 if you have the `_sqrtl' function. */
1098
/* #undef _GLIBCXX_HAVE__SQRTL */
1099
 
1100
/* Define to 1 if you have the `_tanf' function. */
1101
/* #undef _GLIBCXX_HAVE__TANF */
1102
 
1103
/* Define to 1 if you have the `_tanhf' function. */
1104
/* #undef _GLIBCXX_HAVE__TANHF */
1105
 
1106
/* Define to 1 if you have the `_tanhl' function. */
1107
/* #undef _GLIBCXX_HAVE__TANHL */
1108
 
1109
/* Define to 1 if you have the `_tanl' function. */
1110
/* #undef _GLIBCXX_HAVE__TANL */
1111
 
1112
/* Define as const if the declaration of iconv() needs const. */
1113
/* #undef _GLIBCXX_ICONV_CONST */
1114
 
1115
/* Define to the sub-directory in which libtool stores uninstalled libraries.
1116
   */
1117
#define LT_OBJDIR ".libs/"
1118
 
1119
/* Name of package */
1120
/* #undef _GLIBCXX_PACKAGE */
1121
 
1122
/* Define to the address where bug reports for this package should be sent. */
1123
#define _GLIBCXX_PACKAGE_BUGREPORT ""
1124
 
1125
/* Define to the full name of this package. */
1126
#define _GLIBCXX_PACKAGE_NAME "package-unused"
1127
 
1128
/* Define to the full name and version of this package. */
1129
#define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1130
 
1131
/* Define to the one symbol short name of this package. */
1132
#define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1133
 
1134
/* Define to the home page for this package. */
1135
#define _GLIBCXX_PACKAGE_URL ""
1136
 
1137
/* Define to the version of this package. */
1138
#define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1139
 
1140
/* The size of `char', as computed by sizeof. */
1141
/* #undef SIZEOF_CHAR */
1142
 
1143
/* The size of `int', as computed by sizeof. */
1144
/* #undef SIZEOF_INT */
1145
 
1146
/* The size of `long', as computed by sizeof. */
1147
/* #undef SIZEOF_LONG */
1148
 
1149
/* The size of `short', as computed by sizeof. */
1150
/* #undef SIZEOF_SHORT */
1151
 
1152
/* The size of `void *', as computed by sizeof. */
1153
/* #undef SIZEOF_VOID_P */
1154
 
1155
/* Define to 1 if you have the ANSI C header files. */
1156
#define STDC_HEADERS 1
1157
 
1158
/* Version number of package */
1159
/* #undef _GLIBCXX_VERSION */
1160
 
1161
/* Define if the compiler supports C++11 atomics. */
1162
/* #undef _GLIBCXX_ATOMIC_BUILTINS */
1163
 
1164
/* Define to use concept checking code from the boost libraries. */
1165
/* #undef _GLIBCXX_CONCEPT_CHECKS */
1166
 
1167
/* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
1168
   undefined for platform defaults */
1169
#define _GLIBCXX_FULLY_DYNAMIC_STRING 0
1170
 
1171
/* Define if gthreads library is available. */
1172
/* #undef _GLIBCXX_HAS_GTHREADS */
1173
 
1174
/* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1175
#define _GLIBCXX_HOSTED 1
1176
 
1177
/* Define if compatibility should be provided for -mlong-double-64. */
1178
 
1179
/* Define if ptrdiff_t is int. */
1180
/* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
1181
 
1182
/* Define if using setrlimit to set resource limits during "make check" */
1183
/* #undef _GLIBCXX_RES_LIMITS */
1184
 
1185
/* Define if size_t is unsigned int. */
1186
/* #undef _GLIBCXX_SIZE_T_IS_UINT */
1187
 
1188
/* Define if the compiler is configured for setjmp/longjmp exceptions. */
1189
/* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
1190
 
1191
/* Define to the value of the EOF integer constant. */
1192
#define _GLIBCXX_STDIO_EOF -1
1193
 
1194
/* Define to the value of the SEEK_CUR integer constant. */
1195
#define _GLIBCXX_STDIO_SEEK_CUR 1
1196
 
1197
/* Define to the value of the SEEK_END integer constant. */
1198
#define _GLIBCXX_STDIO_SEEK_END 2
1199
 
1200
/* Define to use symbol versioning in the shared library. */
1201
/* #undef _GLIBCXX_SYMVER */
1202
 
1203
/* Define to use darwin versioning in the shared library. */
1204
/* #undef _GLIBCXX_SYMVER_DARWIN */
1205
 
1206
/* Define to use GNU versioning in the shared library. */
1207
/* #undef _GLIBCXX_SYMVER_GNU */
1208
 
1209
/* Define to use GNU namespace versioning in the shared library. */
1210
/* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1211
 
1212
/* Define to use Sun versioning in the shared library. */
1213
/* #undef _GLIBCXX_SYMVER_SUN */
1214
 
1215
/* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1216
   <stdio.h>, and <stdlib.h> can be used or exposed. */
1217
/* #undef _GLIBCXX_USE_C99 */
1218
 
1219
/* Define if C99 functions in <complex.h> should be used in <complex>. Using
1220
   compiler builtins for these functions requires corresponding C99 library
1221
   functions to be present. */
1222
/* #undef _GLIBCXX_USE_C99_COMPLEX */
1223
 
1224
/* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1225
   Using compiler builtins for these functions requires corresponding C99
1226
   library functions to be present. */
1227
/* #undef _GLIBCXX_USE_C99_COMPLEX_TR1 */
1228
 
1229
/* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1230
   namespace std::tr1. */
1231
#define _GLIBCXX_USE_C99_CTYPE_TR1 1
1232
 
1233
/* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1234
   namespace std::tr1. */
1235
/* #undef _GLIBCXX_USE_C99_FENV_TR1 */
1236
 
1237
/* Define if C99 functions in <inttypes.h> should be imported in
1238
   <tr1/cinttypes> in namespace std::tr1. */
1239
#define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1240
 
1241
/* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1242
   <tr1/cinttypes> in namespace std::tr1. */
1243
#define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1244
 
1245
/* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1246
   in namespace std. */
1247
#define _GLIBCXX_USE_C99_MATH 1
1248
 
1249
/* Define if C99 functions or macros in <math.h> should be imported in
1250
   <tr1/cmath> in namespace std::tr1. */
1251
/* #undef _GLIBCXX_USE_C99_MATH_TR1 */
1252
 
1253
/* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1254
   namespace std::tr1. */
1255
#define _GLIBCXX_USE_C99_STDINT_TR1 1
1256
 
1257
/* Defined if clock_gettime has monotonic clock support. */
1258
/* #undef _GLIBCXX_USE_CLOCK_MONOTONIC */
1259
 
1260
/* Defined if clock_gettime has realtime clock support. */
1261
/* #undef _GLIBCXX_USE_CLOCK_REALTIME */
1262
 
1263
/* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1264
   this host. */
1265
/* #undef _GLIBCXX_USE_DECIMAL_FLOAT */
1266
 
1267
/* Define if __float128 is supported on this host. */
1268
/* #undef _GLIBCXX_USE_FLOAT128 */
1269
 
1270
/* Defined if gettimeofday is available. */
1271
#define _GLIBCXX_USE_GETTIMEOFDAY 1
1272
 
1273
/* Define if get_nprocs is available in <sys/sysinfo.h>. */
1274
/* #undef _GLIBCXX_USE_GET_NPROCS */
1275
 
1276
/* Define if __int128 is supported on this host. */
1277
/* #undef _GLIBCXX_USE_INT128 */
1278
 
1279
/* Define if LFS support is available. */
1280
/* #undef _GLIBCXX_USE_LFS */
1281
 
1282
/* Define if code specialized for long long should be used. */
1283
#define _GLIBCXX_USE_LONG_LONG 1
1284
 
1285
/* Defined if nanosleep is available. */
1286
/* #undef _GLIBCXX_USE_NANOSLEEP */
1287
 
1288
/* Define if NLS translations are to be used. */
1289
/* #undef _GLIBCXX_USE_NLS */
1290
 
1291
/* Define if pthreads_num_processors_np is available in <pthread.h>. */
1292
/* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
1293
 
1294
/* Define if /dev/random and /dev/urandom are available for the random_device
1295
   of TR1 (Chapter 5.1). */
1296
/* #undef _GLIBCXX_USE_RANDOM_TR1 */
1297
 
1298
/* Defined if sched_yield is available. */
1299
/* #undef _GLIBCXX_USE_SCHED_YIELD */
1300
 
1301
/* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
1302
#define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
1303
 
1304
/* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
1305
/* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
1306
 
1307
/* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
1308
/* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
1309
 
1310
/* Define if code specialized for wchar_t should be used. */
1311
#define _GLIBCXX_USE_WCHAR_T 1
1312
 
1313
/* Define to 1 if a verbose library is built, or 0 otherwise. */
1314
#define _GLIBCXX_VERBOSE 1
1315
 
1316
/* Defined if as can handle rdrand. */
1317
/* #undef _GLIBCXX_X86_RDRAND */
1318
 
1319
/* Define to 1 if mutex_timedlock is available. */
1320
#define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
1321
 
1322
#if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1323
# define _GLIBCXX_HAVE_ACOSF 1
1324
# define acosf _acosf
1325
#endif
1326
 
1327
#if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1328
# define _GLIBCXX_HAVE_ACOSL 1
1329
# define acosl _acosl
1330
#endif
1331
 
1332
#if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1333
# define _GLIBCXX_HAVE_ASINF 1
1334
# define asinf _asinf
1335
#endif
1336
 
1337
#if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1338
# define _GLIBCXX_HAVE_ASINL 1
1339
# define asinl _asinl
1340
#endif
1341
 
1342
#if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1343
# define _GLIBCXX_HAVE_ATAN2F 1
1344
# define atan2f _atan2f
1345
#endif
1346
 
1347
#if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1348
# define _GLIBCXX_HAVE_ATAN2L 1
1349
# define atan2l _atan2l
1350
#endif
1351
 
1352
#if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1353
# define _GLIBCXX_HAVE_ATANF 1
1354
# define atanf _atanf
1355
#endif
1356
 
1357
#if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1358
# define _GLIBCXX_HAVE_ATANL 1
1359
# define atanl _atanl
1360
#endif
1361
 
1362
#if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1363
# define _GLIBCXX_HAVE_CEILF 1
1364
# define ceilf _ceilf
1365
#endif
1366
 
1367
#if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1368
# define _GLIBCXX_HAVE_CEILL 1
1369
# define ceill _ceill
1370
#endif
1371
 
1372
#if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1373
# define _GLIBCXX_HAVE_COSF 1
1374
# define cosf _cosf
1375
#endif
1376
 
1377
#if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1378
# define _GLIBCXX_HAVE_COSHF 1
1379
# define coshf _coshf
1380
#endif
1381
 
1382
#if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1383
# define _GLIBCXX_HAVE_COSHL 1
1384
# define coshl _coshl
1385
#endif
1386
 
1387
#if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1388
# define _GLIBCXX_HAVE_COSL 1
1389
# define cosl _cosl
1390
#endif
1391
 
1392
#if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1393
# define _GLIBCXX_HAVE_EXPF 1
1394
# define expf _expf
1395
#endif
1396
 
1397
#if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1398
# define _GLIBCXX_HAVE_EXPL 1
1399
# define expl _expl
1400
#endif
1401
 
1402
#if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1403
# define _GLIBCXX_HAVE_FABSF 1
1404
# define fabsf _fabsf
1405
#endif
1406
 
1407
#if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1408
# define _GLIBCXX_HAVE_FABSL 1
1409
# define fabsl _fabsl
1410
#endif
1411
 
1412
#if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1413
# define _GLIBCXX_HAVE_FINITE 1
1414
# define finite _finite
1415
#endif
1416
 
1417
#if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1418
# define _GLIBCXX_HAVE_FINITEF 1
1419
# define finitef _finitef
1420
#endif
1421
 
1422
#if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1423
# define _GLIBCXX_HAVE_FINITEL 1
1424
# define finitel _finitel
1425
#endif
1426
 
1427
#if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1428
# define _GLIBCXX_HAVE_FLOORF 1
1429
# define floorf _floorf
1430
#endif
1431
 
1432
#if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1433
# define _GLIBCXX_HAVE_FLOORL 1
1434
# define floorl _floorl
1435
#endif
1436
 
1437
#if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1438
# define _GLIBCXX_HAVE_FMODF 1
1439
# define fmodf _fmodf
1440
#endif
1441
 
1442
#if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1443
# define _GLIBCXX_HAVE_FMODL 1
1444
# define fmodl _fmodl
1445
#endif
1446
 
1447
#if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1448
# define _GLIBCXX_HAVE_FPCLASS 1
1449
# define fpclass _fpclass
1450
#endif
1451
 
1452
#if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1453
# define _GLIBCXX_HAVE_FREXPF 1
1454
# define frexpf _frexpf
1455
#endif
1456
 
1457
#if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1458
# define _GLIBCXX_HAVE_FREXPL 1
1459
# define frexpl _frexpl
1460
#endif
1461
 
1462
#if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
1463
# define _GLIBCXX_HAVE_HYPOT 1
1464
# define hypot _hypot
1465
#endif
1466
 
1467
#if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
1468
# define _GLIBCXX_HAVE_HYPOTF 1
1469
# define hypotf _hypotf
1470
#endif
1471
 
1472
#if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
1473
# define _GLIBCXX_HAVE_HYPOTL 1
1474
# define hypotl _hypotl
1475
#endif
1476
 
1477
#if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1478
# define _GLIBCXX_HAVE_ISINF 1
1479
# define isinf _isinf
1480
#endif
1481
 
1482
#if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1483
# define _GLIBCXX_HAVE_ISINFF 1
1484
# define isinff _isinff
1485
#endif
1486
 
1487
#if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1488
# define _GLIBCXX_HAVE_ISINFL 1
1489
# define isinfl _isinfl
1490
#endif
1491
 
1492
#if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
1493
# define _GLIBCXX_HAVE_ISNAN 1
1494
# define isnan _isnan
1495
#endif
1496
 
1497
#if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1498
# define _GLIBCXX_HAVE_ISNANF 1
1499
# define isnanf _isnanf
1500
#endif
1501
 
1502
#if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1503
# define _GLIBCXX_HAVE_ISNANL 1
1504
# define isnanl _isnanl
1505
#endif
1506
 
1507
#if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1508
# define _GLIBCXX_HAVE_LDEXPF 1
1509
# define ldexpf _ldexpf
1510
#endif
1511
 
1512
#if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1513
# define _GLIBCXX_HAVE_LDEXPL 1
1514
# define ldexpl _ldexpl
1515
#endif
1516
 
1517
#if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1518
# define _GLIBCXX_HAVE_LOG10F 1
1519
# define log10f _log10f
1520
#endif
1521
 
1522
#if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1523
# define _GLIBCXX_HAVE_LOG10L 1
1524
# define log10l _log10l
1525
#endif
1526
 
1527
#if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1528
# define _GLIBCXX_HAVE_LOGF 1
1529
# define logf _logf
1530
#endif
1531
 
1532
#if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1533
# define _GLIBCXX_HAVE_LOGL 1
1534
# define logl _logl
1535
#endif
1536
 
1537
#if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1538
# define _GLIBCXX_HAVE_MODF 1
1539
# define modf _modf
1540
#endif
1541
 
1542
#if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
1543
# define _GLIBCXX_HAVE_MODFF 1
1544
# define modff _modff
1545
#endif
1546
 
1547
#if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
1548
# define _GLIBCXX_HAVE_MODFL 1
1549
# define modfl _modfl
1550
#endif
1551
 
1552
#if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1553
# define _GLIBCXX_HAVE_POWF 1
1554
# define powf _powf
1555
#endif
1556
 
1557
#if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1558
# define _GLIBCXX_HAVE_POWL 1
1559
# define powl _powl
1560
#endif
1561
 
1562
#if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1563
# define _GLIBCXX_HAVE_QFPCLASS 1
1564
# define qfpclass _qfpclass
1565
#endif
1566
 
1567
#if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1568
# define _GLIBCXX_HAVE_SINCOS 1
1569
# define sincos _sincos
1570
#endif
1571
 
1572
#if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1573
# define _GLIBCXX_HAVE_SINCOSF 1
1574
# define sincosf _sincosf
1575
#endif
1576
 
1577
#if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1578
# define _GLIBCXX_HAVE_SINCOSL 1
1579
# define sincosl _sincosl
1580
#endif
1581
 
1582
#if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1583
# define _GLIBCXX_HAVE_SINF 1
1584
# define sinf _sinf
1585
#endif
1586
 
1587
#if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1588
# define _GLIBCXX_HAVE_SINHF 1
1589
# define sinhf _sinhf
1590
#endif
1591
 
1592
#if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1593
# define _GLIBCXX_HAVE_SINHL 1
1594
# define sinhl _sinhl
1595
#endif
1596
 
1597
#if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1598
# define _GLIBCXX_HAVE_SINL 1
1599
# define sinl _sinl
1600
#endif
1601
 
1602
#if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1603
# define _GLIBCXX_HAVE_SQRTF 1
1604
# define sqrtf _sqrtf
1605
#endif
1606
 
1607
#if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1608
# define _GLIBCXX_HAVE_SQRTL 1
1609
# define sqrtl _sqrtl
1610
#endif
1611
 
1612
#if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1613
# define _GLIBCXX_HAVE_STRTOF 1
1614
# define strtof _strtof
1615
#endif
1616
 
1617
#if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1618
# define _GLIBCXX_HAVE_STRTOLD 1
1619
# define strtold _strtold
1620
#endif
1621
 
1622
#if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1623
# define _GLIBCXX_HAVE_TANF 1
1624
# define tanf _tanf
1625
#endif
1626
 
1627
#if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1628
# define _GLIBCXX_HAVE_TANHF 1
1629
# define tanhf _tanhf
1630
#endif
1631
 
1632
#if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1633
# define _GLIBCXX_HAVE_TANHL 1
1634
# define tanhl _tanhl
1635
#endif
1636
 
1637
#if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1638
# define _GLIBCXX_HAVE_TANL 1
1639
# define tanl _tanl
1640
#endif
1641
 
1642
#endif // _GLIBCXX_CXX_CONFIG_H

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.