|
From: <sv...@va...> - 2007-02-19 04:09:27
|
Author: njn Date: 2007-02-19 04:09:24 +0000 (Mon, 19 Feb 2007) New Revision: 6603 Log: Add a script to make running in-place simpler. Added: trunk/vg-in-place Modified: trunk/README_DEVELOPERS Modified: trunk/README_DEVELOPERS =================================================================== --- trunk/README_DEVELOPERS 2007-02-16 21:57:27 UTC (rev 6602) +++ trunk/README_DEVELOPERS 2007-02-19 04:09:24 UTC (rev 6603) @@ -10,6 +10,8 @@ This allows you to compile and run with "make" instead of "make install", saving you time. +Or, you can use the 'vg-in-place' script which does that for you. + I recommend compiling with "make --quiet" to further reduce the amount of output spewed out during compilation, letting you actually see any errors, warnings, etc. Added: trunk/vg-in-place =================================================================== --- trunk/vg-in-place (rev 0) +++ trunk/vg-in-place 2007-02-19 04:09:24 UTC (rev 6603) @@ -0,0 +1,7 @@ +# This ensures it works when invoked from any directory. +d=`dirname $0` + +VALGRIND_LIB=$d/.in_place \ + VALGRIND_LIB_INNER=$d/.in_place \ + $d/coregrind/valgrind "$@" + Property changes on: trunk/vg-in-place ___________________________________________________________________ Name: svn:executable + * |