https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119324
--- Comment #3 from David Binderman <dcb314 at hotmail dot com> --- (In reply to Robert Dubner from comment #2) > David, I am not familiar with cppcheck. I have installed it, but when I try > to run it I don't see what you are describing here. > > Can you tell me how to configure and run cppcheck to duplicate these results? Have you tried cppcheck over a simple helloWorld.c C source code file to make sure it is installed ok ? If that works, then you have a good install. I use flags --enable=all --force when I run cppcheck. My usual command line is: $ (date;cat file.list | xargs -n 1000 ~/cppcheck/trunk/cppcheck --enable=all --force --language=c++ -j 8;date) > cppcheckOutput/cppcheck.95.out 2>&1 & HTH. If any problems, please let me know.