getting the error while just running the below command on only count of 170 files which are less even in size.
Command: cppcheck.exe --addon="misra.json" --enable=all --enable=style --xml --suppressions-list="CreatedSuppressionList.txt" --enable=all --suppress=missingIncludeSystem . --file-list="Files.txt" 2>"Cppcheck.xml"
last line of cppcehck.xml:
<error id="missingInclude" severity="information" msg="Cppcheck cannot find all the include files (use --check-config for details)" verbose="Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config."></error>
And I feel that all the files which are not following the cppcheck standards ,are not even came as part of report.
Can anyone suggest what could go wrong for getting this error or how to get all the files in xml file.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
getting the error while just running the below command on only count of 170 files which are less even in size.
Command: cppcheck.exe --addon="misra.json" --enable=all --enable=style --xml --suppressions-list="CreatedSuppressionList.txt" --enable=all --suppress=missingIncludeSystem . --file-list="Files.txt" 2>"Cppcheck.xml"
last line of cppcehck.xml:
<error id="missingInclude" severity="information" msg="Cppcheck cannot find all the include files (use --check-config for details)" verbose="Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config."></error>
And I feel that all the files which are not following the cppcheck standards ,are not even came as part of report.
Can anyone suggest what could go wrong for getting this error or how to get all the files in xml file.