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.

127 lines
2.6 KiB

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