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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-bcwin.lnt
  2. //    Compiler Options for Borland C, C++ 3.10 and earlier for Windows
  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-bcwin.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(87)   // windef.h contains a botched #ifdef
  16. -elib(652)  // suppress message about #define of earlier declared symbols
  17. -elib(762)  // suppress message about multiple identical declarations and
  18. -elib(760)  // suppress message about multiple identical macro defs
  19. -elib(726)  // inhibits error involving extraneous comma in enumerations
  20.             // within library header graphics.h
  21. -elib(553)  // use of undefined preprocessor variables like #if __STDC__
  22.             // within string.h
  23. -elib(123)  // stdarg.h defines __size() and stdio.h uses __size parameter
  24. -elib(579)  // Borland C++ compensates for sub int params in stdarg.h
  25.             // this is still a dangerous nonportable practice for user programs
  26. -elib(743)  // 'x80' is used in limits.h
  27. -emacro(507,FP_OFF)  // inhibit loss of information message.
  28. --emacro(507,offsetof)  // inhibit loss of info message in macro
  29. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  30. -emacro(792,assert)  // inhibit void cast of void message
  31. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  32. // 796 and 797 (out-of-bounds errors).
  33. +rw(_export)    // needed especially for Windows programming
  34. -sld10          // sizeof(long double) is 10.
  35. -elib(770)  // WORDREGS, BYTEREGS, REGS, SREGS  defined in both
  36.             // bios.h and dos.h
  37. -etd(origin) // this will inhibit complaints about 'origin' type differences
  38.             // this occurs when both bios.h and dos.h contribute the
  39.             // identical struct's to a program.
  40. -e793       // inhibit 'ANSI limit reached' --
  41.             // limits are impractically low with Borland headers
  42. // Windows-specific options:
  43.     // +e934   report passing near auto pointers to other functions
  44.     // (enable 934 when you're writing DLL's)
  45.     // See Petzold, Windows 3.0, pp 897-902
  46. -printf(w2,wsprintf)   // complains if pointers to wsprintf are not far.
  47. -esym(14,pLocalHeap)   // variable defined in windows.h
  48. -e740   // remove 'suspicious cast' messages because these must be
  49.         // routinely done within Windows.
  50. -elib(46) // windows.h uses a BYTE as base of bit field.
  51. -function(exit,_exit)   // _exit() is like exit()
  52. -function(exit,__assertfail)  // __assertfail() is like exit()
  53. -emacro(570,disable,_disable,enable,_enable)  // allow (char) 0xFA
  54. -emacro(734,putc)   // don't complain about items being too large.
  55. -d_asm=asm          // Borland accepts both "_asm" and "asm"
  56. //  The following functions exhibit variable return modes.
  57. //  That is, they may equally-usefully be called for a value
  58. //  as called just for their effects.  Accordingly we inhibit
  59. //  Warning 534 for these functions.
  60. //  Feel free to add to or subtract from this list.
  61. -esym(534,close,creat,fclose,fflush,fprintf,fputc)
  62. -esym(534,_fputc,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  63. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  64. -esym(534,strncat,strncpy,unlink,write)
  65. -esym(534,__assertfail)