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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-cb.lnt
  2. //    Compiler Options for Inprise' C++ Builder
  3. -ctc
  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-cb.lnt  source-file(s)
  8. //
  9. // You may need to change the following 
  10. -d_M_IX86=300   // assume Intel 80386 architecture -- modify to suit
  11. // -d__MSDOS__     // an MS-DOS application
  12. // -d_Windows      // 16-bit Windows 
  13. -d__WIN32__     // 32-bit Windows
  14. -d__FLAT__      // generally goes along with __WIN32__
  15. -d__CONSOLE__   // a console application under 32-bit Windows
  16. -d__MT__        // multi-threading
  17.     // memory model: e.g. -d__FLAT__ -u__SMALL__  usually set in std.lnt
  18.     // -dSTRICT
  19. // Using Borland classlib or OWL?  Then one of the following is usually
  20. // inserted into std.lnt by the INSTALL procedure.
  21. // You may explicitly insert one by removing the comment:
  22. //  lib-bcl5.lnt      // Borland Class Library
  23. //  lib-owl.lnt       // Borland Object Windows Library
  24. //these are always defined
  25. -d__CDECL__
  26. +fdh // if an extensionless filename is included assume a .h extension
  27. +fpc // pointer value retains l-value
  28. +fbo // bool is an intrinsic type
  29. +fwc // w_char is an intrinsic type
  30. +libh(co-bc5.h) 
  31. -header(co-bc5.h) // includes co-bc5.h which contains borland
  32.                   // specfic defines
  33.             // while processing compiler (library) header files ...
  34. -wlib(1)    // sets the warning level within library headers to 1
  35.     // (no warnings, just syntax errors).  Comment out if you
  36.     // are actually linting library headers.  This
  37.     // option makes obsolete options of the form -elib(axxx) where
  38.     // xxx >= 400 which may be retained for historical reasons.
  39. -elib(87)   // windef.h contains a botched #ifdef
  40. -elib(123)  // FD_SET is both a typedef and a macro.
  41. -emacro(507,FP_OFF)  // inhibit loss of information message.
  42. --emacro(507,offsetof) // inhibit loss of info message in macro
  43. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  44. -emacro(545,offsetof)  // addressing an array member is OK
  45. -emacro(792,assert)    // inhibit void cast of void message
  46. -emacro((???),va_arg)  // the va_arg() macro can yield 415, 416, 661, 662
  47.        // 796 and 797 (out-of-bounds errors).
  48. +rw(_export,_import)    // needed especially for Windows programming
  49. -sld10          // sizeof(long double) is 10.
  50. -etd(origin) // this will inhibit complaints about 'origin' type differences
  51.             // this occurs when both bios.h and dos.h contribute the
  52. -e793       // inhibit 'ANSI limit reached' --
  53.             // limits are impractically low with Borland headers
  54.             // identical struct's to a program.
  55. -function(exit,_exit)   // _exit() is like exit()
  56. -function(exit,__assertfail)  // __assertfail() is like exit()
  57. -emacro(570,disable,_disable,enable,_enable)  // allow (char) 0xFA
  58. -emacro(734,putc)   // don't complain about items being too large.
  59. -emacro(732,putc)      // inhibit loss of sign
  60. -d_asm=asm          // Borland accepts both "_asm" and "asm"
  61. -d__asm=asm         // and __asm
  62. // Borland's added keywords
  63. +rw(__interrupt,__near,__far,__huge,__fortran,__pascal,__cdecl)
  64. +rw(__import,__export,__loadds,__saveregs,__asm,__fastcall,__stdcall)
  65. +rw(_stdcall)
  66. //  The following functions exhibit variable return modes.
  67. //  That is, they may equally-usefully be called for a value
  68. //  as called just for their effects.  Accordingly we inhibit
  69. //  Warning 534 for these functions.
  70. //  Feel free to add to or subtract from this list.
  71. -esym(534,*printf,*putc,*scanf)  // often called without checking return
  72. -esym(534,close,creat,fclose,fflush)
  73. -esym(534,fputs,fseek,fwrite,lseek,memcpy,memmove,memset)
  74. -esym(534,puts,strcat,strcpy)
  75. -esym(534,strncat,strncpy,unlink,write)
  76. -esym(534,__assertfail)
  77. //  These are the wide char variants of printf-scanf family
  78. -wprintf( 1, wprintf )
  79. -wprintf( 2, fwprintf, swprintf )
  80. -wscanf( 1, wscanf )
  81. -wscanf( 2, fwscanf, swscanf )
  82. // The following options are required by most compilers to
  83. // noiselessly process iostream.h
  84. -elib(1053) //prototypes cannot be distinguished
  85. -esym(1702,operator<<,operator>>)  // both member and ordinary function
  86. // These functions return things that are frequently ignored.
  87. -esym(534,*operator<<,*operator>>)
  88. +fwc            // wide char type (wchar_t) is built-in
  89. -d_WCHAR_T      // this inhibits stdlib.h from typedef'ing wchar_t.
  90. -d_WCHAR_T_DEFINED  // and also this is needed as well
  91. //  Please note:
  92. //  The flag +fwc says that wchar_t is builtin for both C and C++ code.
  93. //  For Borland C++ this is true.  For Borland C this is untrue.  The
  94. //  option -d_WCHAR_T prevents stdlib.h from attempting to define it
  95. //  while linting C code.  If this is the only thing you're using
  96. //  out of stdlib.h you may get a message saying stdlib.h isn't being
  97. //  used when it is.  Uncomment the following option in that case.
  98. //  -efile(766,stdlib.h)
  99. // The following additional options seem to be needed.
  100. +fna            // allow operator new[]
  101. -elib(1065)     // same name declared as "C" and not "C"
  102. -elib(1066)     // same name declared as "C" and not "C"
  103. -efile(766,mem.h)  //included by iostream.h but not really used
  104. +rw(__rtti)             // run-time type identification
  105. -d__seg=_seg            // this will be needed until we recognize __seg
  106. -d__BORLANDC__=0x540    // predefined macro
  107. -d__TURBOC__=0x540      // predefined macro
  108. -elib(43)               // vacuous type for variable
  109. -elib(46)               // allow not int as base of bit field
  110. -esym(18,lock,unlock)   // "C" functions being overloaded?
  111. -esym(18,LPWSTR,LPCWSTR)// Both of these types are redeclared (typedef)
  112. -elib(1007)             // virtual definition within extern "C"
  113. -esym(1058,TDate)       // Borlands code trys to modify a non-const ref
  114. -e1023  // C++ Builder adopts the policy of first come first served
  115.         // so that if two function templates could both handle a
  116.         // situation the first should be taken.  Hence don't issue
  117.         // the ambiguity message
  118. -e1703  // Don't elaborate on this message either
  119. -template(1)    // aggressively process base classes
  120. +ftr            // truncate header file names to 8x3 if necessary
  121. // We now support __declspec directly, unfortunately only the
  122. // Microsoft version and not the extended Borland version of
  123. // multiple specifications separated by commas.  That will be
  124. // out soon.
  125. +rw(_to_brackets)           // ignore "_to_brackets" parenthetical_expression
  126. -d__declspec=_to_brackets   // ignore __declspec expressions
  127. -d_declspec=__declspec      // the single '_' version is occasionally used
  128. -dRPC_ENTRY=                // missing #define in rpc.h
  129. -elib(64)                   // assigning int to enum
  130. -elib(1055,1058)            // can't find System::empty()
  131. -elibsym(1734)              // had trouble defining std::getline()
  132. +rw(__closure)              // enable this reserved word (will be ignored)
  133. -d__published=public        // pretend attribute '__published' is 'public'
  134. //  Add elements of ole automation
  135. lib-ole.lnt