如何增加linux中运行cppcheck进程的线程数
Posted
技术标签:
【中文标题】如何增加linux中运行cppcheck进程的线程数【英文标题】:How to increase the thread count of running cppcheck process in linux 【发布时间】:2018-03-08 04:21:23 【问题描述】:我尝试使用以下命令增加运行 cppcheck 进程的线程数
cppcheck -j9 --enable=warning,style,performance,portability,information,missingInclude
但仍然只有一个线程在后台运行。
谁能帮我解决。
【问题讨论】:
【参考方案1】:您好,我是一名 Cppcheck 开发人员。应该可以的。
但是,每个源文件由 1 个线程检查。如果您只检查 1 个源文件,则 -j9 无效。如果检查 2 个文件,则 -j2 和 -j9 都具有使用 2 个线程的效果。
【讨论】:
以上是关于如何增加linux中运行cppcheck进程的线程数的主要内容,如果未能解决你的问题,请参考以下文章