在Linux中gcc -Wall得到比較詳細的編譯告警信息,如下:
arm.c: In function `DispSerialMemBuf':
arm.c:93: warning: unused variable `i'
arm.c:94: warning: unused variable `ulCount'
將編譯結果保存到 f:\code\list01.txt 中
在windows中使用source insight,如何將輸出結果鏈接到文件+行呢?
在source insight中custom commands一個,如下圖
相關的參數如下:
命令行:
Run:cmd /c type list01.txt
存放list01.txt的目錄
Dir:F:\code
特別注意Pattern:^\([a-zA-Z].*\):\([0-9][0-9]*\).*
其中文件名是:\([a-zA-Z].*\)
行號是:\([0-9][0-9]*\)
運行結果如下:
Ok,搞定