features.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. /* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 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, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _FEATURES_H
  16. #define _FEATURES_H 1
  17. /* For uClibc, always optimize for size -- this should disable
  18. * a lot of expensive inlining... */
  19. #define __OPTIMIZE_SIZE__ 1
  20. /* These are defined by the user (or the compiler)
  21. to specify the desired environment:
  22. __STRICT_ANSI__ ISO Standard C.
  23. _ISOC99_SOURCE Extensions to ISO C89 from ISO C99.
  24. _POSIX_SOURCE IEEE Std 1003.1.
  25. _POSIX_C_SOURCE If ==1, like _POSIX_SOURCE; if >=2 add IEEE Std 1003.2;
  26. if >=199309L, add IEEE Std 1003.1b-1993;
  27. if >=199506L, add IEEE Std 1003.1c-1995
  28. _XOPEN_SOURCE Includes POSIX and XPG things. Set to 500 if
  29. Single Unix conformance is wanted, to 600 for the
  30. upcoming sixth revision.
  31. _XOPEN_SOURCE_EXTENDED XPG things and X/Open Unix extensions.
  32. _LARGEFILE_SOURCE Some more functions for correct standard I/O.
  33. _LARGEFILE64_SOURCE Additional functionality from LFS for large files.
  34. _FILE_OFFSET_BITS=N Select default filesystem interface.
  35. _BSD_SOURCE ISO C, POSIX, and 4.3BSD things.
  36. _SVID_SOURCE ISO C, POSIX, and SVID things.
  37. _GNU_SOURCE All of the above, plus GNU extensions.
  38. _REENTRANT Select additionally reentrant object.
  39. _THREAD_SAFE Same as _REENTRANT, often used by other systems.
  40. The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__.
  41. If none of these are defined, the default is to have _SVID_SOURCE,
  42. _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to
  43. 199506L. If more than one of these are defined, they accumulate.
  44. For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE
  45. together give you ISO C, 1003.1, and 1003.2, but nothing else.
  46. These are defined by this file and are used by the
  47. header files to decide what to declare or define:
  48. __USE_ISOC99 Define ISO C99 things.
  49. __USE_POSIX Define IEEE Std 1003.1 things.
  50. __USE_POSIX2 Define IEEE Std 1003.2 things.
  51. __USE_POSIX199309 Define IEEE Std 1003.1, and .1b things.
  52. __USE_POSIX199506 Define IEEE Std 1003.1, .1b, .1c and .1i things.
  53. __USE_XOPEN Define XPG things.
  54. __USE_XOPEN_EXTENDED Define X/Open Unix things.
  55. __USE_UNIX98 Define Single Unix V2 things.
  56. __USE_XOPEN2K Define XPG6 things.
  57. __USE_LARGEFILE Define correct standard I/O things.
  58. __USE_LARGEFILE64 Define LFS things with separate names.
  59. __USE_FILE_OFFSET64 Define 64bit interface as default.
  60. __USE_BSD Define 4.3BSD things.
  61. __USE_SVID Define SVID things.
  62. __USE_MISC Define things common to BSD and System V Unix.
  63. __USE_GNU Define GNU extensions.
  64. __USE_REENTRANT Define reentrant/thread-safe *_r functions.
  65. __FAVOR_BSD Favor 4.3BSD things in cases of conflict.
  66. The macros `__GNU_LIBRARY__', `__GLIBC__', and `__GLIBC_MINOR__' are
  67. defined by this file unconditionally. `__GNU_LIBRARY__' is provided
  68. only for compatibility. All new code should use the other symbols
  69. to test for features.
  70. All macros listed above as possibly being defined by this file are
  71. explicitly undefined if they are not explicitly defined.
  72. Feature-test macros that are not defined by the user or compiler
  73. but are implied by the other feature-test macros defined (or by the
  74. lack of any definitions) are defined by the file. */
  75. /* Undefine everything, so we get a clean slate. */
  76. #undef __USE_ISOC99
  77. #undef __USE_POSIX
  78. #undef __USE_POSIX2
  79. #undef __USE_POSIX199309
  80. #undef __USE_POSIX199506
  81. #undef __USE_XOPEN
  82. #undef __USE_XOPEN_EXTENDED
  83. #undef __USE_UNIX98
  84. #undef __USE_XOPEN2K
  85. #undef __USE_LARGEFILE
  86. #undef __USE_LARGEFILE64
  87. #undef __USE_FILE_OFFSET64
  88. #undef __USE_BSD
  89. #undef __USE_SVID
  90. #undef __USE_MISC
  91. #undef __USE_GNU
  92. #undef __USE_REENTRANT
  93. #undef __FAVOR_BSD
  94. #undef __KERNEL_STRICT_NAMES
  95. /* Suppress kernel-name space pollution unless user expressedly asks
  96. for it. */
  97. #ifndef _LOOSE_KERNEL_NAMES
  98. # define __KERNEL_STRICT_NAMES
  99. #endif
  100. /* Always use ISO C things. */
  101. #define __USE_ANSI 1
  102. /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
  103. #if defined _BSD_SOURCE && \
  104. !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
  105. defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
  106. defined _GNU_SOURCE || defined _SVID_SOURCE)
  107. # define __FAVOR_BSD 1
  108. #endif
  109. /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
  110. #ifdef _GNU_SOURCE
  111. # undef _ISOC99_SOURCE
  112. # define _ISOC99_SOURCE 1
  113. # undef _POSIX_SOURCE
  114. # define _POSIX_SOURCE 1
  115. # undef _POSIX_C_SOURCE
  116. # define _POSIX_C_SOURCE 199506L
  117. # undef _XOPEN_SOURCE
  118. # define _XOPEN_SOURCE 600
  119. # undef _XOPEN_SOURCE_EXTENDED
  120. # define _XOPEN_SOURCE_EXTENDED 1
  121. # undef _LARGEFILE64_SOURCE
  122. # define _LARGEFILE64_SOURCE 1
  123. # undef _BSD_SOURCE
  124. # define _BSD_SOURCE 1
  125. # undef _SVID_SOURCE
  126. # define _SVID_SOURCE 1
  127. #endif
  128. /* If nothing (other than _GNU_SOURCE) is defined,
  129. define _BSD_SOURCE and _SVID_SOURCE. */
  130. #if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
  131. !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
  132. !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
  133. !defined _BSD_SOURCE && !defined _SVID_SOURCE)
  134. # define _BSD_SOURCE 1
  135. # define _SVID_SOURCE 1
  136. #endif
  137. /* This is to enable the ISO C99 extension. Also recognize the old macro
  138. which was used prior to the standard acceptance. This macro will
  139. eventually go away and the features enabled by default once the ISO C99
  140. standard is widely adopted. */
  141. #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
  142. || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
  143. # define __USE_ISOC99 1
  144. #endif
  145. /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
  146. (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
  147. #if (!defined __STRICT_ANSI__ && !defined _POSIX_SOURCE && \
  148. !defined _POSIX_C_SOURCE)
  149. # define _POSIX_SOURCE 1
  150. # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
  151. # define _POSIX_C_SOURCE 2
  152. # else
  153. # define _POSIX_C_SOURCE 199506L
  154. # endif
  155. #endif
  156. #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
  157. # define __USE_POSIX 1
  158. #endif
  159. #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
  160. # define __USE_POSIX2 1
  161. #endif
  162. #if (_POSIX_C_SOURCE - 0) >= 199309L
  163. # define __USE_POSIX199309 1
  164. #endif
  165. #if (_POSIX_C_SOURCE - 0) >= 199506L
  166. # define __USE_POSIX199506 1
  167. #endif
  168. #ifdef _XOPEN_SOURCE
  169. # define __USE_XOPEN 1
  170. # if (_XOPEN_SOURCE - 0) >= 500
  171. # define __USE_XOPEN_EXTENDED 1
  172. # define __USE_UNIX98 1
  173. # undef _LARGEFILE_SOURCE
  174. # define _LARGEFILE_SOURCE 1
  175. # if (_XOPEN_SOURCE - 0) >= 600
  176. # define __USE_XOPEN2K 1
  177. # undef __USE_ISOC99
  178. # define __USE_ISOC99 1
  179. # endif
  180. # else
  181. # ifdef _XOPEN_SOURCE_EXTENDED
  182. # define __USE_XOPEN_EXTENDED 1
  183. # endif
  184. # endif
  185. #endif
  186. #ifdef _LARGEFILE_SOURCE
  187. # define __USE_LARGEFILE 1
  188. #endif
  189. #ifdef _LARGEFILE64_SOURCE
  190. # define __USE_LARGEFILE64 1
  191. #endif
  192. #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
  193. # define __USE_FILE_OFFSET64 1
  194. #endif
  195. #if defined _BSD_SOURCE || defined _SVID_SOURCE
  196. # define __USE_MISC 1
  197. #endif
  198. #ifdef _BSD_SOURCE
  199. # define __USE_BSD 1
  200. #endif
  201. #ifdef _SVID_SOURCE
  202. # define __USE_SVID 1
  203. #endif
  204. #ifdef _GNU_SOURCE
  205. # define __USE_GNU 1
  206. #endif
  207. #if defined _REENTRANT || defined _THREAD_SAFE
  208. # define __USE_REENTRANT 1
  209. #endif
  210. /* We do support the IEC 559 math functionality, real and complex. */
  211. #define __STDC_IEC_559__ 1
  212. #define __STDC_IEC_559_COMPLEX__ 1
  213. /* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.0. */
  214. #define __STDC_ISO_10646__ 200009L
  215. /* Major and minor version number of the uClibc library package. Use
  216. these macros to test for features in specific releases. */
  217. #define __UCLIBC__ 0
  218. #define __UCLIBC_MAJOR__ 9
  219. #define __UCLIBC_MINOR__ 5
  220. /* There is an unwholesomely huge amount of code out there that depends on the
  221. * presence of GNU libc header files. We have GNU libc header files. So here
  222. * we commit a horrible sin. At this point, we _lie_ and claim to be GNU libc
  223. * to make things like /usr/include/linux/socket.h and lots of apps work as
  224. * their developers intended. This is IMHO, pardonable, since these defines
  225. * are not really intended to check for the presence of a particular library,
  226. * but rather are used to define an _interface_. */
  227. #if !defined __FORCE_NOGLIBC && (!defined _LIBC || defined __FORCE_GLIBC)
  228. # define __GNU_LIBRARY__ 6
  229. # define __GLIBC__ 2
  230. # define __GLIBC_MINOR__ 2
  231. #endif
  232. /* Convenience macros to test the versions of glibc and gcc.
  233. Use them like this:
  234. #if __GNUC_PREREQ (2,8)
  235. ... code requiring gcc 2.8 or later ...
  236. #endif
  237. Note - they won't work for gcc1 or glibc1, since the _MINOR macros
  238. were not defined then. */
  239. #if defined __GNUC__ && defined __GNUC_MINOR__
  240. # define __GNUC_PREREQ(maj, min) \
  241. ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
  242. #else
  243. # define __GNUC_PREREQ(maj, min) 0
  244. #endif
  245. #define __GLIBC_PREREQ(maj, min) \
  246. ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
  247. /* This is here only because every header file already includes this one. */
  248. #ifndef __ASSEMBLER__
  249. #ifndef _SYS_CDEFS_H
  250. # include <sys/cdefs.h>
  251. #endif
  252. /* If we don't have __REDIRECT, prototypes will be missing if
  253. __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
  254. # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
  255. # define __USE_LARGEFILE 1
  256. # define __USE_LARGEFILE64 1
  257. # endif
  258. #endif /* !ASSEMBLER */
  259. /* Decide whether we can define 'extern inline' functions in headers. */
  260. #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
  261. && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
  262. # define __USE_EXTERN_INLINES 1
  263. #endif
  264. /* This is here only because every header file already includes this one. */
  265. #if 0
  266. //#ifndef _LIBC
  267. /* Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
  268. <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
  269. which will always return failure (and set errno to ENOSYS).
  270. We avoid including <gnu/stubs.h> when compiling the C library itself to
  271. avoid a dependency loop. stubs.h depends on every object file. If
  272. this #include were done for the library source code, then every object
  273. file would depend on stubs.h. */
  274. # include <gnu/stubs.h>
  275. #endif
  276. /* Load up the current set of uClibc supported features */
  277. #define __need_uClibc_config_h
  278. #include <bits/uClibc_config.h>
  279. #undef __need_uClibc_config_h
  280. /* Some nice features only work properly with ELF */
  281. #if defined HAVE_ELF
  282. # define link_warning(symbol, msg) \
  283. asm (".section " ".gnu.warning." #symbol "\n\t.previous"); \
  284. static const char __evoke_link_warning_##symbol[] \
  285. __attribute__ ((section (".gnu.warning." #symbol "\n\t#"))) = msg;
  286. # define weak_alias(name, aliasname) \
  287. asm(".global " C_SYMBOL_PREFIX #name ";" \
  288. ".weak " C_SYMBOL_PREFIX #aliasname ";" \
  289. C_SYMBOL_PREFIX #aliasname "=" C_SYMBOL_PREFIX #name ";");
  290. # define weak_symbol(name) \
  291. asm(".weak " C_SYMBOL_PREFIX #name ";");
  292. #else
  293. # define link_warning(symbol, msg) \
  294. asm (".stabs \"" msg "\",30,0,0,0\n\t" \
  295. ".stabs \"" #symbol "\",1,0,0,0\n");
  296. # define weak_alias(name, aliasname) \
  297. __asm__(".global alias\n.set alias,original");
  298. #endif
  299. #endif /* features.h */