I downloaded the newest Valgrind and extracted it.
I run
./configure --prefix=/usr/local/valgrind
make
which gives me
make: *** No targets specified and no makefile found. Stop.
I run
make install
It gives me
make: Nothing to be done for `install'.
How can you install Valgrind to the newest OS X?
Version 3.4.1 is incompatible with Mac OS X as far as I know. As it wasn't until more recently (May 2009 - 3.4.1 was released in February 2009) that valgrind was given "compatibility." The Mac OS X port is as quoted from the Mac OS X page:
You'll need to get the latest from svn as documented on valgrind.org:
You will need
autoconf
andautomake
as well that can be most easily installed using MacPortsFor debugging the "configure, make, make install" dance:
Did you see what error in the
configure
phase came up? You can'tmake
(and subsequently install usingmake install
) unless the configuration works correctly.The instructions say you need to do
./autogen.sh
beforemake
.