我正在尝试使用cppcheck来分析我的 c++ 项目。我的命令如下所示:
me@home:trunk/software/cpp/tnoid$ cppcheck -v --enable=all --xml -I ../../../package/build/common/cpp/ -I ../../../package/build/software/cpp/tnoid/ .
您可以看到我在哪里包含 (-I) 两个附加目录。在结果中,它似乎被截断了,而不是返回那些(不幸的是长)相对路径,例如:
<error file="/../package/build/common/cpp/libutil/DeleteNullifier.h" line="34" id="postIncrementDecrement" severity="possible style" msg="Pre-Incrementing variable 'iter' is preferred to Post-Incrementing"/>
也许我错误地使用了 cppcheck?为什么错误中的文件路径出现缩短?cxx 声纳插件真的很乱。
编辑:这是使用 cppcheck 1.40 版