config.hpp
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:4k
源码类别:

编译器/解释器

开发平台:

Others

  1. #ifndef INC_config_hpp__
  2. #define INC_config_hpp__
  3. /**
  4.  * <b>SOFTWARE RIGHTS</b>
  5.  * <p>
  6.  * ANTLR 2.6.0 MageLang Insitute, 1999
  7.  * <p>
  8.  * We reserve no legal rights to the ANTLR--it is fully in the
  9.  * public domain. An individual or company may do whatever
  10.  * they wish with source code distributed with ANTLR or the
  11.  * code generated by ANTLR, including the incorporation of
  12.  * ANTLR, or its output, into commerical software.
  13.  * <p>
  14.  * We encourage users to develop software with ANTLR. However,
  15.  * we do ask that credit is given to us for developing
  16.  * ANTLR. By "credit", we mean that if you use ANTLR or
  17.  * incorporate any source code into one of your programs
  18.  * (commercial product, research project, or otherwise) that
  19.  * you acknowledge this fact somewhere in the documentation,
  20.  * research report, etc... If you like ANTLR and have
  21.  * developed a nice tool with the output, please mention that
  22.  * you developed it using ANTLR. In addition, we ask that the
  23.  * headers remain intact in our source code. As long as these
  24.  * guidelines are kept, we expect to continue enhancing this
  25.  * system and expect to make other tools available as they are
  26.  * completed.
  27.  * <p>
  28.  * The ANTLR gang:
  29.  * @version ANTLR 2.6.0 MageLang Insitute, 1999
  30.  * @author Terence Parr, <a href=http://www.MageLang.com>MageLang Institute</a>
  31.  * @author <br>John Lilley, <a href=http://www.Empathy.com>Empathy Software</a>
  32.  * @author <br><a href="mailto:pete@yamuna.demon.co.uk">Pete Wells</a>
  33.  */
  34. /*
  35.  * Just a simple configuration file to differentiate between the
  36.  * various compilers used.
  37.  */
  38. /*
  39. Some compilers do not accept namespaces std:: for example.
  40. In this case, just define #define ANTLR_USE_NAMESPACE(_x_).
  41. See SunWorkShop 4.2 for example.
  42.  */
  43. #define ANTLR_USE_NAMESPACE(_x_) _x_::
  44. #define ANTLR_USING_NAMESPACE(_x_) using namespace _x_;
  45. #define ANTLR_BEGIN_NAMESPACE(_x_) namespace _x_ {
  46. #define ANTLR_END_NAMESPACE }
  47. #if defined(_MSC_VER) && !defined(__ICL) // Microsoft Visual C++
  48. // This warning really gets on my nerves.
  49. // It's the one about symbol longer than 256 chars, and it happens
  50. // all the time with STL.
  51. #pragma warning( disable : 4786 )
  52. // Now, some defines for shortcomings in the MS compiler:
  53. // Not allowed to put 'static const int XXX=20;' in a class definition
  54. #define NO_STATIC_CONSTS
  55. // Using vector<XXX> requires operator<(X,X) to be defined
  56. #define NEEDS_OPERATOR_LESS_THAN
  57. // No strcasecmp in the C library (so use stricmp instead)
  58. // - Anyone know which is in which standard?
  59. #define NO_STRCASECMP
  60. #endif
  61. #if defined(__ICL)
  62. #define NO_STRCASECMP
  63. #endif
  64. //
  65. // SunPro Compiler (Using OBJECTSPACE STL)
  66. //
  67. #ifdef __SUNPRO_CC
  68. #undef namespace
  69. #define namespace
  70. #if (__SUNPRO_CC == 0x420)
  71. /* This code is specif to SunWspro Compiler 4.2, and will compile with
  72.    the objectspace 2.1 toolkit for Solaris2.6 */
  73. #define HAS_NOT_CASSERT_H
  74. #define HAS_NOT_CSTRING_H
  75. #define HAS_NOT_CCTYPE_H
  76. #define HAS_NOT_CSTDIO_H
  77. #define HAS_OSTREAM_H
  78. /* #define OS_SOLARIS_2_6 
  79. #define OS_NO_WSTRING 
  80. #define OS_NO_ALLOCATORS 
  81. #define OS_MULTI_THREADED 
  82. #define OS_SOLARIS_NATIVE 
  83. #define OS_REALTIME 
  84. #define __OSVERSION__=5 
  85. #define SVR4
  86. */
  87. // ObjectSpace + some specific templates constructions with stl.
  88. /* #define OS_NO_ALLOCATOR */
  89. // This great compiler does not has the namespace feature.
  90. #undef  ANTLR_USE_NAMESPACE
  91. #define ANTLR_USE_NAMESPACE(_x_)
  92. #undef ANTLR_USING_NAMESPACE
  93. #define ANTLR_USING_NAMESPACE(_x_)
  94. #undef ANTLR_BEGIN_NAMESPACE
  95. #define ANTLR_BEGIN_NAMESPACE(_x_)
  96. #undef ANTLR_END_NAMESPACE
  97. #define ANTLR_END_NAMESPACE
  98. #endif
  99. #undef explicit
  100. #define explicit
  101. #define exception os_exception
  102. #define bad_exception os_bad_exception
  103. // Not allowed to put 'static const int XXX=20;' in a class definition
  104. #define NO_STATIC_CONSTS
  105. // Using vector<XXX> requires operator<(X,X) to be defined
  106. #define NEEDS_OPERATOR_LESS_THAN
  107. #endif
  108. //
  109. // Inprise C++ Builder 3.0
  110. //
  111. #ifdef __BCPLUSPLUS__
  112. #define NO_TEMPLATE_PARTS
  113. #define NO_STRCASECMP
  114. #endif
  115. #ifdef __IBMCPP__ // IBM VisualAge C++ ( which includes the Dinkumware C++ Library )
  116. // No strcasecmp in the C library (so use stricmp instead)
  117. // - Anyone know which is in which standard?
  118. #define NO_STRCASECMP
  119. #endif
  120. #endif //INC_config_hpp__