co-msc20.lnt
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:8k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. //    co-msc20.lnt
  2. //    Compiler Options for Microsoft C Version 9.x
  3. -cmsc
  4. //    This file contains options to allow PC-lint to process source
  5. //    files for your compiler.  It is used as follows:
  6. //
  7. //    lint  co-msc20.lnt  source-file(s)
  8. //
  9. -d_M_IX86=300   // assume Intel 80386 architecture -- modify to suit
  10.         // We now support __declspec directly so that the following
  11.         // option is now commented out.  If trouble ensues you can
  12.         // once again disable __declspec through this option.
  13.         // -d__declspec()= // ignore this construct
  14. -d_declspec=__declspec  // the single '_' version is occasionally used
  15.             // while processing compiler (library) header files ...
  16. -wlib(1)    // sets the warning level within library headers to 1
  17.     // (no warnings, just syntax errors).  Comment out if you
  18.     // are actually linting library headers.  This
  19.     // option makes obsolete options of the form -elib(axxx) where
  20.     // xxx >= 400 which may be retained for historical reasons.
  21. -elib(652)  // suppress message about #define of earlier declared symbols
  22. -elib(762)  // suppress message about multiple identical declarations and
  23. -elib(760)  // suppress message about multiple identical macro defs
  24. -elib(514)  // allow #if <boolean> | <boolean>
  25. -elib(553)  // undefined preprocessor variables assumed 0
  26. //  SREGS, WORDREGS, BYTEREGS are defined in both bios.h and dos.h
  27. //  and accordingly you MAY get type differences based on 'origin'.
  28. //  If so, use the following options:
  29. //      -etd(origin)
  30. //      -elib(770)
  31. -format=%(%f(%l)s:s%)%ts%n:s%m
  32.         // error format similar to MSC
  33.         // Note that %c can also be used to specify column
  34. -e46    // allows bit-fields to be other than int or unsigned
  35. +fan    // allow anonymous unions
  36. +fdi    // Use directory of the including file
  37. -fbo    // disable the bool type
  38. -fdh    // do not append a .h to header names
  39. -ffb    // do not establish a separate scope for declares within for clauses
  40. -esym(123,min,max)  // allows users to use min, max as variables
  41. -d_MSC_VER=900  // The version number of Microsoft C, for C6 make this 700
  42.                 // For Visual C++ make it 800
  43. +rw(__inline)   // activate the __inline keyword
  44. -d_inline=__inline  // _inline is the same as __inline
  45. -sld10          // sizeof(long double) is 10.
  46. -function(exit,_exit)   // _exit() is like exit()
  47. -function(exit,_assert)   // _assert() is like exit()
  48. -emacro(506,assert) // don't warn about constant value Boolean
  49. -emacro(734,putc)   // don't complain about items being too large.
  50. -emacro(415,_FP_SEG)  // access of out-of-bounds pointer
  51. -emacro(740,FP_SEG,FP_OFF)  // unusual casts
  52. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  53. // 796 and 797 (out-of-bounds errors).
  54. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  55. -emacro(545,offsetof)  // addressing an array member is OK
  56. -e793           // inhibit 'ANSI limit reached' --
  57. // limits are impractically low with MSVC headers
  58. -esym(773,L_tmpnam)     // defined with an unparenthesized '+'
  59. //  The following functions exhibit variable return modes.
  60. //  That is, they may equally-usefully be called for a value
  61. //  as called just for their effects.  Accordingly we inhibit
  62. //  Warning 534 for these functions.
  63. //  Feel free to add to or subtract from this list.
  64. -esym(534,close,creat,fclose,fflush,_flsbuf,fprintf,fputc)
  65. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  66. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  67. -esym(534,strncat,strncpy,unlink,write)
  68. //  These are the wide char variants of printf-scanf family
  69. -wprintf( 1, wprintf )
  70. -wprintf( 2, fwprintf, swprintf )
  71. -wscanf( 1, wscanf )
  72. -wscanf( 2, fwscanf, swscanf )
  73. // The following options are required by most compilers to
  74. // noiselessly process iostream.h
  75. -elib(1717) //empty prototypes
  76. -elib(522) //function return value ignored
  77. -elib(1053) //prototypes cannot be distinguished
  78. -elib(1721) //unusual operator =() declaration
  79. -elib(1720) //assignment op has non-const parameter
  80. -elib(655)  // bitwise operator combining compatible enum's
  81. -elib(641)  // converting enum's to int
  82. -elib(537)  // repeated include file (ios.h)
  83. -elib(1511) // member (rdbuf) hides nonvirtual member
  84. -elib(1712) // default constructor not defined for class
  85. -elib(1736) // redundant access specifier
  86. -esym(1702,operator<<,operator>>)  // both a member and an ordinary function
  87. // These functions return things that are frequently ignored.
  88. -esym(534,ostream::operator<<,istream::operator>>)
  89. // The following additional options seem to be needed.
  90. -elib(620) // el or one? (some constants end in 'l' not 'L')
  91. -elib(648) // overflow in computing constant (3<<16)
  92. -elib(659) // nothing follows '}' on some line
  93. -elib(723) // suspicious use of '='
  94. -elib(747) //significant prototype coercion
  95. -elib(740) //unusual pointer casts
  96. -elib(1007) // virtual functions within extern "C" block
  97. -elib(1029) //default argument repeated -- can't dist. char, signed char
  98. -elib(1055) //call to rdbuf() questioned?
  99. -elib(1504) // apparently useless structs
  100. -elib(1708,1709) // minor C/C++ declaration conflict
  101. -elib(1707) // operator new declared w/o 'static'
  102. -elib(1722) // assignment op does not return reference
  103. -elib(149)  // default argument found in C code.
  104. -elib(578)  // declaration of time hides delaration of global time().
  105. -elib(761)  // two equivalent typedef declarations
  106. -elib(1065)  // same name declared as "C" and not "C"
  107. -elib(1066)  // same name declared as "C" and not "C"
  108. -elib(1704)   // constructor with private access declaration
  109. -elib(1735)   // default parameter within virtual function
  110. -elib(773)  // macros that look like unparenthesized expressions
  111. -elib(806)  // 1-bit bitfields typed int
  112. -elib(1501) // 0-length data members
  113. // Special Notice:  You may be receiving mysterious 1058 errors
  114. //   when you use "iomanipulator"s.  For example:
  115. //   cout << setw(4) << 4;
  116. //   results in Error 1058 (assigning a const to a ref) because the
  117. //   manipulator setw returns a non-lvalue which is assigned to a reference.
  118. //   This reflects an oversight in the Microsoft header file: iomanip.h
  119. //   Therein you may change the declaration:
  120. //     friend ostream& operator<<(iostream& s, IOMANIP(T) & sm) { ...
  121. //   to:
  122. //     friend ostream& operator<<(iostream& s, const IOMANIP(T) & sm) { ...
  123. //   to reflect the fact that sm is not modified by this function.
  124. //    The following options are needed for MS Visual C++ 2.00
  125. -d_M_IX86=300   // define the architecture (one of _M_IX86, _M_ALPHA,
  126. // _M_PPC, _M_MRX000)
  127. -d_INTEGRAL_MAX_BITS=64  // denotes support for __int64
  128. +fll            // enable long long
  129. -d__STDC__=0    // Starting with 2.0, the tests within Microsoft header
  130. // files for __STDC__ are of the form #if rather than #ifdef
  131. -dWIN32         // this is necessary because without WIN32 being defined
  132. -d_WIN32        // a very gross syntax error is exposed in the objbase.h
  133. // definition of function operator ==().  Alternatively,
  134. // repair the function definition.
  135. -dDBG=0         // There is a #if test made for this variable.
  136. -esym(123,FD_SET)  // defined as macro and as typedef
  137. -elib(43)       // vacuous array within _MIDL_FORMAT_STRING
  138. -elib(657)      // declaring "anonymous struct" in union _LARGE_INTEGER
  139. -elib(799)      // long numerical constant for max. __int64
  140. -elib(1515)     // AFX_THREAD_STATE member has no default constructor
  141. -elib(1706)     // Unusual declaration with a scope operator
  142. -elib(1548)     // conflicting exception specifications
  143. -elib(1737)     // hiding global operator new
  144. -elib(1739)     // binary operator should be non-member function
  145. -elib(1748)     // non-virtual base class included twice
  146. -elib(1759)     // post-fix operator returns a reference