sync features.h with GNU C library, fixes gcc 7.1 toolchain creation
[uclibc-ng.git] / include / features.h
blobf9820791b6fcd5b62f4ed52cdcfc8b9f495fc023
1 /* Copyright (C) 1991-1993,1995-2006,2007,2009 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #ifndef _FEATURES_H
19 #define _FEATURES_H 1
21 /* These are defined by the user (or the compiler)
22 to specify the desired environment:
24 __STRICT_ANSI__ ISO Standard C.
25 _ISOC99_SOURCE Extensions to ISO C89 from ISO C99.
26 _POSIX_SOURCE IEEE Std 1003.1.
27 _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
28 if >=199309L, add IEEE Std 1003.1b-1993;
29 if >=199506L, add IEEE Std 1003.1c-1995;
30 if >=200112L, all of IEEE 1003.1-2004
31 if >=200809L, all of IEEE 1003.1-2008
32 _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
33 Single Unix conformance is wanted, to 600 for the
34 sixth revision, to 700 for the seventh revision.
35 _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
36 _LARGEFILE_SOURCE Some more functions for correct standard I/O.
37 _LARGEFILE64_SOURCE Additional functionality from LFS for large files.
38 _FILE_OFFSET_BITS=N Select default filesystem interface.
39 _BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
40 _SVID_SOURCE ISO C, POSIX, and SVID things.
41 _ATFILE_SOURCE Additional *at interfaces.
42 _GNU_SOURCE All of the above, plus GNU extensions.
43 _REENTRANT Select additionally reentrant object.
44 _THREAD_SAFE Same as _REENTRANT, often used by other systems.
45 _FORTIFY_SOURCE If set to numeric value > 0 additional security
46 measures are defined, according to level.
48 The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
49 If none of these are defined, the default is to have _SVID_SOURCE,
50 _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
51 200112L. If more than one of these are defined, they accumulate.
52 For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
53 together give you ISO C, 1003.1, and 1003.2, but nothing else.
55 These are defined by this file and are used by the
56 header files to decide what to declare or define:
58 __USE_ISOC11 Define ISO C11 things.
59 __USE_ISOC99 Define ISO C99 things.
60 __USE_ISOC95 Define ISO C90 AMD1 (C95) things.
61 __USE_POSIX Define IEEE Std 1003.1 things.
62 __USE_POSIX2 Define IEEE Std 1003.2 things.
63 __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
64 __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
65 __USE_XOPEN Define XPG things.
66 __USE_XOPEN_EXTENDED Define X/Open Unix things.
67 __USE_UNIX98 Define Single Unix V2 things.
68 __USE_XOPEN2K Define XPG6 things.
69 __USE_XOPEN2K8 Define XPG7 things.
70 __USE_LARGEFILE Define correct standard I/O things.
71 __USE_LARGEFILE64 Define LFS things with separate names.
72 __USE_FILE_OFFSET64 Define 64bit interface as default.
73 __USE_BSD Define 4.3BSD things.
74 __USE_SVID Define SVID things.
75 __USE_MISC Define things common to BSD and System V Unix.
76 __USE_ATFILE Define *at interfaces and AT_* constants for them.
77 __USE_GNU Define GNU extensions.
78 __USE_REENTRANT Define reentrant/thread-safe *_r functions.
79 __USE_FORTIFY_LEVEL Additional security measures used, according to level.
80 __FAVOR_BSD Favor 4.3BSD things in cases of conflict.
82 The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
83 defined by this file unconditionally. `__GNU_LIBRARY__' is provided
84 only for compatibility. All new code should use the other symbols
85 to test for features.
87 All macros listed above as possibly being defined by this file are
88 explicitly undefined if they are not explicitly defined.
89 Feature-test macros that are not defined by the user or compiler
90 but are implied by the other feature-test macros defined (or by the
91 lack of any definitions) are defined by the file. */
94 /* Undefine everything, so we get a clean slate. */
95 #undef __USE_ISOC11
96 #undef __USE_ISOC99
97 #undef __USE_ISOC95
98 #undef __USE_POSIX
99 #undef __USE_POSIX2
100 #undef __USE_POSIX199309
101 #undef __USE_POSIX199506
102 #undef __USE_XOPEN
103 #undef __USE_XOPEN_EXTENDED
104 #undef __USE_UNIX98
105 #undef __USE_XOPEN2K
106 #undef __USE_XOPEN2K8
107 #undef __USE_LARGEFILE
108 #undef __USE_LARGEFILE64
109 #undef __USE_FILE_OFFSET64
110 #undef __USE_BSD
111 #undef __USE_SVID
112 #undef __USE_MISC
113 #undef __USE_ATFILE
114 #undef __USE_GNU
115 #undef __USE_REENTRANT
116 #undef __USE_FORTIFY_LEVEL
117 #undef __FAVOR_BSD
118 #undef __KERNEL_STRICT_NAMES
120 /* Suppress kernel-name space pollution unless user expressedly asks
121 for it. */
122 #ifndef _LOOSE_KERNEL_NAMES
123 # define __KERNEL_STRICT_NAMES
124 #endif
126 /* Always use ISO C things. */
127 #define __USE_ANSI 1
129 /* Convenience macros to test the versions of glibc and gcc.
130 Use them like this:
131 #if __GNUC_PREREQ (2,8)
132 ... code requiring gcc 2.8 or later ...
133 #endif
134 Note - they won't work for gcc1 or glibc1, since the _MINOR macros
135 were not defined then. */
136 #if defined __GNUC__ && defined __GNUC_MINOR__
137 # define __GNUC_PREREQ(maj, min) \
138 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
139 #else
140 # define __GNUC_PREREQ(maj, min) 0
141 #endif
144 /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
145 #if defined _BSD_SOURCE && \
146 !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
147 defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
148 defined _GNU_SOURCE || defined _SVID_SOURCE)
149 # define __FAVOR_BSD 1
150 #endif
152 /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
153 #ifdef _GNU_SOURCE
154 # undef _ISOC99_SOURCE
155 # define _ISOC99_SOURCE 1
156 # undef _ISOC11_SOURCE
157 # define _ISOC11_SOURCE 1
158 # undef _POSIX_SOURCE
159 # define _POSIX_SOURCE 1
160 # undef _POSIX_C_SOURCE
161 # define _POSIX_C_SOURCE 200809L
162 # undef _XOPEN_SOURCE
163 # define _XOPEN_SOURCE 700
164 # undef _XOPEN_SOURCE_EXTENDED
165 # define _XOPEN_SOURCE_EXTENDED 1
166 # undef _LARGEFILE64_SOURCE
167 # define _LARGEFILE64_SOURCE 1
168 # undef _BSD_SOURCE
169 # define _BSD_SOURCE 1
170 # undef _SVID_SOURCE
171 # define _SVID_SOURCE 1
172 # undef _ATFILE_SOURCE
173 # define _ATFILE_SOURCE 1
174 #endif
176 /* This macro indicates that the installed library is uClibc. Use
177 * __UCLIBC_MAJOR__ and __UCLIBC_MINOR__ to test for the features in
178 * specific releases. */
179 #define __UCLIBC__ 1
181 #ifdef __UCLIBC__
182 /* Load up the current set of uClibc supported features along
183 * with the current uClibc major and minor version numbers.
184 * For uClibc release 0.9.26, these numbers would be:
185 * #define __UCLIBC_MAJOR__ 0
186 * #define __UCLIBC_MINOR__ 9
187 * #define __UCLIBC_SUBLEVEL__ 26
189 # define __need_uClibc_config_h
190 # include <bits/uClibc_config.h>
191 # undef __need_uClibc_config_h
193 /* For uClibc, always optimize for size -- this should disable
194 * a lot of expensive inlining...
195 * TODO: this is wrong! __OPTIMIZE_SIZE__ is an indicator of
196 * gcc -Os compile. We should not mess with compiler inlines.
197 * We should instead disable __USE_EXTERN_INLINES unconditionally,
198 * or maybe actually audit and test uclibc to work correctly
199 * with __USE_EXTERN_INLINES on.
201 # define __OPTIMIZE_SIZE__ 1
203 /* disable unsupported features */
204 # undef __LDBL_COMPAT
206 # ifndef __UCLIBC_HAS_FORTIFY__
207 # undef _FORTIFY_SOURCE
208 # endif
210 # ifndef __UCLIBC_HAS_THREADS__
211 # if defined _REENTRANT || defined _THREAD_SAFE
212 # warning requested reentrant code, but thread support was disabled
213 # undef _REENTRANT
214 # undef _THREAD_SAFE
215 # endif
216 # endif
218 #endif /* __UCLIBC__ */
220 /* If nothing (other than _GNU_SOURCE) is defined,
221 define _BSD_SOURCE and _SVID_SOURCE. */
222 #if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
223 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
224 !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
225 !defined _BSD_SOURCE && !defined _SVID_SOURCE)
226 # define _BSD_SOURCE 1
227 # define _SVID_SOURCE 1
228 #endif
230 /* This is to enable the ISO C11 extension. */
231 #if (defined _ISOC11_SOURCE \
232 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L))
233 # define __USE_ISOC11 1
234 #endif
236 /* This is to enable the ISO C99 extension. */
237 #if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
238 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
239 # define __USE_ISOC99 1
240 #endif
242 /* This is to enable the ISO C90 Amendment 1:1995 extension. */
243 #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
244 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
245 # define __USE_ISOC95 1
246 #endif
248 /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
249 (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
250 #if ((!defined __STRICT_ANSI__ || (_XOPEN_SOURCE - 0) >= 500) && \
251 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE)
252 # define _POSIX_SOURCE 1
253 # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
254 # define _POSIX_C_SOURCE 2
255 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 600
256 # define _POSIX_C_SOURCE 199506L
257 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 700
258 # define _POSIX_C_SOURCE 200112L
259 # else
260 # define _POSIX_C_SOURCE 200809L
261 # endif
262 # define __USE_POSIX_IMPLICITLY 1
263 #endif
265 #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
266 # define __USE_POSIX 1
267 #endif
269 #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
270 # define __USE_POSIX2 1
271 #endif
273 #if (_POSIX_C_SOURCE - 0) >= 199309L
274 # define __USE_POSIX199309 1
275 #endif
277 #if (_POSIX_C_SOURCE - 0) >= 199506L
278 # define __USE_POSIX199506 1
279 #endif
281 #if (_POSIX_C_SOURCE - 0) >= 200112L
282 # define __USE_XOPEN2K 1
283 # undef __USE_ISOC99
284 # define __USE_ISOC99 1
285 #endif
287 #if (_POSIX_C_SOURCE - 0) >= 200809L
288 # define __USE_XOPEN2K8 1
289 # undef _ATFILE_SOURCE
290 # define _ATFILE_SOURCE 1
291 #endif
293 #ifdef _XOPEN_SOURCE
294 # define __USE_XOPEN 1
295 # if (_XOPEN_SOURCE - 0) >= 500
296 # define __USE_XOPEN_EXTENDED 1
297 # define __USE_UNIX98 1
298 # undef _LARGEFILE_SOURCE
299 # define _LARGEFILE_SOURCE 1
300 # if (_XOPEN_SOURCE - 0) >= 600
301 # if (_XOPEN_SOURCE - 0) >= 700
302 # define __USE_XOPEN2K8 1
303 # endif
304 # define __USE_XOPEN2K 1
305 # undef __USE_ISOC99
306 # define __USE_ISOC99 1
307 # endif
308 # else
309 # ifdef _XOPEN_SOURCE_EXTENDED
310 # define __USE_XOPEN_EXTENDED 1
311 # endif
312 # endif
313 #endif
315 #ifdef _LARGEFILE_SOURCE
316 # define __USE_LARGEFILE 1
317 #endif
319 #ifdef _LARGEFILE64_SOURCE
320 # define __USE_LARGEFILE64 1
321 #endif
323 #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
324 # define __USE_FILE_OFFSET64 1
325 #endif
327 #if defined _BSD_SOURCE || defined _SVID_SOURCE
328 # define __USE_MISC 1
329 #endif
331 #ifdef _BSD_SOURCE
332 # define __USE_BSD 1
333 #endif
335 #ifdef _SVID_SOURCE
336 # define __USE_SVID 1
337 #endif
339 #ifdef _ATFILE_SOURCE
340 # define __USE_ATFILE 1
341 #endif
343 #ifdef _GNU_SOURCE
344 # define __USE_GNU 1
345 #endif
347 #if defined _REENTRANT || defined _THREAD_SAFE
348 # define __USE_REENTRANT 1
349 #endif
351 #if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 \
352 && __GNUC_PREREQ (4, 1) && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
353 # if _FORTIFY_SOURCE > 1
354 # define __USE_FORTIFY_LEVEL 2
355 # else
356 # define __USE_FORTIFY_LEVEL 1
357 # endif
358 #else
359 # define __USE_FORTIFY_LEVEL 0
360 #endif
362 /* We do support the IEC 559 math functionality, real and complex. */
363 #ifdef __UCLIBC_HAS_FLOATS__
364 #define __STDC_IEC_559__ 1
365 #define __STDC_IEC_559_COMPLEX__ 1
366 #endif
368 #ifdef __UCLIBC_HAS_WCHAR__
369 /* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.1. */
370 #define __STDC_ISO_10646__ 200009L
371 #endif
373 /* There is an unwholesomely huge amount of code out there that depends on the
374 * presence of GNU libc header files. We have GNU libc header files. So here
375 * we commit a horrible sin. At this point, we _lie_ and claim to be GNU libc
376 * to make things like /usr/include/linux/socket.h and lots of apps work as
377 * their developers intended. This is IMHO, pardonable, since these defines
378 * are not really intended to check for the presence of a particular library,
379 * but rather are used to define an _interface_. */
380 #if !defined __FORCE_NOGLIBC && (!defined _LIBC || defined __FORCE_GLIBC)
381 /* This macro indicates that the installed library is the GNU C Library.
382 For historic reasons the value now is 6 and this will stay from now
383 on. The use of this variable is deprecated. */
384 /* uClibc WARNING: leave these aligned to the left, don't put a space after '#', else
385 * broken apps could fail the check. */
386 #undef __GNU_LIBRARY__
387 #define __GNU_LIBRARY__ 6
389 /* Major and minor version number of the GNU C library package. Use
390 these macros to test for features in specific releases. */
391 /* Don't do it, if you want to keep uClibc happy. */
392 #define __GLIBC__ 2
393 #define __GLIBC_MINOR__ 2
394 #endif
396 #define __GLIBC_PREREQ(maj, min) \
397 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
399 #ifndef __UCLIBC__
400 /* Decide whether a compiler supports the long long datatypes. */
401 #if defined __GNUC__ \
402 || (defined __PGI && defined __i386__ ) \
403 || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \
404 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
405 # define __GLIBC_HAVE_LONG_LONG 1
406 #endif
407 #endif
409 /* This is here only because every header file already includes this one. */
410 #ifndef __ASSEMBLER__
411 # ifndef _SYS_CDEFS_H
412 # include <sys/cdefs.h>
413 # endif
415 /* If we don't have __REDIRECT, prototypes will be missing if
416 __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
417 # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
418 # define __USE_LARGEFILE 1
419 # define __USE_LARGEFILE64 1
420 # endif
422 #endif /* !ASSEMBLER */
424 /* Decide whether we can, and are willing to define extern inline
425 * functions in headers, even if this results in a slightly bigger
426 * code for user programs built against uclibc.
427 * Enabled only in -O2 compiles, not -Os.
428 * uclibc itself is usually built without __USE_EXTERN_INLINES,
429 * remove "&& !defined __OPTIMIZE_SIZE__" part to do otherwise.
431 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
432 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__ \
433 && (defined __extern_inline || defined __GNUC_GNU_INLINE__ || defined __GNUC_STDC_INLINE__)
434 # define __USE_EXTERN_INLINES 1
435 #endif
437 #ifdef _LIBC
438 # undef _FILE_OFFSET_BITS
439 # undef __USE_FILE_OFFSET64
440 # include <libc-internal.h>
441 #endif
443 #endif /* features.h */