|
From: Guilhem B. <gu...@my...> - 2005-06-11 21:10:41
|
Hello, http://valgrind.org/devel/cvs_svn.html reads: To check out code on the 3.0 line (anonymous, read-only SVN access), proceed as follows. Note that the 3.0 line has been split into two pieces: Vex, a library that provides dynamic translation services, and Valgrind proper. You need both pieces. Do this: svn co svn://svn.valgrind.org/vex/trunk vex svn co svn://svn.valgrind.org/valgrind/trunk valgrind cd vex && make clean version all cd valgrind ./autogen.sh ./configure --prefix=... --with-vex=/path/to/vex make install But after cd vex && make clean version all finishes, we are left in vex/, so "cd valgrind" will not work. I suggest cd ../valgrind or (cd vex && make clean version all) |
|
From: Nicholas N. <nj...@cs...> - 2005-06-11 23:53:56
|
On Sat, 11 Jun 2005, Guilhem Bichot wrote: > But after > cd vex && make clean version all > finishes, we are left in vex/, so "cd valgrind" will not work. > I suggest > cd ../valgrind Done, thanks. N |