You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
2.7 KiB

  1. // Defines CPU and compiler dependent macros
  2. #ifndef _CL_CONFIG_H
  3. #define _CL_CONFIG_H
  4. /* These definitions are adjusted by `configure' automatically. */
  5. /* release version */
  6. #undef CL_VERSION_MAJOR
  7. #undef CL_VERSION_MINOR
  8. #undef CL_VERSION_PATCHLEVEL
  9. #undef CL_VERSION
  10. /* CPU */
  11. #ifndef __i386__
  12. #undef __i386__
  13. #endif
  14. #ifndef __m68k__
  15. #undef __m68k__
  16. #endif
  17. // NB: GCC def's __mips__ both on big-endian and little-endian systems.
  18. #ifndef __mips__
  19. #undef __mips__
  20. #endif
  21. #ifndef __mipsel__
  22. #undef __mipsel__
  23. #endif
  24. #ifndef __mips64__
  25. #undef __mips64__
  26. #endif
  27. #ifndef __sparc__
  28. #undef __sparc__
  29. #endif
  30. #ifndef __sparc64__
  31. #undef __sparc64__
  32. #endif
  33. #ifndef __alpha__
  34. #undef __alpha__
  35. #endif
  36. #ifndef __hppa__
  37. #undef __hppa__
  38. #endif
  39. #ifndef __arm__
  40. #undef __arm__
  41. #endif
  42. #ifndef __rs6000__
  43. #undef __rs6000__
  44. #endif
  45. #ifndef __m88k__
  46. #undef __m88k__
  47. #endif
  48. #ifndef __convex__
  49. #undef __convex__
  50. #endif
  51. #ifndef __ia64__
  52. #undef __ia64__
  53. #endif
  54. #ifndef __x86_64__
  55. #undef __x86_64__
  56. #endif
  57. #ifndef __s390__
  58. #undef __s390__
  59. #endif
  60. /* assembler syntax */
  61. /* CL_AS_UNDERSCORE */
  62. /* Define if C symbols are prefixed by an underscore in assembly language. */
  63. #undef ASM_UNDERSCORE
  64. /* compiler characteristics */
  65. /* CL_LONGLONG */
  66. /* Define if your compiler supports the `long long' type. */
  67. #undef HAVE_LONGLONG
  68. /* CL_LONGDOUBLE */
  69. /* Define if your compiler supports the `long double' type. */
  70. #undef HAVE_LONGDOUBLE
  71. /* header files */
  72. /* CL_UNISTD_H */
  73. /* Define if you have <unistd.h>. */
  74. #undef HAVE_UNISTD_H
  75. /* CL_GMP_SET_UINTD */
  76. /* Define one of the following so sizeof(uintD) matches sizeof(mp_limb_t). */
  77. #undef GMP_DEMANDS_UINTD_LONG_LONG
  78. #undef GMP_DEMANDS_UINTD_LONG
  79. #undef GMP_DEMANDS_UINTD_INT
  80. /* functions and declarations */
  81. /* CL_ALLOCA */
  82. /* Define if you have <alloca.h> and it should be used (not Ultrix). */
  83. #undef HAVE_ALLOCA_H
  84. /* Define if you need to link with an external alloca.o when using alloca(). */
  85. #undef NO_ALLOCA
  86. /* compiler characteristics */
  87. /* CL_GLOBAL_CONSTRUCTORS */
  88. /* Define as the prefix of the name of a module's global constructor function,
  89. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  90. #ifndef CL_GLOBAL_CONSTRUCTOR_PREFIX
  91. #undef CL_GLOBAL_CONSTRUCTOR_PREFIX
  92. #endif
  93. /* Define as the prefix of the name of a module's global destructor function,
  94. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  95. #ifndef CL_GLOBAL_DESTRUCTOR_PREFIX
  96. #undef CL_GLOBAL_DESTRUCTOR_PREFIX
  97. #endif
  98. /* Define if a module's global constructor function and global destructor
  99. function need to be exported in order to be accessible from other modules. */
  100. #undef CL_NEED_GLOBALIZE_CTORDTOR
  101. /* CL_CHAR_UNSIGNED */
  102. #ifndef __CHAR_UNSIGNED__
  103. #undef __CHAR_UNSIGNED__
  104. #endif
  105. /* CL_MACHINE */
  106. /* see cl_intparam.h */
  107. /* see cl_floatparam.h */
  108. #endif /* _CL_CONFIG_H */