C ++ source code analyzer

Could you suggest some open source tools that analyze C ++ code and verify the following rules:

  • naming conventions
  • file inclusion
  • function design,
  • data types,
  • flow control
  • memory allocation
  • file processing
  • portable code
  • runs on Solaris or SUSE
+3
source share
3 answers

http://www.google.com/search?q=misra+checker

Of course, if the rules you are trying to apply do not exactly match the idea of ​​a coding standard, no existing tool will work.

+1
source

( ++), . , CLAN Static Analyzer , .

+1

I used the cover (http://coverity.com/)in my organization. He does a static error checking analysis, and I found it very useful. It is highly customizable and provides a number of checks. I'm not quite sure if he works on a tanning bed or not, but I would recommend checking it out.

0
source

Source: https://habr.com/ru/post/1795673/


All Articles