]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Minor update.
authorBart Van Assche <bvanassche@acm.org>
Sat, 29 Mar 2008 08:32:30 +0000 (08:32 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sat, 29 Mar 2008 08:32:30 +0000 (08:32 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7796

exp-drd/Testing.txt

index 582f3b738f11927eb70d32ecec78b55e5e31accd..27a0c7b7b2b46ae54629618e1793c2d0d9b8a450 100644 (file)
@@ -17,8 +17,7 @@ How to test DRD
      ./vg-in-place --tool=exp-drd kate
      ./vg-in-place --trace-children=yes --tool=exp-drd knode
 4. Test DRD with Firefox. First of all, build and install Firefox 3. Next,
-   run one of the following commands:
-     LD_LIBRARY_PATH=$HOME/firefox3/lib/firefox-3.0b4: ./vg-in-place --trace-children=yes --tool=exp-drd $HOME/firefox3/lib/firefox-3.0b4/firefox-bin
+   run the following command:
      LD_LIBRARY_PATH=$HOME/software/mozilla-build/dist/lib: ./vg-in-place --trace-children=yes --tool=exp-drd $HOME/software/mozilla-build/dist/bin/firefox-bin
 
 
@@ -56,12 +55,11 @@ ac_add_options --disable-tests
 ac_add_options --enable-debug
 ac_add_options --enable-static
 ac_add_options --prefix $PREFIX
+ac_add_options --enable-optimize="-O1 -g -pipe"
 EOF
 
-export CFLAGS=-pipe
-
 ${SRC}/configure
 
-make -s         || exit $?
-make -s install || exit $?
+make -s -j2     || exit $?
+make -s install || exit $?
 ------------------------------------------------------------