Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将自定义文件扩展名传递给Cppcheck?例如,*.pc。
*.pc
当然。cppcheck 将检查您提供的任何文件。
检查文件 xyz.pc:
cppcheck xyz.pc
检查文件夹 srcfolder 中所有扩展名为 pc 的文件(这至少在 linux 中有效):
cppcheck srcfolder/*.pc
--file-list 标志也可能有用。您可以使用任意脚本生成要检查的文件列表。然后在该文件列表上运行 cppcheck。
cppcheck --file-list=files.txt