代码静态分析工具PC-LINT安装配置

代码静态分析工具PC-LINT安装配置



  其中-i后面的路径名为VC的安装路径和VC Include 文件路径,根据自己的修改便可。

  options.lnt 内容可为空,为定制内容,以后需要时再添加。

  准备工作做完了,下一步就是要将pclint集成到VC6中去,先配置lint使之能对单个C或C++文件进行检查。

  1.打开VC6,tools--->customize-->tools 新建一个名为pclint的项,在下面填入

  command: C:\pclint\lint-nt.exe

  arguments: -u c:\pclint\std.lnt c:\pclint\env-vc6.lnt"$(FilePath)"

  Use Output Window 打上勾

  close 完成。 这个在你VC窗口tools菜单下应该多了一个pclint选项,可以用它来运行lint程序,对你的c/c++代码进行静态检查了。

  现在就可以用个小程序测试一下pclint了


//test1.cpp

#include
class X
{
 int *p;
 public:
  X()
  { p = new int[20]; }
  void init()
  { memset( p, 20, 'a' ); }
  ~X()
  { delete p; }
};
  编译这个文件,看下你的编译器给你多少警告,再运行下lint, 可以自己对比一下。

  我的机器上,VC产生0 errors 0warnings, 而lint程序产生了如下8条警告信息,有些还是很有用处的提示,这里就不一一分析了.

test.cpp(12): error 783: (Info -- Line does not end with new-line)
test.cpp(7): error 1732: (Info -- new in constrUCtor for class 'X' which has noassignment operator)
test.cpp(7): error 1733: (Info -- new in constructor for class 'X' which has nocopy constructor)
 { memset( p, 20, 'a' ); }
test.cpp(9): error 669: (Warning -- Possible data overrun for function'memset(void *, int, unsigned int)', argument 3 (size=97) exceeds argument 1(size=80) [Reference: test.cpp: lines 7, 9])

test.cpp(7): error 831: (Info -- Referencecited in prior message)
test.cpp(9): error 831: (Info -- Reference cited in prior message)
{ delete p; }

test.cpp(11): error 424: (Warning -- Inappropriate deallocation (delete) for'new[]' data)
--- Wrap-up for Module: test.cpp

test.cpp(2): error 753: (Info -- local class 'X' (line 2, file test.cpp) notreferenced)

  Toolreturned code: 8
  2.通常一个VC项目中包含多个C或C++文件,有时需要同时对这一系列的文件进行lint检查,我们可以通过配置一个pclint_project来达到目的。

   和前面第一步中的方法基本一样,不过这里我们需要用到unix中的find等命令来查找当前目录下的C和C++文件,然后再将它们送给lint程序处 理,所以得先从http://www.weihenstephan.de/~syring/win32/UnxUtils.zip下载 UnxUtils.zip.

  接着按下列步骤进行:

  (i)解压UnxUtils.zip至c:\unix下, 可以看到C:\unix\usr\local\wbin有很多unix下的命令,等下会用到

  (ii)打开VC6,tools--->customize-->tools 新建一个名为pclint_project的项,只不过下面的commands和arguments内容不同。

  commands:C:\unix\usr\local\wbin\find.exe

   arguments: $(FileDir) -name *.c -o -name *.cppC:\unix\usr\local\wbin\xargs lint-nt -i"c:\unix\usr\local" -uc:\pclint\std.lnt c:\pclint\env-vc6.lnt

  (iii)UseOutput Window打上勾,close退出。好了,这时VC tools菜单下应该又多了一个pclint_project项了,你以后可以用它来对一个VC项目运行lint检查程序了.

二)SourceInsight中集成pclint程序的方法.

  Windows平台下也有好多人都喜欢用SourceInsight 编辑C/C++程序,如果将pclint集成到SourceInsight中,那就相当于给SourceInsight增加了一个C/C++编译器,而且它的检查更严格,能发现一些编译器发现不了的问题,可以大大减少程序中潜伏的BUG。这样的话,相信更多人会喜欢SourceInsight这个工具了。

  下面简要地介绍下pclint集成到SourceInsight中的方法

  有了上面VC中集成pclint的经验, 下面的事情就应该比较轻松了,

  (a)打开你的SourceInsight, 选择Options-->CustomCommands-->Add, 输入pclint(当然名字可以随便).

  (b) Run中输入: c:\pclint\lint-nt -uc:\pclint\std.lnt c:\pclint\env-vc6.lnt %f

  (c)Dir留空,将Iconic Window, Capture Output,Parse Links in OutPut, File,then Line 四项前打上勾。

  (d)然后点右侧Menu--->Menu-->View-->, 右侧Insert, OK.

  (e)此时在SourceInsight中的View菜单下多了个pclint选项,可以用它来对单个C/C++文件进行静态检查。

  用类似的方法可以配置对一个SourceInsight工程文件的lint检查。

  (a)打开你的SourceInsight, 选择Options-->Custom Commands-->Add,输入pclint_project(当然名字可以随便).

  (b) Run中输入: C:\unix\usr\local\wbin\find.exe%d -name *.c -o -name *.cpp C:\unix\usr\local\wbin\xargs lint-nt

  -i"C:\unix\usr\local"-u c:\pclint\std.lnt c:\pclint\env-vc6.lnt

  (c)Dir留空,将Iconic Window, Capture Output,Parse Links in OutPut, File,then Line 四项前打上勾。

  (d)然后点右侧Menu--->Menu-->View-->, 右侧Insert, OK.

  (e)此时在SourceInsight中的View菜单下多了个pclint_project选项,可以用它来一个工程中的C/C++文件进行静态检查。

  本文主要对pclint集成到VC及SourceInsight环境中的方法根据本人安装和使用心得做了较详细介绍,希望对以前没使用过pclint的朋友们能有所帮助,不足之处还请多指正!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值