fenv: only allow to enable for supported architectures
[uclibc-ng.git] / include / features.h
blob4a10665312ac8497cbe16950c57cbcc6b9cbec61
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 _DEFAULT_SOURCE Equivalent to defining _BSD_SOURCE and _SVID_SOURCE.
44 _REENTRANT Select additionally reentrant object.
45 _THREAD_SAFE Same as _REENTRANT, often used by other systems.
46 _FORTIFY_SOURCE If set to numeric value > 0 additional security
47 measures are defined, according to level.
49 The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
50 If none of these are defined, the default is to have _SVID_SOURCE,
51 _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
52 200112L. If more than one of these are defined, they accumulate.
53 For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
54 together give you ISO C, 1003.1, and 1003.2, but nothing else.
56 These are defined by this file and are used by the
57 header files to decide what to declare or define:
59 __USE_ISOC11 Define ISO C11 things.
60 __USE_ISOC99 Define ISO C99 things.
61 __USE_ISOC95 Define ISO C90 AMD1 (C95) things.
62 __USE_POSIX Define IEEE Std 1003.1 things.
63 __USE_POSIX2 Define IEEE Std 1003.2 things.
64 __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
65 __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
66 __USE_XOPEN Define XPG things.
67 __USE_XOPEN_EXTENDED Define X/Open Unix things.
68 __USE_UNIX98 Define Single Unix V2 things.
69 __USE_XOPEN2K Define XPG6 things.
70 __USE_XOPEN2K8 Define XPG7 things.
71 __USE_LARGEFILE Define correct standard I/O things.
72 __USE_LARGEFILE64 Define LFS things with separate names.
73 __USE_FILE_OFFSET64 Define 64bit interface as default.
74 __USE_BSD Define 4.3BSD things.
75 __USE_SVID Define SVID things.
76 __USE_MISC Define things common to BSD and System V Unix.
77 __USE_ATFILE Define *at interfaces and AT_* constants for them.
78 __USE_GNU Define GNU extensions.
79 __USE_REENTRANT Define reentrant/thread-safe *_r functions.
80 __USE_FORTIFY_LEVEL Additional security measures used, according to level.
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 __KERNEL_STRICT_NAMES
119 /* Suppress kernel-name space pollution unless user expressedly asks
120 for it. */
121 #ifndef _LOOSE_KERNEL_NAMES
122 # define __KERNEL_STRICT_NAMES
123 #endif
125 /* Always use ISO C things. */
126 #define __USE_ANSI 1
128 /* Convenience macros to test the versions of glibc and gcc.
129 Use them like this:
130 #if __GNUC_PREREQ (2,8)
131 ... code requiring gcc 2.8 or later ...
132 #endif
133 Note - they won't work for gcc1 or glibc1, since the _MINOR macros
134 were not defined then. */
135 #if defined __GNUC__ && defined __GNUC_MINOR__
136 # define __GNUC_PREREQ(maj, min) \
137 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
138 #else
139 # define __GNUC_PREREQ(maj, min) 0
140 #endif
142 /* _DEFAULT_SOURCE is equivalent to defining _BSD_SOURCE and _SVID_SOURCE
143 * and vice versa. */
144 #ifdef _DEFAULT_SOURCE
145 # undef _BSD_SOURCE
146 # define _BSD_SOURCE 1
147 # undef _SVID_SOURCE
148 # define _SVID_SOURCE 1
149 #endif
151 #if defined _BSD_SOURCE || defined _SVID_SOURCE
152 # undef _DEFAULT_SOURCE
153 # define _DEFAULT_SOURCE 1
154 #endif
156 /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
157 #ifdef _GNU_SOURCE
158 # undef _ISOC99_SOURCE
159 # define _ISOC99_SOURCE 1
160 # undef _ISOC11_SOURCE
161 # define _ISOC11_SOURCE 1
162 # undef _POSIX_SOURCE
163 # define _POSIX_SOURCE 1
164 # undef _POSIX_C_SOURCE
165 # define _POSIX_C_SOURCE 200809L
166 # undef _XOPEN_SOURCE
167 # define _XOPEN_SOURCE 700
168 # undef _XOPEN_SOURCE_EXTENDED
169 # define _XOPEN_SOURCE_EXTENDED 1
170 # undef _LARGEFILE64_SOURCE
171 # define _LARGEFILE64_SOURCE 1
172 # undef _BSD_SOURCE
173 # define _BSD_SOURCE 1
174 # undef _SVID_SOURCE
175 # define _SVID_SOURCE 1
176 # undef _ATFILE_SOURCE
177 # define _ATFILE_SOURCE 1
178 #endif
180 /* This macro indicates that the installed library is uClibc. Use
181 * __UCLIBC_MAJOR__ and __UCLIBC_MINOR__ to test for the features in
182 * specific releases. */
183 #define __UCLIBC__ 1
185 #ifdef __UCLIBC__
186 /* Load up the current set of uClibc supported features along
187 * with the current uClibc major and minor version numbers.
188 * For uClibc release 0.9.26, these numbers would be:
189 * #define __UCLIBC_MAJOR__ 0
190 * #define __UCLIBC_MINOR__ 9
191 * #define __UCLIBC_SUBLEVEL__ 26
193 # define __need_uClibc_config_h
194 # include <bits/uClibc_config.h>
195 # undef __need_uClibc_config_h
197 /* For uClibc, always optimize for size -- this should disable
198 * a lot of expensive inlining...
199 * TODO: this is wrong! __OPTIMIZE_SIZE__ is an indicator of
200 * gcc -Os compile. We should not mess with compiler inlines.
201 * We should instead disable __USE_EXTERN_INLINES unconditionally,
202 * or maybe actually audit and test uclibc to work correctly
203 * with __USE_EXTERN_INLINES on.
205 # define __OPTIMIZE_SIZE__ 1
207 /* disable unsupported features */
208 # undef __LDBL_COMPAT
210 /* no support for FORTIFY */
211 # undef _FORTIFY_SOURCE
213 # ifndef __UCLIBC_HAS_THREADS__
214 # if defined _REENTRANT || defined _THREAD_SAFE
215 # warning requested reentrant code, but thread support was disabled
216 # undef _REENTRANT
217 # undef _THREAD_SAFE
218 # endif
219 # endif
221 #endif /* __UCLIBC__ */
223 /* If nothing (other than _GNU_SOURCE) is defined,
224 define _BSD_SOURCE and _SVID_SOURCE. */
225 #if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
226 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
227 !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
228 !defined _BSD_SOURCE && !defined _SVID_SOURCE)
229 # define _BSD_SOURCE 1
230 # define _SVID_SOURCE 1
231 #endif
233 /* This is to enable the ISO C11 extension. */
234 #if (defined _ISOC11_SOURCE \
235 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L))
236 # define __USE_ISOC11 1
237 #endif
239 /* This is to enable the ISO C99 extension. */
240 #if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
241 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
242 # define __USE_ISOC99 1
243 #endif
245 /* This is to enable the ISO C90 Amendment 1:1995 extension. */
246 #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
247 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
248 # define __USE_ISOC95 1
249 #endif
251 /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
252 (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
253 #if ((!defined __STRICT_ANSI__ || (_XOPEN_SOURCE - 0) >= 500) && \
254 !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE)
255 # define _POSIX_SOURCE 1
256 # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
257 # define _POSIX_C_SOURCE 2
258 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 600
259 # define _POSIX_C_SOURCE 199506L
260 # elif defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 700
261 # define _POSIX_C_SOURCE 200112L
262 # else
263 # define _POSIX_C_SOURCE 200809L
264 # endif
265 # define __USE_POSIX_IMPLICITLY 1
266 #endif
268 #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
269 # define __USE_POSIX 1
270 #endif
272 #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
273 # define __USE_POSIX2 1
274 #endif
276 #if (_POSIX_C_SOURCE - 0) >= 199309L
277 # define __USE_POSIX199309 1
278 #endif
280 #if (_POSIX_C_SOURCE - 0) >= 199506L
281 # define __USE_POSIX199506 1
282 #endif
284 #if (_POSIX_C_SOURCE - 0) >= 200112L
285 # define __USE_XOPEN2K 1
286 # undef __USE_ISOC99
287 # define __USE_ISOC99 1
288 #endif
290 #if (_POSIX_C_SOURCE - 0) >= 200809L
291 # define __USE_XOPEN2K8 1
292 # undef _ATFILE_SOURCE
293 # define _ATFILE_SOURCE 1
294 #endif
296 #ifdef _XOPEN_SOURCE
297 # define __USE_XOPEN 1
298 # if (_XOPEN_SOURCE - 0) >= 500
299 # define __USE_XOPEN_EXTENDED 1
300 # define __USE_UNIX98 1
301 # undef _LARGEFILE_SOURCE
302 # define _LARGEFILE_SOURCE 1
303 # if (_XOPEN_SOURCE - 0) >= 600
304 # if (_XOPEN_SOURCE - 0) >= 700
305 # define __USE_XOPEN2K8 1
306 # endif
307 # define __USE_XOPEN2K 1
308 # undef __USE_ISOC99
309 # define __USE_ISOC99 1
310 # endif
311 # else
312 # ifdef _XOPEN_SOURCE_EXTENDED
313 # define __USE_XOPEN_EXTENDED 1
314 # endif
315 # endif
316 #endif
318 #ifdef _LARGEFILE_SOURCE
319 # define __USE_LARGEFILE 1
320 #endif
322 #ifdef _LARGEFILE64_SOURCE
323 # define __USE_LARGEFILE64 1
324 #endif
326 #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
327 # define __USE_FILE_OFFSET64 1
328 #endif
330 #if defined _BSD_SOURCE || defined _SVID_SOURCE
331 # define __USE_MISC 1
332 #endif
334 #ifdef _BSD_SOURCE
335 # define __USE_BSD 1
336 #endif
338 #ifdef _SVID_SOURCE
339 # define __USE_SVID 1
340 #endif
342 #ifdef _ATFILE_SOURCE
343 # define __USE_ATFILE 1
344 #endif
346 #ifdef _GNU_SOURCE
347 # define __USE_GNU 1
348 #endif
350 #if defined _REENTRANT || defined _THREAD_SAFE
351 # define __USE_REENTRANT 1
352 #endif
354 /* We do support the IEC 559 math functionality, real and complex. */
355 #ifdef __UCLIBC_HAS_FLOATS__
356 #define __STDC_IEC_559__ 1
357 #define __STDC_IEC_559_COMPLEX__ 1
358 #endif
360 #ifdef __UCLIBC_HAS_WCHAR__
361 /* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.1. */
362 #define __STDC_ISO_10646__ 200009L
363 #endif
365 /* There is an unwholesomely huge amount of code out there that depends on the
366 * presence of GNU libc header files. We have GNU libc header files. So here
367 * we commit a horrible sin. At this point, we _lie_ and claim to be GNU libc
368 * to make things like /usr/include/linux/socket.h and lots of apps work as
369 * their developers intended. This is IMHO, pardonable, since these defines
370 * are not really intended to check for the presence of a particular library,
371 * but rather are used to define an _interface_. */
372 #if !defined __FORCE_NOGLIBC && (!defined _LIBC || defined __FORCE_GLIBC)
373 /* This macro indicates that the installed library is the GNU C Library.
374 For historic reasons the value now is 6 and this will stay from now
375 on. The use of this variable is deprecated. */
376 /* uClibc WARNING: leave these aligned to the left, don't put a space after '#', else
377 * broken apps could fail the check. */
378 #undef __GNU_LIBRARY__
379 #define __GNU_LIBRARY__ 6
381 /* Major and minor version number of the GNU C library package. Use
382 these macros to test for features in specific releases. */
383 /* Don't do it, if you want to keep uClibc happy. */
384 #define __GLIBC__ 2
385 #define __GLIBC_MINOR__ 2
386 #endif
388 #define __GLIBC_PREREQ(maj, min) \
389 ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
391 #ifndef __UCLIBC__
392 /* Decide whether a compiler supports the long long datatypes. */
393 #if defined __GNUC__ \
394 || (defined __PGI && defined __i386__ ) \
395 || (defined __INTEL_COMPILER && (defined __i386__ || defined __ia64__)) \
396 || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
397 # define __GLIBC_HAVE_LONG_LONG 1
398 #endif
399 #endif
401 /* This is here only because every header file already includes this one. */
402 #ifndef __ASSEMBLER__
403 # ifndef _SYS_CDEFS_H
404 # include <sys/cdefs.h>
405 # endif
407 /* If we don't have __REDIRECT, prototypes will be missing if
408 __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
409 # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
410 # define __USE_LARGEFILE 1
411 # define __USE_LARGEFILE64 1
412 # endif
414 #endif /* !ASSEMBLER */
416 /* Decide whether we can, and are willing to define extern inline
417 * functions in headers, even if this results in a slightly bigger
418 * code for user programs built against uclibc.
419 * Enabled only in -O2 compiles, not -Os.
420 * uclibc itself is usually built without __USE_EXTERN_INLINES,
421 * remove "&& !defined __OPTIMIZE_SIZE__" part to do otherwise.
423 #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
424 && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__ \
425 && (defined __extern_inline || defined __GNUC_GNU_INLINE__ || defined __GNUC_STDC_INLINE__)
426 # define __USE_EXTERN_INLINES 1
427 #endif
429 #ifdef _LIBC
430 # undef _FILE_OFFSET_BITS
431 # undef __USE_FILE_OFFSET64
432 # include <libc-internal.h>
433 #endif
435 #endif /* features.h */