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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-msc.lnt
  2. //    Compiler Options for Microsoft C Version 8.0 and earlier
  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-msc.lnt  source-file(s)
  8. //
  9. -d_M_IX86=200   // assume Intel 80286 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.         // If you're programming MS Windows set the option
  27.         //  +e934 to report passing short auto pointers as arguments
  28.         // See Petzold, Windows 3.0, pp 897-902
  29.         // You might also want to set the option: -printf(w2,wsprintf)
  30.         // It makes wsprintf like sprintf except that pointers have
  31.         // to be far.
  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. -fdh    // do not append a .h to header names
  44. -ffb    // do not establish a separate scope for declares within for clauses
  45. -esym(123,min,max)  // allows users to use min, max as variables
  46. -d_MSC_VER=700  // The version number of Microsoft C, for C6 make this 600
  47.                 // For Visual C++ make it 800
  48. -u__STDC__      // Needed for C 7.00 to allow use of open, close, etc.
  49. +rw(__inline)   // activate the __inline keyword
  50. -d_inline=__inline  // _inline is the same as __inline
  51. -sld10          // sizeof(long double) is 10.
  52. -function(exit,_exit)   // _exit() is like exit()
  53. -function(exit,_assert)   // _assert() is like exit()
  54. -emacro(734,putc)   // don't complain about items being too large.
  55. -emacro(415,FP_SEG)  // access of out-of-bounds pointer
  56. -emacro(740,FP_SEG,FP_OFF)  // unusual casts
  57. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  58. -emacro(545,offsetof)  // addressing an array member is OK
  59. -e793           // inhibit 'ANSI limit reached' --
  60. // limits are impractically low with MSVC headers
  61. -esym(773,L_tmpnam)     // defined with an unparenthesized '+'
  62. -esym(773,va_start,va_end,SIG_ERR) // defined with exposed operators.
  63. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  64. // 796 and 797 (out-of-bounds errors).
  65. //  The following functions exhibit variable return modes.
  66. //  That is, they may equally-usefully be called for a value
  67. //  as called just for their effects.  Accordingly we inhibit
  68. //  Warning 534 for these functions.
  69. //  Feel free to add to or subtract from this list.
  70. -esym(534,close,creat,fclose,fflush,_flsbuf,fprintf,fputc)
  71. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  72. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  73. -esym(534,strncat,strncpy,unlink,write)
  74. // The following options are required by most compilers to
  75. // noiselessly process iostream.h
  76. -elib(1717) //empty prototypes
  77. -elib(522) //function return value ignored
  78. -elib(1053) //prototypes cannot be distinguished
  79. -elib(1721) //unusual operator =() declaration
  80. -elib(1720) //assignment op has non-const parameter
  81. -elib(655)  // bitwise operator combining compatible enum's
  82. -elib(641)  // converting enum's to int
  83. -elib(537)  // repeated include file (ios.h)
  84. -elib(1511) // member (rdbuf) hides nonvirtual member
  85. -elib(1712) // default constructor not defined for class
  86. -elib(1736) // redundant access specifier
  87. -esym(1702,operator<<,operator>>)  // both a member and an ordinary function
  88. // These functions return things that are frequently ignored.
  89. -esym(534,ostream::operator<<,istream::operator>>)
  90. // The following additional options seem to be needed.
  91. -elib(620) // el or one? (some constants end in 'l' not 'L')
  92. -elib(648) // overflow in computing constant (3<<16)
  93. -elib(659) // nothing follows '}' on some line
  94. -elib(723) // suspicious use of '='
  95. -elib(747) //significant prototype coercion
  96. -elib(740) //unusual pointer casts
  97. -elib(1007) // virtual functions within extern "C" block
  98. -elib(1029) //default argument repeated -- can't dist. char, signed char
  99. -elib(1055) //call to rdbuf() questioned?
  100. -elib(1504) // apparently useless structs
  101. -elib(1708,1709) // minor C/C++ declaration conflict
  102. -elib(1707) // operator new declared w/o 'static'
  103. -elib(1722) // assignment op does not return reference
  104. -elib(149)  // default argument found in C code.
  105. -elib(578)  // declaration of time hides delaration of global time().
  106. -elib(761)  // two equivalent typedef declarations
  107. -elib(1065)  // same name declared as "C" and not "C"
  108. -elib(1066)  // same name declared as "C" and not "C"
  109. -elib(1704)   // constructor with private access declaration
  110. -elib(1735)   // default parameter within virtual function
  111. -elib(1748)     // non-virtual base class included twice
  112. -elib(1759)     // post-fix operator returns a reference
  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.