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.

140 lines
2.9 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. #ifndef __mips__
  18. #undef __mips__
  19. #endif
  20. #ifndef __mips64__
  21. #undef __mips64__
  22. #endif
  23. #ifndef __sparc__
  24. #undef __sparc__
  25. #endif
  26. #ifndef __sparc64__
  27. #undef __sparc64__
  28. #endif
  29. #ifndef __alpha__
  30. #undef __alpha__
  31. #endif
  32. #ifndef __hppa__
  33. #undef __hppa__
  34. #endif
  35. #ifndef __arm__
  36. #undef __arm__
  37. #endif
  38. #ifndef __rs6000__
  39. #undef __rs6000__
  40. #endif
  41. #ifndef __m88k__
  42. #undef __m88k__
  43. #endif
  44. #ifndef __convex__
  45. #undef __convex__
  46. #endif
  47. #ifndef __ia64__
  48. #undef __ia64__
  49. #endif
  50. #ifndef __s390__
  51. #undef __s390__
  52. #endif
  53. /* assembler syntax */
  54. /* CL_AS_UNDERSCORE */
  55. /* Define if C symbols are prefixed by an underscore in assembly language. */
  56. #undef ASM_UNDERSCORE
  57. /* compiler characteristics */
  58. /* CL_BOOL */
  59. /* Define if your compiler understands the bool type. */
  60. #undef HAVE_BOOL
  61. /* Define this as `int' if your compiler doesn't understand the bool type. */
  62. #undef bool
  63. /* CL_LONGLONG */
  64. /* Define if your compiler supports the `long long' type. */
  65. #undef HAVE_LONGLONG
  66. /* CL_LONGDOUBLE */
  67. /* Define if your compiler supports the `long double' type. */
  68. #undef HAVE_LONGDOUBLE
  69. /* CL_TEMPLATE_NULL */
  70. /* Define if your compiler supports the `template <>' syntax. */
  71. #undef HAVE_TEMPLATE_NULL
  72. /* header files */
  73. /* CL_UNISTD_H */
  74. /* Define if you have <unistd.h>. */
  75. #undef HAVE_UNISTD_H
  76. /* CL_GMP_SET_UINTD */
  77. /* Define one of the following so sizeof(uintD) matches sizeof(mp_limb_t). */
  78. #undef GMP_DEMANDS_UINTD_LONG_LONG
  79. #undef GMP_DEMANDS_UINTD_LONG
  80. #undef GMP_DEMANDS_UINTD_INT
  81. /* functions and declarations */
  82. /* CL_ALLOCA */
  83. /* Define if you have <alloca.h> and it should be used (not Ultrix). */
  84. #undef HAVE_ALLOCA_H
  85. /* Define if you need to link with an external alloca.o when using alloca(). */
  86. #undef NO_ALLOCA
  87. /* compiler characteristics */
  88. /* CL_GLOBAL_CONSTRUCTORS */
  89. /* Define as the prefix of the name of a module's global constructor function,
  90. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  91. #ifndef CL_GLOBAL_CONSTRUCTOR_PREFIX
  92. #undef CL_GLOBAL_CONSTRUCTOR_PREFIX
  93. #endif
  94. /* Define as the prefix of the name of a module's global destructor function,
  95. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  96. #ifndef CL_GLOBAL_DESTRUCTOR_PREFIX
  97. #undef CL_GLOBAL_DESTRUCTOR_PREFIX
  98. #endif
  99. /* Define if a module's global constructor function and global destructor
  100. function need to be exported in order to be accessible from other modules. */
  101. #undef CL_NEED_GLOBALIZE_CTORDTOR
  102. /* CL_CHAR_UNSIGNED */
  103. #ifndef __CHAR_UNSIGNED__
  104. #undef __CHAR_UNSIGNED__
  105. #endif
  106. /* CL_MACHINE */
  107. /* see cl_intparam.h */
  108. /* see cl_floatparam.h */
  109. #endif /* _CL_CONFIG_H */