Link to home
Start Free TrialLog in
Avatar of tittu
tittu

asked on

Good Open source C/C++ Static Analysis Code Profiling tools

are there any Open Source C/C++ Static Analysis Profiling tools a
avaliable on Linux Platforms
Avatar of LeeeRussell
LeeeRussell
Flag of United Kingdom of Great Britain and Northern Ireland image

This Wikipedia article lists a set of static analysis tools:

http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis#C

I've used cppcheck before and it does a reasonable job of spotting errors and potential memory leaks.
Avatar of Narendra Kumar S S
valgrind is the best available open source profiling tool.
Avatar of tittu
tittu

ASKER

I meant Static analysis profilers which must instrument on the .o or object files and not on the
exe files.

The requirement is to test and profile the code which may running on different target platforms.

where i may not have the exe file generated or such target enviroment.
ASKER CERTIFIED SOLUTION
Avatar of Narendra Kumar S S
Narendra Kumar S S
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Is this the kind of thing you're after?

http://valgrind.org/

This is a dynamic profiler, but seems closer to what you actually want?