tools to analyze the code at compile time

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • junky_fellow@yahoo.co.in

    tools to analyze the code at compile time

    guys,

    Are you aware of any good tool that analyze the source code
    statically (ie at compile time and not at run time) ? This tool
    should be able to find out very obvious coding errors like memory
    leaks, derefencing a NULL pointer, memory corruption etc. Has anyone
    used such a tool ? Are these tools really useful in code analysis ?

    thanks for any suggestions ........
  • santosh

    #2
    Re: tools to analyze the code at compile time

    junky_fellow@ya hoo.co.in wrote:
    guys,
    >
    Are you aware of any good tool that analyze the source code
    statically (ie at compile time and not at run time) ? This tool
    should be able to find out very obvious coding errors like memory
    leaks, derefencing a NULL pointer, memory corruption etc. Has anyone
    used such a tool ? Are these tools really useful in code analysis ?
    >
    thanks for any suggestions ........
    Various lint programs (eg: splint, PCLint), Purify, Valgrind etc.

    Comment

    Working...