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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-arch.lnt
  2. //    Compiler Options for Archimedes C
  3. //    This file contains options to allow PC-lint to process source
  4. //    files for your compiler.  It is used as follows:
  5. //
  6. //    lint  co-arch.lnt  source-file(s)
  7. //
  8.             // while processing compiler (library) header files ...
  9. -wlib(1)    // sets the warning level within library headers to 1
  10.     // (no warnings, just syntax errors).  Comment out if you
  11.     // are actually linting library headers.  This
  12.     // option makes obsolete options of the form -elib(axxx) where
  13.     // xxx >= 400 which may be retained for historical reasons.
  14. -elib(652)  // suppress message about #define of earlier declared symbols
  15. -elib(762)  // suppress message about multiple identical declarations and
  16. -elib(760)  // suppress message about multiple identical macro defs
  17. -elib(783)  // one of the library headers does not end in a newline
  18. -elib(14)   // allow 'redefinitions' within library headers
  19. +rw(_to_brackets)         // activate the _to_brackets keyword
  20.                           // causes reserved word and trailing '[' ']' to be ignored
  21. -dinterrupt=_to_brackets  // defines interrupt to be a _to_brackets
  22. -dusing=_to_brackets      // defines using in the same way.
  23. -d"bit=unsigned char"    // nearest approximation
  24. -d"sbit=unsigned char"    // nearest approximation
  25. -d"sfr=unsigned char"     // nearest approximation
  26. -d"sfr16=unsigned short"  // nearest approximation
  27. -esym(553,__TID__)        // don't be upset if this definition is missing
  28. // Some additional reserved words follow.  These are all ignored:
  29. +rw(code,data,idata,xdata,zpage)
  30. +rw(monitor,no_init,non_banked,plm,reentrant)
  31. +rw(reset_processor)
  32. +rw(input,output,halt)
  33. +rw(interrupt_mode_0,interrupt_mode_1,interrupt_mode_2)
  34. +rw(wait_for_interrupt,_opc,_tbc)
  35. // The following are function-like reserved words.  They are followed
  36. // by '()' which make them resemble function calls.
  37. -denable_interrupt()=
  38. -ddisable_interrupt()=
  39. -emacro(734,putc)   // don't complain about items being too large.
  40. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  41. -emacro(545,offsetof)  // addressing an array member is OK
  42. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  43. // 796 and 797 (out-of-bounds errors).
  44. //  The following functions exhibit variable return modes.
  45. //  That is, they may equally-usefully be called for a value
  46. //  as called just for their effects.  Accordingly we inhibit
  47. //  Warning 534 for these functions.
  48. //  Feel free to add to or subtract from this list.
  49. -esym(534,close,creat,fclose,fprintf,fputc)
  50. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  51. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  52. -esym(534,strncat,strncpy,unlink,write)