pc-lint

source Insight 结合PC-lint的方法

筅森魡賤 提交于 2019-12-01 15:09:53
env-si.lnt: The environment file to run PC-lint from within the Source Insight Editor. To set up Source Insight to run PC-lint from a custom command do the following: 1) Select custom commands from the options menu. a) Enter "PC-lint unit check" as the Name of the new command. b) Enter in the run edit box the following: c:/lint/lint -u -ic:/lint std env-si %f Where c:/lint is your lint directory. c) Check the following check boxes/radio buttons Iconic Window Capture Output Save Files First Parse Links in Output File, then Line d) Enter the following expression in the Pattern edit box ^/([^ ]*/

VS2010+Source Insight +PC-Lint开发环境搭建

天涯浪子 提交于 2019-12-01 15:08:00
*参加签约公司的培训之前,公司的学习资料要求,搭建VC+Source Insight+PC-Lint的开发环境,具体流程是Source Insight 编程,VC调试,PC-Lint检查代码,要求是PC-Lint代码告警信息必须为0. VC以前经常用,Source Insight和PC-Lint以前很少接触,下面简单介绍一下开发环境搭建过程及遇到的问题。 一、安装VS2010和source insight,这一步直接安装就可以。 二、安装PC-Lint。安装完之后会弹出一个配置向导,大可跳过配置步骤,直接利用配置文件进行配置。 三、配置PC-Lint的配置文件,PC-Lint支持多种C/C++标准以及多种IDE开发环境,根据自己的开发环境来配置是很重要的一步。PC-Lint最原始的工作方式是在cmd命令框输入命令和参数,其形式通常为: c:\lint\lint-nu.exe -u -i c:\lint***.lnt. 其中c:\lint\为PC-Lint的安装目录, * .lnt为配置文件,通常为std.lnt。 当我们安装好PC-Lint之后,会在相应文件夹下面发现很多.lnt文件,这些文件都是PC-Lint开发方提供给我们各个平台的配置文件。 例如 env-vc9.lnt就是适合VS2010的配置文件了;env-si.lnt就是适合source insight的配置文件了