features.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. /* First, record if user requested some form of large file support. */
  76. #if defined(_LARGEFILE_SOURCE) || defined(_LARGEFILE64_SOURCE) \
  77. || (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64)
  78. # define __USER_REQUESTED_LFS_OPTION 1
  79. #endif
  80. /* Undefine everything, so we get a clean slate. */
  81. #undef __USE_ISOC99
  82. #undef __USE_POSIX
  83. #undef __USE_POSIX2
  84. #undef __USE_POSIX199309
  85. #undef __USE_POSIX199506
  86. #undef __USE_XOPEN
  87. #undef __USE_XOPEN_EXTENDED
  88. #undef __USE_UNIX98
  89. #undef __USE_XOPEN2K
  90. #undef __USE_LARGEFILE
  91. #undef __USE_LARGEFILE64
  92. #undef __USE_FILE_OFFSET64
  93. #undef __USE_BSD
  94. #undef __USE_SVID
  95. #undef __USE_MISC
  96. #undef __USE_GNU
  97. #undef __USE_REENTRANT
  98. #undef __FAVOR_BSD
  99. #undef __KERNEL_STRICT_NAMES
  100. /* Suppress kernel-name space pollution unless user expressedly asks
  101. for it. */
  102. #ifndef _LOOSE_KERNEL_NAMES
  103. # define __KERNEL_STRICT_NAMES
  104. #endif
  105. /* Always use ISO C things. */
  106. #define __USE_ANSI 1
  107. /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */
  108. #if defined _BSD_SOURCE && \
  109. !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \
  110. defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \
  111. defined _GNU_SOURCE || defined _SVID_SOURCE)
  112. # define __FAVOR_BSD 1
  113. #endif
  114. /* If _GNU_SOURCE was defined by the user, turn on all the other features. */
  115. #ifdef _GNU_SOURCE
  116. # undef _ISOC99_SOURCE
  117. # define _ISOC99_SOURCE 1
  118. # undef _POSIX_SOURCE
  119. # define _POSIX_SOURCE 1
  120. # undef _POSIX_C_SOURCE
  121. # define _POSIX_C_SOURCE 199506L
  122. # undef _XOPEN_SOURCE
  123. # define _XOPEN_SOURCE 600
  124. # undef _XOPEN_SOURCE_EXTENDED
  125. # define _XOPEN_SOURCE_EXTENDED 1
  126. # undef _LARGEFILE64_SOURCE
  127. # define _LARGEFILE64_SOURCE 1
  128. # undef _BSD_SOURCE
  129. # define _BSD_SOURCE 1
  130. # undef _SVID_SOURCE
  131. # define _SVID_SOURCE 1
  132. #endif
  133. /* If nothing (other than _GNU_SOURCE) is defined,
  134. define _BSD_SOURCE and _SVID_SOURCE. */
  135. #if (!defined __STRICT_ANSI__ && !defined _ISOC99_SOURCE && \
  136. !defined _POSIX_SOURCE && !defined _POSIX_C_SOURCE && \
  137. !defined _XOPEN_SOURCE && !defined _XOPEN_SOURCE_EXTENDED && \
  138. !defined _BSD_SOURCE && !defined _SVID_SOURCE)
  139. # define _BSD_SOURCE 1
  140. # define _SVID_SOURCE 1
  141. #endif
  142. /* This is to enable the ISO C99 extension. Also recognize the old macro
  143. which was used prior to the standard acceptance. This macro will
  144. eventually go away and the features enabled by default once the ISO C99
  145. standard is widely adopted. */
  146. #if (defined _ISOC99_SOURCE || defined _ISOC9X_SOURCE \
  147. || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L))
  148. # define __USE_ISOC99 1
  149. #endif
  150. /* If none of the ANSI/POSIX macros are defined, use POSIX.1 and POSIX.2
  151. (and IEEE Std 1003.1b-1993 unless _XOPEN_SOURCE is defined). */
  152. #if (!defined __STRICT_ANSI__ && !defined _POSIX_SOURCE && \
  153. !defined _POSIX_C_SOURCE)
  154. # define _POSIX_SOURCE 1
  155. # if defined _XOPEN_SOURCE && (_XOPEN_SOURCE - 0) < 500
  156. # define _POSIX_C_SOURCE 2
  157. # else
  158. # define _POSIX_C_SOURCE 199506L
  159. # endif
  160. #endif
  161. #if defined _POSIX_SOURCE || _POSIX_C_SOURCE >= 1 || defined _XOPEN_SOURCE
  162. # define __USE_POSIX 1
  163. #endif
  164. #if defined _POSIX_C_SOURCE && _POSIX_C_SOURCE >= 2 || defined _XOPEN_SOURCE
  165. # define __USE_POSIX2 1
  166. #endif
  167. #if (_POSIX_C_SOURCE - 0) >= 199309L
  168. # define __USE_POSIX199309 1
  169. #endif
  170. #if (_POSIX_C_SOURCE - 0) >= 199506L
  171. # define __USE_POSIX199506 1
  172. #endif
  173. #ifdef _XOPEN_SOURCE
  174. # define __USE_XOPEN 1
  175. # if (_XOPEN_SOURCE - 0) >= 500
  176. # define __USE_XOPEN_EXTENDED 1
  177. # define __USE_UNIX98 1
  178. # undef _LARGEFILE_SOURCE
  179. # define _LARGEFILE_SOURCE 1
  180. # if (_XOPEN_SOURCE - 0) >= 600
  181. # define __USE_XOPEN2K 1
  182. # undef __USE_ISOC99
  183. # define __USE_ISOC99 1
  184. # endif
  185. # else
  186. # ifdef _XOPEN_SOURCE_EXTENDED
  187. # define __USE_XOPEN_EXTENDED 1
  188. # endif
  189. # endif
  190. #endif
  191. #ifdef _LARGEFILE_SOURCE
  192. # define __USE_LARGEFILE 1
  193. #endif
  194. #ifdef _LARGEFILE64_SOURCE
  195. # define __USE_LARGEFILE64 1
  196. #endif
  197. #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64
  198. # define __USE_FILE_OFFSET64 1
  199. #endif
  200. #if defined _BSD_SOURCE || defined _SVID_SOURCE
  201. # define __USE_MISC 1
  202. #endif
  203. #ifdef _BSD_SOURCE
  204. # define __USE_BSD 1
  205. #endif
  206. #ifdef _SVID_SOURCE
  207. # define __USE_SVID 1
  208. #endif
  209. #ifdef _GNU_SOURCE
  210. # define __USE_GNU 1
  211. #endif
  212. #if defined _REENTRANT || defined _THREAD_SAFE
  213. # define __USE_REENTRANT 1
  214. #endif
  215. /* We do support the IEC 559 math functionality, real and complex. */
  216. #define __STDC_IEC_559__ 1
  217. #define __STDC_IEC_559_COMPLEX__ 1
  218. /* wchar_t uses ISO 10646-1 (2nd ed., published 2000-09-15) / Unicode 3.0. */
  219. #define __STDC_ISO_10646__ 200009L
  220. /* Major and minor version number of the uClibc library package. Use
  221. these macros to test for features in specific releases. */
  222. #define __UCLIBC__ 0
  223. #define __UCLIBC_MAJOR__ 9
  224. #define __UCLIBC_MINOR__ 5
  225. /* There is an unwholesomely huge amount of code out there that depends on the
  226. * presence of GNU libc header files. We have GNU libc header files. So here
  227. * we commit a horrible sin. At this point, we _lie_ and claim to be GNU libc
  228. * to make things like /usr/include/linux/socket.h and lots of apps work as
  229. * their developers intended. This is IMHO, pardonable, since these defines
  230. * are not really intended to check for the presence of a particular library,
  231. * but rather are used to define an _interface_. */
  232. #if !defined __FORCE_NOGLIBC && (!defined _LIBC || defined __FORCE_GLIBC)
  233. # define __GNU_LIBRARY__ 6
  234. # define __GLIBC__ 2
  235. # define __GLIBC_MINOR__ 2
  236. #endif
  237. /* Convenience macros to test the versions of glibc and gcc.
  238. Use them like this:
  239. #if __GNUC_PREREQ (2,8)
  240. ... code requiring gcc 2.8 or later ...
  241. #endif
  242. Note - they won't work for gcc1 or glibc1, since the _MINOR macros
  243. were not defined then. */
  244. #if defined __GNUC__ && defined __GNUC_MINOR__
  245. # define __GNUC_PREREQ(maj, min) \
  246. ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
  247. #else
  248. # define __GNUC_PREREQ(maj, min) 0
  249. #endif
  250. #define __GLIBC_PREREQ(maj, min) \
  251. ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
  252. /* This is here only because every header file already includes this one. */
  253. #ifndef __ASSEMBLER__
  254. #ifndef _SYS_CDEFS_H
  255. # include <sys/cdefs.h>
  256. #endif
  257. /* If we don't have __REDIRECT, prototypes will be missing if
  258. __USE_FILE_OFFSET64 but not __USE_LARGEFILE[64]. */
  259. # if defined __USE_FILE_OFFSET64 && !defined __REDIRECT
  260. # define __USE_LARGEFILE 1
  261. # define __USE_LARGEFILE64 1
  262. # endif
  263. #endif /* !ASSEMBLER */
  264. /* Decide whether we can define 'extern inline' functions in headers. */
  265. #if __GNUC_PREREQ (2, 7) && defined __OPTIMIZE__ \
  266. && !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__
  267. # define __USE_EXTERN_INLINES 1
  268. #endif
  269. /* This is here only because every header file already includes this one. */
  270. #if 0
  271. /*#ifndef _LIBC*/
  272. /* Get the definitions of all the appropriate `__stub_FUNCTION' symbols.
  273. <gnu/stubs.h> contains `#define __stub_FUNCTION' when FUNCTION is a stub
  274. which will always return failure (and set errno to ENOSYS).
  275. We avoid including <gnu/stubs.h> when compiling the C library itself to
  276. avoid a dependency loop. stubs.h depends on every object file. If
  277. this #include were done for the library source code, then every object
  278. file would depend on stubs.h. */
  279. # include <gnu/stubs.h>
  280. #endif
  281. /* No C++ */
  282. #define __BEGIN_DECLS
  283. #define __END_DECLS
  284. /* Load up the current set of uClibc supported features */
  285. #define __need_uClibc_config_h
  286. #include <bits/uClibc_config.h>
  287. #undef __need_uClibc_config_h
  288. /* Make sure users large file options agree with uClibc's configuration. */
  289. #ifndef __UCLIBC_HAVE_LFS__
  290. /* If uClibc was built without large file support, output an error if
  291. * large file functions are requested. */
  292. #ifdef __USER_REQUESTED_LFS_OPTION
  293. #error uClibc was configured without large file support...
  294. /* Since _LARGEFILE_SOURCE and _LARGEFILE64_SOURCE can be turned by
  295. * other options, disable them with a warning if they were enabled. */
  296. #elif defined(_LARGEFILE_SOURCE) || defined(_LARGEFILE64_SOURCE)
  297. #warning uClibc was configured without large file support...
  298. #endif
  299. #undef _LARGEFILE_SOURCE
  300. #undef _LARGEFILE64_SOURCE
  301. #undef _FILE_OFFSET_BITS
  302. #undef __USE_LARGEFILE
  303. #undef __USE_LARGEFILE64
  304. #undef __USE_FILE_OFFSET64
  305. /* If we're actually building uClibc with large file support,
  306. * define __USE_LARGEFILE64 only. */
  307. #elif defined(_LIBC)
  308. #undef _LARGEFILE_SOURCE
  309. #undef _LARGEFILE64_SOURCE
  310. #undef _FILE_OFFSET_BITS
  311. #undef __USE_LARGEFILE
  312. #undef __USE_LARGEFILE64
  313. #undef __USE_FILE_OFFSET64
  314. #define __USE_LARGEFILE64 1
  315. #endif
  316. /* Some nice features only work properly with ELF */
  317. #if defined _LIBC && defined HAVE_ELF
  318. /* Define ALIASNAME as a weak alias for NAME. */
  319. # define weak_alias(name, aliasname) _weak_alias (name, aliasname)
  320. # define _weak_alias(name, aliasname) \
  321. extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
  322. /* Define ALIASNAME as a strong alias for NAME. */
  323. # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
  324. # define _strong_alias(name, aliasname) \
  325. extern __typeof (name) aliasname __attribute__ ((alias (#name)));
  326. /* This comes between the return type and function name in
  327. * a function definition to make that definition weak. */
  328. # define weak_function __attribute__ ((weak))
  329. # define weak_const_function __attribute__ ((weak, __const__))
  330. /* Tacking on "\n\t#" to the section name makes gcc put it's bogus
  331. * section attributes on what looks like a comment to the assembler. */
  332. # define link_warning(symbol, msg) \
  333. asm (".section " ".gnu.warning." #symbol "\n\t.previous"); \
  334. static const char __evoke_link_warning_##symbol[] \
  335. __attribute__ ((section (".gnu.warning." #symbol "\n\t#"))) = msg;
  336. #else
  337. # define strong_alias(name, aliasname) _strong_alias (name, aliasname)
  338. # define weak_alias(name, aliasname) _strong_alias (name, aliasname)
  339. # define _strong_alias(name, aliasname) \
  340. __asm__(".global _" #aliasname "\n.set _" #aliasname ",_" #name);
  341. # define link_warning(symbol, msg) \
  342. asm (".stabs \"" msg "\",30,0,0,0\n\t" \
  343. ".stabs \"" #symbol "\",1,0,0,0\n");
  344. #endif
  345. /* --- this is added to integrate linuxthreads */
  346. #define __USE_UNIX98 1
  347. #ifndef weak_function
  348. /* If we do not have the __attribute__ ((weak)) syntax, there is no way we
  349. can define functions as weak symbols. The compiler will emit a `.globl'
  350. directive for the function symbol, and a `.weak' directive in addition
  351. will produce an error from the assembler. */
  352. # define weak_function /* empty */
  353. # define weak_const_function /* empty */
  354. #endif
  355. /* On some platforms we can make internal function calls (i.e., calls of
  356. functions not exported) a bit faster by using a different calling
  357. convention. */
  358. #ifndef internal_function
  359. # define internal_function /* empty */
  360. #endif
  361. /* Prepare for the case that `__builtin_expect' is not available. */
  362. #ifndef HAVE_BUILTIN_EXPECT
  363. # define __builtin_expect(expr, val) (expr)
  364. #endif
  365. #endif /* features.h */