features.h 14 KB

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