features.h 14 KB

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