日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人文社科 > 生活经验 >内容正文

生活经验

Ubuntu中C代码静态检查工具Splint的安装配置和使用

發布時間:2023/11/27 生活经验 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Ubuntu中C代码静态检查工具Splint的安装配置和使用 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、? http://www.splint.org/download.html下載splint-3.1.2.src.tgz,存放到/home/spring/Splint文件夾下;

2、? 打開終端;

3、? 解壓縮:tar zxvfsplint-3.1.2.src.tgz

4、? 安裝到/usr/local/splint目錄下:

?????? ?sudo mkdir /usr/local/splint

?????? cd splint-3.1.2

?????? ./configure --prefix=/usr/local/splint

?????? sudo apt-getinstall flex

?????? make

?????? sudo make install

5、? 配置,打開當前的bash資源文件

????? vi ~/.bashrc

????? 在文件最后加入:

????? exportLARCH_PATH=/usr/local/splint/share/splint/lib

????? exportLCLIMPORTDIR=/usr/local/splint/share/splint/imports

????? exportPATH=/usr/local/splint/bin:$PATH

????? 退出文件

????? source~/.bashrc?

?

測試:test.c

void fun()

{

??? int*p = NULL;

}

在終端輸入 splint test.c

Splint 3.1.2 --- 25 Jan 2013

?

test.c: (in function fun)

test.c:3:7: Variable p declared but notused

? Avariable is declared but never used. Use /*@unused@*/ in front of

?declaration to suppress message. (Use -varuse to inhibit warning)

?

Finished checking --- 1 code warning

?

?

參考文獻:

1、? http://www.splint.org/

2、? http://blog.csdn.net/sunjiajiang/article/details/7368684

?

總結

以上是生活随笔為你收集整理的Ubuntu中C代码静态检查工具Splint的安装配置和使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

歡迎分享!

轉載請說明來源于"生活随笔",并保留原作者的名字。

本文地址:Ubuntu中C代码静态检查工具Splint的安装配置和使用