|
From: <sv...@va...> - 2005-03-12 23:57:44
|
Author: sewardj Date: 2005-03-12 23:57:39 +0000 (Sat, 12 Mar 2005) New Revision: 73 Modified: trunk/devel/cvs_svn.html Log: Fix the anonymous checkout insns. Modified: trunk/devel/cvs_svn.html =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/devel/cvs_svn.html 2005-03-12 23:05:44 UTC (rev 72) +++ trunk/devel/cvs_svn.html 2005-03-12 23:57:39 UTC (rev 73) @@ -42,11 +42,18 @@ <a href=3D"http://svn.valgrind.org/">http://svn.valgrind.org/</a>.</p> =20 <p>To check out code on the 3.0 line (anonymous, read-only SVN=20 -access):<br /> -<code> svn co http://svn.valgrind.org/</code><br /> -To build the result, follow the instructions -in the <code>README</code> file that the checkout should give -you.</p> +access), proceed as follows. Note that=20 +the 3.0 line has been split into two pieces: Vex, a library that +provides dynamic translation services, and Valgrind proper. You=20 +need both pieces. Do this:<br /> +<code> svn co svn://svn.valgrind.org/vex/trunk</code><br /> +<code> svn co svn://svn.valgrind.org/valgrind/trunk</code><b= r /> +<code> cd vex/trunk && make clean version all</code><br /> +<code> cd valgrind/trunk</code><br /> +<code> ./autogen.sh</code><br /> +<code> ./configure --prefix=3D... --with-vex=3D/path/to/vex/= trunk</code><br /> +<code> make install</code><br /> +</p> =20 <p><b>Note:</b> as of mid March 2005, the 3.0 line has seen massive upheaval and so is majorly broken in various ways. We expect |