libstdc++
c++config.h
Go to the documentation of this file.
1
// Predefined symbols and macros -*- C++ -*-
2
3
// Copyright (C) 1997-2013 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__ 20130603
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
#define _GLIBCXX_HAVE_ACOSL 1
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
#define _GLIBCXX_HAVE_ASINL 1
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
#define _GLIBCXX_HAVE_ATAN2L 1
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
#define _GLIBCXX_HAVE_ATANL 1
489
490
/* Define to 1 if you have the `at_quick_exit' function. */
491
#define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
492
493
/* Define to 1 if the target assembler supports thread-local storage. */
494
/* #undef _GLIBCXX_HAVE_CC_TLS */
495
496
/* Define to 1 if you have the `ceilf' function. */
497
#define _GLIBCXX_HAVE_CEILF 1
498
499
/* Define to 1 if you have the `ceill' function. */
500
#define _GLIBCXX_HAVE_CEILL 1
501
502
/* Define to 1 if you have the <complex.h> header file. */
503
#define _GLIBCXX_HAVE_COMPLEX_H 1
504
505
/* Define to 1 if you have the `cosf' function. */
506
#define _GLIBCXX_HAVE_COSF 1
507
508
/* Define to 1 if you have the `coshf' function. */
509
#define _GLIBCXX_HAVE_COSHF 1
510
511
/* Define to 1 if you have the `coshl' function. */
512
#define _GLIBCXX_HAVE_COSHL 1
513
514
/* Define to 1 if you have the `cosl' function. */
515
#define _GLIBCXX_HAVE_COSL 1
516
517
/* Define to 1 if you have the <dlfcn.h> header file. */
518
#define _GLIBCXX_HAVE_DLFCN_H 1
519
520
/* Define if EBADMSG exists. */
521
#define _GLIBCXX_HAVE_EBADMSG 1
522
523
/* Define if ECANCELED exists. */
524
#define _GLIBCXX_HAVE_ECANCELED 1
525
526
/* Define if ECHILD exists. */
527
#define _GLIBCXX_HAVE_ECHILD 1
528
529
/* Define if EIDRM exists. */
530
#define _GLIBCXX_HAVE_EIDRM 1
531
532
/* Define to 1 if you have the <endian.h> header file. */
533
#define _GLIBCXX_HAVE_ENDIAN_H 1
534
535
/* Define if ENODATA exists. */
536
#define _GLIBCXX_HAVE_ENODATA 1
537
538
/* Define if ENOLINK exists. */
539
#define _GLIBCXX_HAVE_ENOLINK 1
540
541
/* Define if ENOSPC exists. */
542
#define _GLIBCXX_HAVE_ENOSPC 1
543
544
/* Define if ENOSR exists. */
545
#define _GLIBCXX_HAVE_ENOSR 1
546
547
/* Define if ENOSTR exists. */
548
#define _GLIBCXX_HAVE_ENOSTR 1
549
550
/* Define if ENOTRECOVERABLE exists. */
551
#define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
552
553
/* Define if ENOTSUP exists. */
554
#define _GLIBCXX_HAVE_ENOTSUP 1
555
556
/* Define if EOVERFLOW exists. */
557
#define _GLIBCXX_HAVE_EOVERFLOW 1
558
559
/* Define if EOWNERDEAD exists. */
560
#define _GLIBCXX_HAVE_EOWNERDEAD 1
561
562
/* Define if EPERM exists. */
563
#define _GLIBCXX_HAVE_EPERM 1
564
565
/* Define if EPROTO exists. */
566
#define _GLIBCXX_HAVE_EPROTO 1
567
568
/* Define if ETIME exists. */
569
#define _GLIBCXX_HAVE_ETIME 1
570
571
/* Define if ETIMEDOUT exists. */
572
#define _GLIBCXX_HAVE_ETIMEDOUT 1
573
574
/* Define if ETXTBSY exists. */
575
#define _GLIBCXX_HAVE_ETXTBSY 1
576
577
/* Define if EWOULDBLOCK exists. */
578
#define _GLIBCXX_HAVE_EWOULDBLOCK 1
579
580
/* Define to 1 if you have the <execinfo.h> header file. */
581
#define _GLIBCXX_HAVE_EXECINFO_H 1
582
583
/* Define to 1 if you have the `expf' function. */
584
#define _GLIBCXX_HAVE_EXPF 1
585
586
/* Define to 1 if you have the `expl' function. */
587
#define _GLIBCXX_HAVE_EXPL 1
588
589
/* Define to 1 if you have the `fabsf' function. */
590
#define _GLIBCXX_HAVE_FABSF 1
591
592
/* Define to 1 if you have the `fabsl' function. */
593
#define _GLIBCXX_HAVE_FABSL 1
594
595
/* Define to 1 if you have the <fenv.h> header file. */
596
#define _GLIBCXX_HAVE_FENV_H 1
597
598
/* Define to 1 if you have the `finite' function. */
599
#define _GLIBCXX_HAVE_FINITE 1
600
601
/* Define to 1 if you have the `finitef' function. */
602
#define _GLIBCXX_HAVE_FINITEF 1
603
604
/* Define to 1 if you have the `finitel' function. */
605
#define _GLIBCXX_HAVE_FINITEL 1
606
607
/* Define to 1 if you have the <float.h> header file. */
608
#define _GLIBCXX_HAVE_FLOAT_H 1
609
610
/* Define to 1 if you have the `floorf' function. */
611
#define _GLIBCXX_HAVE_FLOORF 1
612
613
/* Define to 1 if you have the `floorl' function. */
614
#define _GLIBCXX_HAVE_FLOORL 1
615
616
/* Define to 1 if you have the `fmodf' function. */
617
#define _GLIBCXX_HAVE_FMODF 1
618
619
/* Define to 1 if you have the `fmodl' function. */
620
#define _GLIBCXX_HAVE_FMODL 1
621
622
/* Define to 1 if you have the `fpclass' function. */
623
/* #undef _GLIBCXX_HAVE_FPCLASS */
624
625
/* Define to 1 if you have the <fp.h> header file. */
626
/* #undef _GLIBCXX_HAVE_FP_H */
627
628
/* Define to 1 if you have the `frexpf' function. */
629
#define _GLIBCXX_HAVE_FREXPF 1
630
631
/* Define to 1 if you have the `frexpl' function. */
632
#define _GLIBCXX_HAVE_FREXPL 1
633
634
/* Define if _Unwind_GetIPInfo is available. */
635
#define _GLIBCXX_HAVE_GETIPINFO 1
636
637
/* Define if gets is available in <stdio.h>. */
638
#define _GLIBCXX_HAVE_GETS 1
639
640
/* Define to 1 if you have the `hypot' function. */
641
#define _GLIBCXX_HAVE_HYPOT 1
642
643
/* Define to 1 if you have the `hypotf' function. */
644
#define _GLIBCXX_HAVE_HYPOTF 1
645
646
/* Define to 1 if you have the `hypotl' function. */
647
#define _GLIBCXX_HAVE_HYPOTL 1
648
649
/* Define if you have the iconv() function. */
650
#define _GLIBCXX_HAVE_ICONV 1
651
652
/* Define to 1 if you have the <ieeefp.h> header file. */
653
/* #undef _GLIBCXX_HAVE_IEEEFP_H */
654
655
/* Define if int64_t is available in <stdint.h>. */
656
#define _GLIBCXX_HAVE_INT64_T 1
657
658
/* Define if int64_t is a long. */
659
/* #undef _GLIBCXX_HAVE_INT64_T_LONG */
660
661
/* Define if int64_t is a long long. */
662
#define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1
663
664
/* Define to 1 if you have the <inttypes.h> header file. */
665
#define _GLIBCXX_HAVE_INTTYPES_H 1
666
667
/* Define to 1 if you have the `isinf' function. */
668
#define _GLIBCXX_HAVE_ISINF 1
669
670
/* Define to 1 if you have the `isinff' function. */
671
#define _GLIBCXX_HAVE_ISINFF 1
672
673
/* Define to 1 if you have the `isinfl' function. */
674
#define _GLIBCXX_HAVE_ISINFL 1
675
676
/* Define to 1 if you have the `isnan' function. */
677
#define _GLIBCXX_HAVE_ISNAN 1
678
679
/* Define to 1 if you have the `isnanf' function. */
680
#define _GLIBCXX_HAVE_ISNANF 1
681
682
/* Define to 1 if you have the `isnanl' function. */
683
#define _GLIBCXX_HAVE_ISNANL 1
684
685
/* Defined if iswblank exists. */
686
#define _GLIBCXX_HAVE_ISWBLANK 1
687
688
/* Define if LC_MESSAGES is available in <locale.h>. */
689
#define _GLIBCXX_HAVE_LC_MESSAGES 1
690
691
/* Define to 1 if you have the `ldexpf' function. */
692
#define _GLIBCXX_HAVE_LDEXPF 1
693
694
/* Define to 1 if you have the `ldexpl' function. */
695
#define _GLIBCXX_HAVE_LDEXPL 1
696
697
/* Define to 1 if you have the <libintl.h> header file. */
698
#define _GLIBCXX_HAVE_LIBINTL_H 1
699
700
/* Only used in build directory testsuite_hooks.h. */
701
#define _GLIBCXX_HAVE_LIMIT_AS 1
702
703
/* Only used in build directory testsuite_hooks.h. */
704
#define _GLIBCXX_HAVE_LIMIT_DATA 1
705
706
/* Only used in build directory testsuite_hooks.h. */
707
#define _GLIBCXX_HAVE_LIMIT_FSIZE 1
708
709
/* Only used in build directory testsuite_hooks.h. */
710
#define _GLIBCXX_HAVE_LIMIT_RSS 1
711
712
/* Only used in build directory testsuite_hooks.h. */
713
#define _GLIBCXX_HAVE_LIMIT_VMEM 0
714
715
/* Define if futex syscall is available. */
716
#define _GLIBCXX_HAVE_LINUX_FUTEX 1
717
718
/* Define to 1 if you have the <locale.h> header file. */
719
#define _GLIBCXX_HAVE_LOCALE_H 1
720
721
/* Define to 1 if you have the `log10f' function. */
722
#define _GLIBCXX_HAVE_LOG10F 1
723
724
/* Define to 1 if you have the `log10l' function. */
725
#define _GLIBCXX_HAVE_LOG10L 1
726
727
/* Define to 1 if you have the `logf' function. */
728
#define _GLIBCXX_HAVE_LOGF 1
729
730
/* Define to 1 if you have the `logl' function. */
731
#define _GLIBCXX_HAVE_LOGL 1
732
733
/* Define to 1 if you have the <machine/endian.h> header file. */
734
/* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
735
736
/* Define to 1 if you have the <machine/param.h> header file. */
737
/* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
738
739
/* Define if mbstate_t exists in wchar.h. */
740
#define _GLIBCXX_HAVE_MBSTATE_T 1
741
742
/* Define to 1 if you have the <memory.h> header file. */
743
#define _GLIBCXX_HAVE_MEMORY_H 1
744
745
/* Define to 1 if you have the `modf' function. */
746
#define _GLIBCXX_HAVE_MODF 1
747
748
/* Define to 1 if you have the `modff' function. */
749
#define _GLIBCXX_HAVE_MODFF 1
750
751
/* Define to 1 if you have the `modfl' function. */
752
#define _GLIBCXX_HAVE_MODFL 1
753
754
/* Define to 1 if you have the <nan.h> header file. */
755
/* #undef _GLIBCXX_HAVE_NAN_H */
756
757
/* Define if poll is available in <poll.h>. */
758
#define _GLIBCXX_HAVE_POLL 1
759
760
/* Define to 1 if you have the `powf' function. */
761
#define _GLIBCXX_HAVE_POWF 1
762
763
/* Define to 1 if you have the `powl' function. */
764
#define _GLIBCXX_HAVE_POWL 1
765
766
/* Define to 1 if you have the `qfpclass' function. */
767
/* #undef _GLIBCXX_HAVE_QFPCLASS */
768
769
/* Define to 1 if you have the `quick_exit' function. */
770
#define _GLIBCXX_HAVE_QUICK_EXIT 1
771
772
/* Define to 1 if you have the `setenv' function. */
773
#define _GLIBCXX_HAVE_SETENV 1
774
775
/* Define to 1 if you have the `sincos' function. */
776
#define _GLIBCXX_HAVE_SINCOS 1
777
778
/* Define to 1 if you have the `sincosf' function. */
779
#define _GLIBCXX_HAVE_SINCOSF 1
780
781
/* Define to 1 if you have the `sincosl' function. */
782
#define _GLIBCXX_HAVE_SINCOSL 1
783
784
/* Define to 1 if you have the `sinf' function. */
785
#define _GLIBCXX_HAVE_SINF 1
786
787
/* Define to 1 if you have the `sinhf' function. */
788
#define _GLIBCXX_HAVE_SINHF 1
789
790
/* Define to 1 if you have the `sinhl' function. */
791
#define _GLIBCXX_HAVE_SINHL 1
792
793
/* Define to 1 if you have the `sinl' function. */
794
#define _GLIBCXX_HAVE_SINL 1
795
796
/* Defined if sleep exists. */
797
#define _GLIBCXX_HAVE_SLEEP 1
798
799
/* Define to 1 if you have the `sqrtf' function. */
800
#define _GLIBCXX_HAVE_SQRTF 1
801
802
/* Define to 1 if you have the `sqrtl' function. */
803
#define _GLIBCXX_HAVE_SQRTL 1
804
805
/* Define to 1 if you have the <stdalign.h> header file. */
806
#define _GLIBCXX_HAVE_STDALIGN_H 1
807
808
/* Define to 1 if you have the <stdbool.h> header file. */
809
#define _GLIBCXX_HAVE_STDBOOL_H 1
810
811
/* Define to 1 if you have the <stdint.h> header file. */
812
#define _GLIBCXX_HAVE_STDINT_H 1
813
814
/* Define to 1 if you have the <stdlib.h> header file. */
815
#define _GLIBCXX_HAVE_STDLIB_H 1
816
817
/* Define if strerror_l is available in <string.h>. */
818
#define _GLIBCXX_HAVE_STRERROR_L 1
819
820
/* Define if strerror_r is available in <string.h>. */
821
#define _GLIBCXX_HAVE_STRERROR_R 1
822
823
/* Define to 1 if you have the <strings.h> header file. */
824
#define _GLIBCXX_HAVE_STRINGS_H 1
825
826
/* Define to 1 if you have the <string.h> header file. */
827
#define _GLIBCXX_HAVE_STRING_H 1
828
829
/* Define to 1 if you have the `strtof' function. */
830
#define _GLIBCXX_HAVE_STRTOF 1
831
832
/* Define to 1 if you have the `strtold' function. */
833
#define _GLIBCXX_HAVE_STRTOLD 1
834
835
/* Define if strxfrm_l is available in <string.h>. */
836
#define _GLIBCXX_HAVE_STRXFRM_L 1
837
838
/* Define to 1 if the target runtime linker supports binding the same symbol
839
to different versions. */
840
#define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
841
842
/* Define to 1 if you have the <sys/filio.h> header file. */
843
/* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
844
845
/* Define to 1 if you have the <sys/ioctl.h> header file. */
846
#define _GLIBCXX_HAVE_SYS_IOCTL_H 1
847
848
/* Define to 1 if you have the <sys/ipc.h> header file. */
849
#define _GLIBCXX_HAVE_SYS_IPC_H 1
850
851
/* Define to 1 if you have the <sys/isa_defs.h> header file. */
852
/* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
853
854
/* Define to 1 if you have the <sys/machine.h> header file. */
855
/* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
856
857
/* Define to 1 if you have the <sys/param.h> header file. */
858
#define _GLIBCXX_HAVE_SYS_PARAM_H 1
859
860
/* Define to 1 if you have the <sys/resource.h> header file. */
861
#define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
862
863
/* Define to 1 if you have a suitable <sys/sdt.h> header file */
864
#define _GLIBCXX_HAVE_SYS_SDT_H 1
865
866
/* Define to 1 if you have the <sys/sem.h> header file. */
867
#define _GLIBCXX_HAVE_SYS_SEM_H 1
868
869
/* Define to 1 if you have the <sys/stat.h> header file. */
870
#define _GLIBCXX_HAVE_SYS_STAT_H 1
871
872
/* Define to 1 if you have the <sys/sysinfo.h> header file. */
873
#define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
874
875
/* Define to 1 if you have the <sys/time.h> header file. */
876
#define _GLIBCXX_HAVE_SYS_TIME_H 1
877
878
/* Define to 1 if you have the <sys/types.h> header file. */
879
#define _GLIBCXX_HAVE_SYS_TYPES_H 1
880
881
/* Define to 1 if you have the <sys/uio.h> header file. */
882
#define _GLIBCXX_HAVE_SYS_UIO_H 1
883
884
/* Define if S_IFREG is available in <sys/stat.h>. */
885
/* #undef _GLIBCXX_HAVE_S_IFREG */
886
887
/* Define if S_IFREG is available in <sys/stat.h>. */
888
#define _GLIBCXX_HAVE_S_ISREG 1
889
890
/* Define to 1 if you have the `tanf' function. */
891
#define _GLIBCXX_HAVE_TANF 1
892
893
/* Define to 1 if you have the `tanhf' function. */
894
#define _GLIBCXX_HAVE_TANHF 1
895
896
/* Define to 1 if you have the `tanhl' function. */
897
#define _GLIBCXX_HAVE_TANHL 1
898
899
/* Define to 1 if you have the `tanl' function. */
900
#define _GLIBCXX_HAVE_TANL 1
901
902
/* Define to 1 if you have the <tgmath.h> header file. */
903
#define _GLIBCXX_HAVE_TGMATH_H 1
904
905
/* Define to 1 if the target supports thread-local storage. */
906
#define _GLIBCXX_HAVE_TLS 1
907
908
/* Define to 1 if you have the <unistd.h> header file. */
909
#define _GLIBCXX_HAVE_UNISTD_H 1
910
911
/* Defined if usleep exists. */
912
#define _GLIBCXX_HAVE_USLEEP 1
913
914
/* Defined if vfwscanf exists. */
915
#define _GLIBCXX_HAVE_VFWSCANF 1
916
917
/* Defined if vswscanf exists. */
918
#define _GLIBCXX_HAVE_VSWSCANF 1
919
920
/* Defined if vwscanf exists. */
921
#define _GLIBCXX_HAVE_VWSCANF 1
922
923
/* Define to 1 if you have the <wchar.h> header file. */
924
#define _GLIBCXX_HAVE_WCHAR_H 1
925
926
/* Defined if wcstof exists. */
927
#define _GLIBCXX_HAVE_WCSTOF 1
928
929
/* Define to 1 if you have the <wctype.h> header file. */
930
#define _GLIBCXX_HAVE_WCTYPE_H 1
931
932
/* Defined if Sleep exists. */
933
/* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
934
935
/* Define if writev is available in <sys/uio.h>. */
936
#define _GLIBCXX_HAVE_WRITEV 1
937
938
/* Define to 1 if you have the `_acosf' function. */
939
/* #undef _GLIBCXX_HAVE__ACOSF */
940
941
/* Define to 1 if you have the `_acosl' function. */
942
/* #undef _GLIBCXX_HAVE__ACOSL */
943
944
/* Define to 1 if you have the `_asinf' function. */
945
/* #undef _GLIBCXX_HAVE__ASINF */
946
947
/* Define to 1 if you have the `_asinl' function. */
948
/* #undef _GLIBCXX_HAVE__ASINL */
949
950
/* Define to 1 if you have the `_atan2f' function. */
951
/* #undef _GLIBCXX_HAVE__ATAN2F */
952
953
/* Define to 1 if you have the `_atan2l' function. */
954
/* #undef _GLIBCXX_HAVE__ATAN2L */
955
956
/* Define to 1 if you have the `_atanf' function. */
957
/* #undef _GLIBCXX_HAVE__ATANF */
958
959
/* Define to 1 if you have the `_atanl' function. */
960
/* #undef _GLIBCXX_HAVE__ATANL */
961
962
/* Define to 1 if you have the `_ceilf' function. */
963
/* #undef _GLIBCXX_HAVE__CEILF */
964
965
/* Define to 1 if you have the `_ceill' function. */
966
/* #undef _GLIBCXX_HAVE__CEILL */
967
968
/* Define to 1 if you have the `_cosf' function. */
969
/* #undef _GLIBCXX_HAVE__COSF */
970
971
/* Define to 1 if you have the `_coshf' function. */
972
/* #undef _GLIBCXX_HAVE__COSHF */
973
974
/* Define to 1 if you have the `_coshl' function. */
975
/* #undef _GLIBCXX_HAVE__COSHL */
976
977
/* Define to 1 if you have the `_cosl' function. */
978
/* #undef _GLIBCXX_HAVE__COSL */
979
980
/* Define to 1 if you have the `_expf' function. */
981
/* #undef _GLIBCXX_HAVE__EXPF */
982
983
/* Define to 1 if you have the `_expl' function. */
984
/* #undef _GLIBCXX_HAVE__EXPL */
985
986
/* Define to 1 if you have the `_fabsf' function. */
987
/* #undef _GLIBCXX_HAVE__FABSF */
988
989
/* Define to 1 if you have the `_fabsl' function. */
990
/* #undef _GLIBCXX_HAVE__FABSL */
991
992
/* Define to 1 if you have the `_finite' function. */
993
/* #undef _GLIBCXX_HAVE__FINITE */
994
995
/* Define to 1 if you have the `_finitef' function. */
996
/* #undef _GLIBCXX_HAVE__FINITEF */
997
998
/* Define to 1 if you have the `_finitel' function. */
999
/* #undef _GLIBCXX_HAVE__FINITEL */
1000
1001
/* Define to 1 if you have the `_floorf' function. */
1002
/* #undef _GLIBCXX_HAVE__FLOORF */
1003
1004
/* Define to 1 if you have the `_floorl' function. */
1005
/* #undef _GLIBCXX_HAVE__FLOORL */
1006
1007
/* Define to 1 if you have the `_fmodf' function. */
1008
/* #undef _GLIBCXX_HAVE__FMODF */
1009
1010
/* Define to 1 if you have the `_fmodl' function. */
1011
/* #undef _GLIBCXX_HAVE__FMODL */
1012
1013
/* Define to 1 if you have the `_fpclass' function. */
1014
/* #undef _GLIBCXX_HAVE__FPCLASS */
1015
1016
/* Define to 1 if you have the `_frexpf' function. */
1017
/* #undef _GLIBCXX_HAVE__FREXPF */
1018
1019
/* Define to 1 if you have the `_frexpl' function. */
1020
/* #undef _GLIBCXX_HAVE__FREXPL */
1021
1022
/* Define to 1 if you have the `_hypot' function. */
1023
/* #undef _GLIBCXX_HAVE__HYPOT */
1024
1025
/* Define to 1 if you have the `_hypotf' function. */
1026
/* #undef _GLIBCXX_HAVE__HYPOTF */
1027
1028
/* Define to 1 if you have the `_hypotl' function. */
1029
/* #undef _GLIBCXX_HAVE__HYPOTL */
1030
1031
/* Define to 1 if you have the `_isinf' function. */
1032
/* #undef _GLIBCXX_HAVE__ISINF */
1033
1034
/* Define to 1 if you have the `_isinff' function. */
1035
/* #undef _GLIBCXX_HAVE__ISINFF */
1036
1037
/* Define to 1 if you have the `_isinfl' function. */
1038
/* #undef _GLIBCXX_HAVE__ISINFL */
1039
1040
/* Define to 1 if you have the `_isnan' function. */
1041
/* #undef _GLIBCXX_HAVE__ISNAN */
1042
1043
/* Define to 1 if you have the `_isnanf' function. */
1044
/* #undef _GLIBCXX_HAVE__ISNANF */
1045
1046
/* Define to 1 if you have the `_isnanl' function. */
1047
/* #undef _GLIBCXX_HAVE__ISNANL */
1048
1049
/* Define to 1 if you have the `_ldexpf' function. */
1050
/* #undef _GLIBCXX_HAVE__LDEXPF */
1051
1052
/* Define to 1 if you have the `_ldexpl' function. */
1053
/* #undef _GLIBCXX_HAVE__LDEXPL */
1054
1055
/* Define to 1 if you have the `_log10f' function. */
1056
/* #undef _GLIBCXX_HAVE__LOG10F */
1057
1058
/* Define to 1 if you have the `_log10l' function. */
1059
/* #undef _GLIBCXX_HAVE__LOG10L */
1060
1061
/* Define to 1 if you have the `_logf' function. */
1062
/* #undef _GLIBCXX_HAVE__LOGF */
1063
1064
/* Define to 1 if you have the `_logl' function. */
1065
/* #undef _GLIBCXX_HAVE__LOGL */
1066
1067
/* Define to 1 if you have the `_modf' function. */
1068
/* #undef _GLIBCXX_HAVE__MODF */
1069
1070
/* Define to 1 if you have the `_modff' function. */
1071
/* #undef _GLIBCXX_HAVE__MODFF */
1072
1073
/* Define to 1 if you have the `_modfl' function. */
1074
/* #undef _GLIBCXX_HAVE__MODFL */
1075
1076
/* Define to 1 if you have the `_powf' function. */
1077
/* #undef _GLIBCXX_HAVE__POWF */
1078
1079
/* Define to 1 if you have the `_powl' function. */
1080
/* #undef _GLIBCXX_HAVE__POWL */
1081
1082
/* Define to 1 if you have the `_qfpclass' function. */
1083
/* #undef _GLIBCXX_HAVE__QFPCLASS */
1084
1085
/* Define to 1 if you have the `_sincos' function. */
1086
/* #undef _GLIBCXX_HAVE__SINCOS */
1087
1088
/* Define to 1 if you have the `_sincosf' function. */
1089
/* #undef _GLIBCXX_HAVE__SINCOSF */
1090
1091
/* Define to 1 if you have the `_sincosl' function. */
1092
/* #undef _GLIBCXX_HAVE__SINCOSL */
1093
1094
/* Define to 1 if you have the `_sinf' function. */
1095
/* #undef _GLIBCXX_HAVE__SINF */
1096
1097
/* Define to 1 if you have the `_sinhf' function. */
1098
/* #undef _GLIBCXX_HAVE__SINHF */
1099
1100
/* Define to 1 if you have the `_sinhl' function. */
1101
/* #undef _GLIBCXX_HAVE__SINHL */
1102
1103
/* Define to 1 if you have the `_sinl' function. */
1104
/* #undef _GLIBCXX_HAVE__SINL */
1105
1106
/* Define to 1 if you have the `_sqrtf' function. */
1107
/* #undef _GLIBCXX_HAVE__SQRTF */
1108
1109
/* Define to 1 if you have the `_sqrtl' function. */
1110
/* #undef _GLIBCXX_HAVE__SQRTL */
1111
1112
/* Define to 1 if you have the `_tanf' function. */
1113
/* #undef _GLIBCXX_HAVE__TANF */
1114
1115
/* Define to 1 if you have the `_tanhf' function. */
1116
/* #undef _GLIBCXX_HAVE__TANHF */
1117
1118
/* Define to 1 if you have the `_tanhl' function. */
1119
/* #undef _GLIBCXX_HAVE__TANHL */
1120
1121
/* Define to 1 if you have the `_tanl' function. */
1122
/* #undef _GLIBCXX_HAVE__TANL */
1123
1124
/* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
1125
/* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */
1126
1127
/* Define as const if the declaration of iconv() needs const. */
1128
#define _GLIBCXX_ICONV_CONST
1129
1130
/* Define to the sub-directory in which libtool stores uninstalled libraries.
1131
*/
1132
#define LT_OBJDIR ".libs/"
1133
1134
/* Name of package */
1135
/* #undef _GLIBCXX_PACKAGE */
1136
1137
/* Define to the address where bug reports for this package should be sent. */
1138
#define _GLIBCXX_PACKAGE_BUGREPORT ""
1139
1140
/* Define to the full name of this package. */
1141
#define _GLIBCXX_PACKAGE_NAME "package-unused"
1142
1143
/* Define to the full name and version of this package. */
1144
#define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1145
1146
/* Define to the one symbol short name of this package. */
1147
#define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1148
1149
/* Define to the home page for this package. */
1150
#define _GLIBCXX_PACKAGE_URL ""
1151
1152
/* Define to the version of this package. */
1153
#define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1154
1155
/* The size of `char', as computed by sizeof. */
1156
/* #undef SIZEOF_CHAR */
1157
1158
/* The size of `int', as computed by sizeof. */
1159
/* #undef SIZEOF_INT */
1160
1161
/* The size of `long', as computed by sizeof. */
1162
/* #undef SIZEOF_LONG */
1163
1164
/* The size of `short', as computed by sizeof. */
1165
/* #undef SIZEOF_SHORT */
1166
1167
/* The size of `void *', as computed by sizeof. */
1168
/* #undef SIZEOF_VOID_P */
1169
1170
/* Define to 1 if you have the ANSI C header files. */
1171
#define STDC_HEADERS 1
1172
1173
/* Version number of package */
1174
/* #undef _GLIBCXX_VERSION */
1175
1176
/* Define if the compiler supports C++11 atomics. */
1177
#define _GLIBCXX_ATOMIC_BUILTINS 1
1178
1179
/* Define to use concept checking code from the boost libraries. */
1180
/* #undef _GLIBCXX_CONCEPT_CHECKS */
1181
1182
/* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
1183
undefined for platform defaults */
1184
#define _GLIBCXX_FULLY_DYNAMIC_STRING 0
1185
1186
/* Define if gthreads library is available. */
1187
#define _GLIBCXX_HAS_GTHREADS 1
1188
1189
/* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1190
#define _GLIBCXX_HOSTED 1
1191
1192
/* Define if compatibility should be provided for -mlong-double-64. */
1193
1194
/* Define if ptrdiff_t is int. */
1195
#define _GLIBCXX_PTRDIFF_T_IS_INT 1
1196
1197
/* Define if using setrlimit to set resource limits during "make check" */
1198
#define _GLIBCXX_RES_LIMITS 1
1199
1200
/* Define if size_t is unsigned int. */
1201
#define _GLIBCXX_SIZE_T_IS_UINT 1
1202
1203
/* Define if the compiler is configured for setjmp/longjmp exceptions. */
1204
/* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
1205
1206
/* Define to the value of the EOF integer constant. */
1207
#define _GLIBCXX_STDIO_EOF -1
1208
1209
/* Define to the value of the SEEK_CUR integer constant. */
1210
#define _GLIBCXX_STDIO_SEEK_CUR 1
1211
1212
/* Define to the value of the SEEK_END integer constant. */
1213
#define _GLIBCXX_STDIO_SEEK_END 2
1214
1215
/* Define to use symbol versioning in the shared library. */
1216
#define _GLIBCXX_SYMVER 1
1217
1218
/* Define to use darwin versioning in the shared library. */
1219
/* #undef _GLIBCXX_SYMVER_DARWIN */
1220
1221
/* Define to use GNU versioning in the shared library. */
1222
#define _GLIBCXX_SYMVER_GNU 1
1223
1224
/* Define to use GNU namespace versioning in the shared library. */
1225
/* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1226
1227
/* Define to use Sun versioning in the shared library. */
1228
/* #undef _GLIBCXX_SYMVER_SUN */
1229
1230
/* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1231
<stdio.h>, and <stdlib.h> can be used or exposed. */
1232
#define _GLIBCXX_USE_C99 1
1233
1234
/* Define if C99 functions in <complex.h> should be used in <complex>. Using
1235
compiler builtins for these functions requires corresponding C99 library
1236
functions to be present. */
1237
#define _GLIBCXX_USE_C99_COMPLEX 1
1238
1239
/* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1240
Using compiler builtins for these functions requires corresponding C99
1241
library functions to be present. */
1242
#define _GLIBCXX_USE_C99_COMPLEX_TR1 1
1243
1244
/* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1245
namespace std::tr1. */
1246
#define _GLIBCXX_USE_C99_CTYPE_TR1 1
1247
1248
/* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1249
namespace std::tr1. */
1250
#define _GLIBCXX_USE_C99_FENV_TR1 1
1251
1252
/* Define if C99 functions in <inttypes.h> should be imported in
1253
<tr1/cinttypes> in namespace std::tr1. */
1254
#define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1255
1256
/* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1257
<tr1/cinttypes> in namespace std::tr1. */
1258
#define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1259
1260
/* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1261
in namespace std. */
1262
#define _GLIBCXX_USE_C99_MATH 1
1263
1264
/* Define if C99 functions or macros in <math.h> should be imported in
1265
<tr1/cmath> in namespace std::tr1. */
1266
#define _GLIBCXX_USE_C99_MATH_TR1 1
1267
1268
/* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1269
namespace std::tr1. */
1270
#define _GLIBCXX_USE_C99_STDINT_TR1 1
1271
1272
/* Defined if clock_gettime has monotonic clock support. */
1273
#define _GLIBCXX_USE_CLOCK_MONOTONIC 1
1274
1275
/* Defined if clock_gettime syscall has monotonic and realtime clock support. */
1276
#define _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL 1
1277
1278
/* Defined if clock_gettime has realtime clock support. */
1279
#define _GLIBCXX_USE_CLOCK_REALTIME 1
1280
1281
/* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1282
this host. */
1283
/* #undef _GLIBCXX_USE_DECIMAL_FLOAT */
1284
1285
/* Define if __float128 is supported on this host. */
1286
/* #undef _GLIBCXX_USE_FLOAT128 */
1287
1288
/* Defined if gettimeofday is available. */
1289
#define _GLIBCXX_USE_GETTIMEOFDAY 1
1290
1291
/* Define if get_nprocs is available in <sys/sysinfo.h>. */
1292
#define _GLIBCXX_USE_GET_NPROCS 1
1293
1294
/* Define if __int128 is supported on this host. */
1295
/* #undef _GLIBCXX_USE_INT128 */
1296
1297
/* Define if LFS support is available. */
1298
#define _GLIBCXX_USE_LFS 1
1299
1300
/* Define if code specialized for long long should be used. */
1301
#define _GLIBCXX_USE_LONG_LONG 1
1302
1303
/* Defined if nanosleep is available. */
1304
/* #undef _GLIBCXX_USE_NANOSLEEP */
1305
1306
/* Define if NLS translations are to be used. */
1307
#define _GLIBCXX_USE_NLS 1
1308
1309
/* Define if pthreads_num_processors_np is available in <pthread.h>. */
1310
/* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
1311
1312
/* Define if /dev/random and /dev/urandom are available for the random_device
1313
of TR1 (Chapter 5.1). */
1314
#define _GLIBCXX_USE_RANDOM_TR1 1
1315
1316
/* Defined if sched_yield is available. */
1317
/* #undef _GLIBCXX_USE_SCHED_YIELD */
1318
1319
/* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
1320
#define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
1321
1322
/* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
1323
/* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
1324
1325
/* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
1326
/* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
1327
1328
/* Define if code specialized for wchar_t should be used. */
1329
#define _GLIBCXX_USE_WCHAR_T 1
1330
1331
/* Define to 1 if a verbose library is built, or 0 otherwise. */
1332
#define _GLIBCXX_VERBOSE 1
1333
1334
/* Defined if as can handle rdrand. */
1335
/* #undef _GLIBCXX_X86_RDRAND */
1336
1337
/* Define to 1 if mutex_timedlock is available. */
1338
#define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
1339
1340
#if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1341
# define _GLIBCXX_HAVE_ACOSF 1
1342
# define acosf _acosf
1343
#endif
1344
1345
#if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1346
# define _GLIBCXX_HAVE_ACOSL 1
1347
# define acosl _acosl
1348
#endif
1349
1350
#if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1351
# define _GLIBCXX_HAVE_ASINF 1
1352
# define asinf _asinf
1353
#endif
1354
1355
#if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1356
# define _GLIBCXX_HAVE_ASINL 1
1357
# define asinl _asinl
1358
#endif
1359
1360
#if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1361
# define _GLIBCXX_HAVE_ATAN2F 1
1362
# define atan2f _atan2f
1363
#endif
1364
1365
#if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1366
# define _GLIBCXX_HAVE_ATAN2L 1
1367
# define atan2l _atan2l
1368
#endif
1369
1370
#if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1371
# define _GLIBCXX_HAVE_ATANF 1
1372
# define atanf _atanf
1373
#endif
1374
1375
#if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1376
# define _GLIBCXX_HAVE_ATANL 1
1377
# define atanl _atanl
1378
#endif
1379
1380
#if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1381
# define _GLIBCXX_HAVE_CEILF 1
1382
# define ceilf _ceilf
1383
#endif
1384
1385
#if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1386
# define _GLIBCXX_HAVE_CEILL 1
1387
# define ceill _ceill
1388
#endif
1389
1390
#if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1391
# define _GLIBCXX_HAVE_COSF 1
1392
# define cosf _cosf
1393
#endif
1394
1395
#if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1396
# define _GLIBCXX_HAVE_COSHF 1
1397
# define coshf _coshf
1398
#endif
1399
1400
#if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1401
# define _GLIBCXX_HAVE_COSHL 1
1402
# define coshl _coshl
1403
#endif
1404
1405
#if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1406
# define _GLIBCXX_HAVE_COSL 1
1407
# define cosl _cosl
1408
#endif
1409
1410
#if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1411
# define _GLIBCXX_HAVE_EXPF 1
1412
# define expf _expf
1413
#endif
1414
1415
#if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1416
# define _GLIBCXX_HAVE_EXPL 1
1417
# define expl _expl
1418
#endif
1419
1420
#if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1421
# define _GLIBCXX_HAVE_FABSF 1
1422
# define fabsf _fabsf
1423
#endif
1424
1425
#if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1426
# define _GLIBCXX_HAVE_FABSL 1
1427
# define fabsl _fabsl
1428
#endif
1429
1430
#if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1431
# define _GLIBCXX_HAVE_FINITE 1
1432
# define finite _finite
1433
#endif
1434
1435
#if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1436
# define _GLIBCXX_HAVE_FINITEF 1
1437
# define finitef _finitef
1438
#endif
1439
1440
#if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1441
# define _GLIBCXX_HAVE_FINITEL 1
1442
# define finitel _finitel
1443
#endif
1444
1445
#if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1446
# define _GLIBCXX_HAVE_FLOORF 1
1447
# define floorf _floorf
1448
#endif
1449
1450
#if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1451
# define _GLIBCXX_HAVE_FLOORL 1
1452
# define floorl _floorl
1453
#endif
1454
1455
#if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1456
# define _GLIBCXX_HAVE_FMODF 1
1457
# define fmodf _fmodf
1458
#endif
1459
1460
#if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1461
# define _GLIBCXX_HAVE_FMODL 1
1462
# define fmodl _fmodl
1463
#endif
1464
1465
#if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1466
# define _GLIBCXX_HAVE_FPCLASS 1
1467
# define fpclass _fpclass
1468
#endif
1469
1470
#if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1471
# define _GLIBCXX_HAVE_FREXPF 1
1472
# define frexpf _frexpf
1473
#endif
1474
1475
#if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1476
# define _GLIBCXX_HAVE_FREXPL 1
1477
# define frexpl _frexpl
1478
#endif
1479
1480
#if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
1481
# define _GLIBCXX_HAVE_HYPOT 1
1482
# define hypot _hypot
1483
#endif
1484
1485
#if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
1486
# define _GLIBCXX_HAVE_HYPOTF 1
1487
# define hypotf _hypotf
1488
#endif
1489
1490
#if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
1491
# define _GLIBCXX_HAVE_HYPOTL 1
1492
# define hypotl _hypotl
1493
#endif
1494
1495
#if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1496
# define _GLIBCXX_HAVE_ISINF 1
1497
# define isinf _isinf
1498
#endif
1499
1500
#if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1501
# define _GLIBCXX_HAVE_ISINFF 1
1502
# define isinff _isinff
1503
#endif
1504
1505
#if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1506
# define _GLIBCXX_HAVE_ISINFL 1
1507
# define isinfl _isinfl
1508
#endif
1509
1510
#if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
1511
# define _GLIBCXX_HAVE_ISNAN 1
1512
# define isnan _isnan
1513
#endif
1514
1515
#if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1516
# define _GLIBCXX_HAVE_ISNANF 1
1517
# define isnanf _isnanf
1518
#endif
1519
1520
#if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1521
# define _GLIBCXX_HAVE_ISNANL 1
1522
# define isnanl _isnanl
1523
#endif
1524
1525
#if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1526
# define _GLIBCXX_HAVE_LDEXPF 1
1527
# define ldexpf _ldexpf
1528
#endif
1529
1530
#if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1531
# define _GLIBCXX_HAVE_LDEXPL 1
1532
# define ldexpl _ldexpl
1533
#endif
1534
1535
#if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1536
# define _GLIBCXX_HAVE_LOG10F 1
1537
# define log10f _log10f
1538
#endif
1539
1540
#if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1541
# define _GLIBCXX_HAVE_LOG10L 1
1542
# define log10l _log10l
1543
#endif
1544
1545
#if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1546
# define _GLIBCXX_HAVE_LOGF 1
1547
# define logf _logf
1548
#endif
1549
1550
#if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1551
# define _GLIBCXX_HAVE_LOGL 1
1552
# define logl _logl
1553
#endif
1554
1555
#if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1556
# define _GLIBCXX_HAVE_MODF 1
1557
# define modf _modf
1558
#endif
1559
1560
#if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
1561
# define _GLIBCXX_HAVE_MODFF 1
1562
# define modff _modff
1563
#endif
1564
1565
#if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
1566
# define _GLIBCXX_HAVE_MODFL 1
1567
# define modfl _modfl
1568
#endif
1569
1570
#if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1571
# define _GLIBCXX_HAVE_POWF 1
1572
# define powf _powf
1573
#endif
1574
1575
#if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1576
# define _GLIBCXX_HAVE_POWL 1
1577
# define powl _powl
1578
#endif
1579
1580
#if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1581
# define _GLIBCXX_HAVE_QFPCLASS 1
1582
# define qfpclass _qfpclass
1583
#endif
1584
1585
#if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1586
# define _GLIBCXX_HAVE_SINCOS 1
1587
# define sincos _sincos
1588
#endif
1589
1590
#if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1591
# define _GLIBCXX_HAVE_SINCOSF 1
1592
# define sincosf _sincosf
1593
#endif
1594
1595
#if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1596
# define _GLIBCXX_HAVE_SINCOSL 1
1597
# define sincosl _sincosl
1598
#endif
1599
1600
#if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1601
# define _GLIBCXX_HAVE_SINF 1
1602
# define sinf _sinf
1603
#endif
1604
1605
#if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1606
# define _GLIBCXX_HAVE_SINHF 1
1607
# define sinhf _sinhf
1608
#endif
1609
1610
#if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1611
# define _GLIBCXX_HAVE_SINHL 1
1612
# define sinhl _sinhl
1613
#endif
1614
1615
#if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1616
# define _GLIBCXX_HAVE_SINL 1
1617
# define sinl _sinl
1618
#endif
1619
1620
#if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1621
# define _GLIBCXX_HAVE_SQRTF 1
1622
# define sqrtf _sqrtf
1623
#endif
1624
1625
#if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1626
# define _GLIBCXX_HAVE_SQRTL 1
1627
# define sqrtl _sqrtl
1628
#endif
1629
1630
#if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1631
# define _GLIBCXX_HAVE_STRTOF 1
1632
# define strtof _strtof
1633
#endif
1634
1635
#if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1636
# define _GLIBCXX_HAVE_STRTOLD 1
1637
# define strtold _strtold
1638
#endif
1639
1640
#if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1641
# define _GLIBCXX_HAVE_TANF 1
1642
# define tanf _tanf
1643
#endif
1644
1645
#if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1646
# define _GLIBCXX_HAVE_TANHF 1
1647
# define tanhf _tanhf
1648
#endif
1649
1650
#if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1651
# define _GLIBCXX_HAVE_TANHL 1
1652
# define tanhl _tanhl
1653
#endif
1654
1655
#if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1656
# define _GLIBCXX_HAVE_TANL 1
1657
# define tanl _tanl
1658
#endif
1659
1660
#endif // _GLIBCXX_CXX_CONFIG_H
include
armv7hl-redhat-linux-gnueabi
bits
c++config.h
Generated by
1.8.3.1