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.

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