Valgrind in eclipse

0

I've been looking for a long time and I can not find anything like that. I need to use Valgrind in eclipse (eclipse has support), I already realized all the packages installations that I found on the net but I was not able to run it at all. To run I go in "PROFILING TOOLS -> PROFILE WITH VALGRIND" the project is compiled because it does not run along with the valgrind. It follows the screen that appears after the procedure, which in case it would be to be running the project with valgrind.

Herearethevalgrindsettings:

Would anyone know where the error was? or what configuration is missing?

    
asked by anonymous 10.08.2017 / 15:39

1 answer

1

I already got the solution, the problem came from a missing package. The project runs in 32 bits and the valgrind was selected to run in 64 bits. Just install the following package:

sudo apt-get install libc6-dbg:i386

    
10.08.2017 / 16:25