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.

133 lines
2.6 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 __x86_64__
  51. #undef __x86_64__
  52. #endif
  53. #ifndef __s390__
  54. #undef __s390__
  55. #endif
  56. /* assembler syntax */
  57. /* CL_AS_UNDERSCORE */
  58. /* Define if C symbols are prefixed by an underscore in assembly language. */
  59. #undef ASM_UNDERSCORE
  60. /* compiler characteristics */
  61. /* CL_LONGLONG */
  62. /* Define if your compiler supports the `long long' type. */
  63. #undef HAVE_LONGLONG
  64. /* CL_LONGDOUBLE */
  65. /* Define if your compiler supports the `long double' type. */
  66. #undef HAVE_LONGDOUBLE
  67. /* header files */
  68. /* CL_UNISTD_H */
  69. /* Define if you have <unistd.h>. */
  70. #undef HAVE_UNISTD_H
  71. /* CL_GMP_SET_UINTD */
  72. /* Define one of the following so sizeof(uintD) matches sizeof(mp_limb_t). */
  73. #undef GMP_DEMANDS_UINTD_LONG_LONG
  74. #undef GMP_DEMANDS_UINTD_LONG
  75. #undef GMP_DEMANDS_UINTD_INT
  76. /* functions and declarations */
  77. /* CL_ALLOCA */
  78. /* Define if you have <alloca.h> and it should be used (not Ultrix). */
  79. #undef HAVE_ALLOCA_H
  80. /* Define if you need to link with an external alloca.o when using alloca(). */
  81. #undef NO_ALLOCA
  82. /* compiler characteristics */
  83. /* CL_GLOBAL_CONSTRUCTORS */
  84. /* Define as the prefix of the name of a module's global constructor function,
  85. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  86. #ifndef CL_GLOBAL_CONSTRUCTOR_PREFIX
  87. #undef CL_GLOBAL_CONSTRUCTOR_PREFIX
  88. #endif
  89. /* Define as the prefix of the name of a module's global destructor function,
  90. cf. macro FILE_FUNCTION_FORMAT in gcc/tree.c. */
  91. #ifndef CL_GLOBAL_DESTRUCTOR_PREFIX
  92. #undef CL_GLOBAL_DESTRUCTOR_PREFIX
  93. #endif
  94. /* Define if a module's global constructor function and global destructor
  95. function need to be exported in order to be accessible from other modules. */
  96. #undef CL_NEED_GLOBALIZE_CTORDTOR
  97. /* CL_CHAR_UNSIGNED */
  98. #ifndef __CHAR_UNSIGNED__
  99. #undef __CHAR_UNSIGNED__
  100. #endif
  101. /* CL_MACHINE */
  102. /* see cl_intparam.h */
  103. /* see cl_floatparam.h */
  104. #endif /* _CL_CONFIG_H */