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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-ztc.lnt
  2. //    Compiler Options for Zortech C, C++
  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-ztc.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. -d__ZTC__
  19. -elib(553)  // undefined pre-processor variables are regarded as
  20.             // 0 without complaint within library headers
  21. -elib(579)  // allows bdos( char , ... ) within dos.h
  22. -elib(537)  // repeated include files within compiler's headers
  23. +rw(__handle,__ss)   // add reserved words -- no semantics
  24. -esym(528,fg_version_sync)  // symbol within fg.h
  25. -hb^3       // 3-line error format using ^ like Zortech
  26. -format=%(%f(%l)s:s%)%ts%n:s%m  // format like Zortech
  27. -sld10          // sizeof(long double) is 10.
  28. -emacro(734,putc)   // don't complain about items being too large.
  29. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  30. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  31. // 796 and 797 (out-of-bounds errors).
  32. //  The following functions exhibit variable return modes.
  33. //  That is, they may equally-usefully be called for a value
  34. //  as called just for their effects.  Accordingly we inhibit
  35. //  Warning 534 for these functions.
  36. //  Feel free to add to or subtract from this list.
  37. -esym(534,close,creat,fclose,fprintf,fputc)
  38. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  39. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  40. -esym(534,strncat,strncpy,unlink,write)
  41. // The following options are required by most compilers to
  42. // noiselessly process iostream.h
  43. -elib(1717) //empty prototypes
  44. -elib(522) //function return value ignored
  45. -elib(1053) //prototypes cannot be distinguished
  46. -elib(1721) //unusual operator =() declaration
  47. -elib(1720) //assignment op has non-const parameter
  48. -elib(655)  // bitwise operator combining compatible enum's
  49. -elib(641)  // converting enum's to int
  50. -elib(537)  // repeated include file (ios.h)
  51. -elib(1511) // member (rdbuf) hides nonvirtual member
  52. -elib(1712) // default constructor not defined for class
  53. -elib(1736) // redundant access specifier
  54. -esym(1702,operator<<,operator>>)  // both a member and an ordinary function
  55. // These functions return things that are frequently ignored.
  56. -esym(534,ostream::operator<<,istream::operator>>)
  57. //  The following additional options seem to be needed.
  58. -fdc       // do not Distinguish plain Char as a unique type.
  59.    // i.e. char is either signed char or unsigned char
  60. -elib(747) // significant prototype coercion
  61. -elib(740) // unusual pointer casts
  62. -elib(1029) // default argument repeated -- can't dist. char, signed char
  63. -elib(1055) // call to rdbuf() questioned?
  64. -elib(1708,1709) // minor C/C++ declaration conflict
  65. -elib(10,562) // needed because of omitted ',' in decl of form().
  66. -elib(659) // closing '}' of class not followed by a semi-colon
  67. -elib(1510) // base class w/o destructors