|
From: Stewart, H. <hu...@ug...> - 2005-12-03 13:57:15
|
I downloaded and set about installing valgrind (3.1.0) and blindy went ./configure make make install At this point it died because I didn't have write access to /usr/local so I tried ./configure --prefix=3D<somewhere> make make install but valgrind failed because VG_LIBDIR was still defined to /usr/local. make clean make make install worked. P.S. the FAQ told me to give you the output of valgrind -v so since you insist, here it is :-) valgrind: no program specified valgrind: Use --help for more information. PPS, now I'm actually getting into it... I'm suppressing my way through some external library (the documentation doesn't say you can suppress by library with obj:). It would be nice if the print suppressions would automatically apply the suppression it has just printed so I don't have to decide whether this strange traceback is a duplicate or just a minor variation of=20 one I've already copied into my suppressions file |
|
From: Olly B. <ol...@su...> - 2005-12-04 02:50:47
|
On 2005-12-03, Stewart, Hugh <hu...@ug...> wrote: > At this point it died because I didn't have write access to /usr/local > so I tried > > ./configure --prefix=<somewhere> > make > make install This is a standard autoconf thing. You need to start from a clean source tree (which you can get with "make distclean") before you can safely rerun configure with different options: http://sources.redhat.com/ml/autoconf/1999-09/msg00154.html Cheers, Olly |