現在のバッファでシェル コマンドを呼び出すだけでなく、より洗練された方法で Cppcheck を Emacs と統合することは可能ですか? Emacs が Cppcheck のメッセージを解析し、Cppcheck のメッセージのターゲットを訪問するためにcompile
使用するなど、コンパイラからのメッセージとして処理できるようにしたいと考えています (動作方法と同様) 。C-x `
Cppcheck の出力例を次に示します。
$ cppcheck --enable=all test.cpp
Checking test.cpp...
[test.cpp:4]: (error) Possible null pointer dereference: p - otherwise it is redundant to check if p is null at line 5
[test.cpp:38]: (style) The scope of the variable 'i' can be reduced
[test.cpp:38]: (style) Variable 'i' is assigned a value that is never used
[test.cpp:23]: (error) Possible null pointer dereference: p
[test.cpp:33]: (error) Possible null pointer dereference: p
Checking usage of global functions..
[test.cpp:36]: (style) The function 'f' is never used
[test.cpp:1]: (style) The function 'f1' is never used
[test.cpp:9]: (style) The function 'f2' is never used
[test.cpp:26]: (style) The function 'f3' is never used