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

编辑器/阅读器

开发平台:

C/C++

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