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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-tc.lnt
  2. //    Compiler Options for Turbo C, Turbo C++ and Borland C++
  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-tc.lnt  source-file(s)
  8. //
  9.             // while processing compiler (library) header files ...
  10. -wlib(1)    // sets the warning level within library headers to 1
  11.     // (no warnings, just syntax errors).  Comment out if you
  12.     // are actually linting library headers.  This
  13.     // option makes obsolete options of the form -elib(axxx) where
  14.     // xxx >= 400 which may be retained for historical reasons.
  15. -elib(652)  // suppress message about #define of earlier declared symbols
  16. -elib(762)  // suppress message about multiple identical declarations and
  17. -elib(760)  // suppress message about multiple identical macro defs
  18. -elib(726)  // inhibits error involving extraneous comma in enumerations
  19.             // within library header graphics.h
  20. -elib(553)  // use of undefined preprocessor variables like #if __STDC__
  21.             // within string.h
  22. -elib(123)  // stdarg.h defines __size() and stdio.h uses __size parameter
  23. -elib(579)  // Borland C++ compensates for sub int params in stdarg.h
  24.             // this is still a dangerous nonportable practice for user programs
  25. -elib(743)  // 'x80' is used in limits.h
  26. -emacro(507,FP_OFF)  // inhibit loss of information message.
  27. --emacro(507,offsetof)  // inhibit loss of info message in macro
  28. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  29. -emacro(792,assert)  // inhibit void cast of void message
  30. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  31. // 796 and 797 (out-of-bounds errors).
  32. +rw(_export,_import)    // needed especially for Windows programming
  33. -sld10          // sizeof(long double) is 10.
  34. -elib(770)  // WORDREGS, BYTEREGS, REGS, SREGS  defined in both
  35.             // bios.h and dos.h
  36. -etd(origin) // this will inhibit complaints about 'origin' type differences
  37.             // this occurs when both bios.h and dos.h contribute the
  38.             // identical struct's to a program.
  39. -e793       // inhibit 'ANSI limit reached' --
  40.             // limits are impractically low with Borland headers
  41. -function(exit,_exit)   // _exit() is like exit()
  42. -function(exit,__assertfail)  // so is __assertfail()
  43. -emacro(570,disable,_disable,enable,_enable)  // allow (char) 0xFA
  44. -emacro(734,putc)   // don't complain about items being too large.
  45. -d_asm=asm          // Borland accepts both "_asm" and "asm"
  46. -d__asm=asm         // and __asm
  47.         // We now support __declspec directly so that the following
  48.         // option is now commented out.  If trouble ensues you can
  49.         // once again disable __declspec through this option.
  50.         // -d__declspec()= // ignore this construct
  51. -d_declspec=__declspec  // the single '_' version is occasionally used
  52. //  The following functions exhibit variable return modes.
  53. //  That is, they may equally-usefully be called for a value
  54. //  as called just for their effects.  Accordingly we inhibit
  55. //  Warning 534 for these functions.
  56. //  Feel free to add to or subtract from this list.
  57. -esym(534,close,creat,fclose,fflush,fprintf,fputc)
  58. -esym(534,_fputc,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  59. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  60. -esym(534,strncat,strncpy,unlink,write)
  61. -esym(534,__assertfail)
  62. // The following options are required by most compilers to
  63. // noiselessly process iostream.h
  64. -elib(1717) //empty prototypes
  65. -elib(522) //function return value ignored
  66. -elib(1053) //prototypes cannot be distinguished
  67. -elib(1721) //unusual operator =() declaration
  68. -elib(1720) //assignment op has non-const parameter
  69. -elib(655)  // bitwise operator combining compatible enum's
  70. -elib(641)  // converting enum's to int
  71. -elib(537)  // repeated include file (ios.h)
  72. -elib(1511) // member (rdbuf) hides nonvirtual member
  73. -elib(1712) // default constructor not defined for class
  74. -elib(1736) // redundant access specifier
  75. -esym(1702,operator<<,operator>>)  // both a member and an ordinary function
  76. // These functions return things that are frequently ignored.
  77. -esym(534,ostream::operator<<,istream::operator>>)
  78. // The following additional options seem to be needed.
  79. -fdc       // do not Distinguish plain Char as a unique type.
  80.    // i.e. char is either signed char or unsigned char
  81. -elib(783)      // line in config.h does not end in new-line
  82. -elib(522)      // doesn't use the return value of underflow();
  83. -elib(1066)  // same name declared as "C" and not "C"
  84. -elib(1724) //argument to copy construct should be const ref
  85. -elib(1722) //assignment operator does not return ref
  86. -efile(766,mem.h)  //included by iostream.h but not really used
  87. -elib(1704)   // constructor with private access declaration
  88. -elib(1708,1709)   // minor C/C++ declaration conflict
  89. -elib(1735)   // default parameter within virtual function
  90. // Using Borland classlib, OWL or TurboVision?  Then activate any
  91. // or all of the following by removing the comment:
  92. //  lib-bcl.lnt      // Borland Class Library
  93. //  lib-owl.lnt      // Borland Object Windows Library
  94. //  lib-tv.lnt       // Borland Turbo-Vision library