njn | e43d3ae | 2003-05-05 13:04:49 +0000 | [diff] [blame] | 1 | |
njn | e43d3ae | 2003-05-05 13:04:49 +0000 | [diff] [blame] | 2 | Building and not installing it |
| 3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
njn | e43d3ae | 2003-05-05 13:04:49 +0000 | [diff] [blame] | 4 | |
njn | 090dc84 | 2005-03-12 16:47:07 +0000 | [diff] [blame] | 5 | To run Valgrind without having to install it, run coregrind/valgrind |
| 6 | with the VALGRINDLIB environment variable set, where <dir> is the root |
| 7 | of the source tree (and must be an absolute path). Eg: |
| 8 | |
| 9 | VALGRINDLIB=~/grind/head4/.in_place ~/grind/head4/coregrind/valgrind |
njn | e43d3ae | 2003-05-05 13:04:49 +0000 | [diff] [blame] | 10 | |
| 11 | This allows you to compile and run with "make" instead of "make install", |
| 12 | saving you time. |
| 13 | |
| 14 | I recommend compiling with "make --quiet" to further reduce the amount of |
| 15 | output spewed out during compilation, letting you actually see any errors, |
| 16 | warnings, etc. |
| 17 | |
| 18 | |
| 19 | Running the regression tests |
| 20 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 21 | To build and run all the regression tests, run "make [--quiet] regtest". |
| 22 | |
| 23 | To run a subset of the regression tests, execute: |
| 24 | |
| 25 | perl tests/vg_regtest <name> |
| 26 | |
| 27 | where <name> is a directory (all tests within will be run) or a single |
| 28 | .vgtest test file, or the name of a program which has a like-named .vgtest |
| 29 | file. Eg: |
| 30 | |
| 31 | perl tests/vg_regtest memcheck |
| 32 | perl tests/vg_regtest memcheck/tests/badfree.vgtest |
| 33 | perl tests/vg_regtest memcheck/tests/badfree |
| 34 | |
nethercote | 16b59ee | 2004-10-09 15:59:05 +0000 | [diff] [blame] | 35 | |
| 36 | Debugging Valgrind with GDB |
| 37 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
nethercote | 4fffabd | 2004-11-02 09:13:12 +0000 | [diff] [blame] | 38 | To debug stage 1 just run it under GDB in the normal way. |
| 39 | |
| 40 | To debug Valgrind proper (stage 2) with GDB, start Valgrind like this: |
nethercote | 16b59ee | 2004-10-09 15:59:05 +0000 | [diff] [blame] | 41 | |
| 42 | valgrind --tool=none --wait-for-gdb=yes <prog> |
| 43 | |
| 44 | Then start gdb like this in another terminal: |
| 45 | |
| 46 | gdb /usr/lib/valgrind/stage2 <pid> |
| 47 | |
| 48 | Where <pid> is the pid valgrind printed. Then set whatever breakpoints |
| 49 | you want and do this in gdb: |
| 50 | |
| 51 | jump *$eip |
| 52 | |