1

enter image description here

I have basically tried every tutorial out there and still cant run valgrind.

So far....

I installed valgrind from their website to directory 'memcheck'

tar xvf valgrind-3.18.1.tar.bz2

the picture is the outcome of "./configure" ,I cant tell if it was successful or not.

then the command "make" gives: make: *** No targets specified and no makefile found. Stop. and the same for "make install"

this is what i tried to do. How to install valgrind properly?

ilghar
  • 25
  • 7

1 Answers1

0

If the output from configure contains "configure: error:" then it failed.

Installing with your package manager will be easiest.

Otherwise, you will need

A C compiler (e.g., gcc or clang), always. GNU make, always. Perl, probably always. Sed and awk, always.

Autotools, m4, if regenerating the configure script.

Lots of packages if you want to generate the docs.

A C++ compiler (g++ or clang++) if you want to build and run the regression tests.

Paul Floyd
  • 5,530
  • 5
  • 29
  • 43