sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 1 | |
sewardj | 3a359fe | 2002-07-25 22:45:35 +0000 | [diff] [blame] | 2 | Release notes for Valgrind, version 1.0.0 |
| 3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 4 | KDE3 developers: please read also README_KDE3_FOLKS for guidance |
| 5 | about how to debug KDE3 applications with Valgrind. |
| 6 | |
sewardj | 365a851 | 2002-07-01 08:30:05 +0000 | [diff] [blame] | 7 | If you are building a binary package of Valgrind for distribution, |
| 8 | please read README_PACKAGERS. It contains some important information. |
| 9 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 10 | For instructions on how to build/install, see the end of this file. |
| 11 | |
sewardj | 3a359fe | 2002-07-25 22:45:35 +0000 | [diff] [blame] | 12 | Valgrind works best on systems with glibc-2.1.X or 2.2.X, and with gcc |
| 13 | versions prior to 3.1. gcc-3.1 works, but generates code which causes |
| 14 | valgrind to report many false errors. For now, try to use a gcc prior |
| 15 | to 3.1; if you can't, at least compile your application without |
| 16 | optimisation. Valgrind-1.0.X also can't handle glibc-2.3.X systems. |
| 17 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 18 | |
| 19 | Executive Summary |
| 20 | ~~~~~~~~~~~~~~~~~ |
| 21 | Valgrind is a tool to help you find memory-management problems in your |
| 22 | programs. When a program is run under Valgrind's supervision, all |
| 23 | reads and writes of memory are checked, and calls to |
| 24 | malloc/new/free/delete are intercepted. As a result, Valgrind can |
| 25 | detect problems such as: |
| 26 | |
| 27 | Use of uninitialised memory |
| 28 | Reading/writing memory after it has been free'd |
| 29 | Reading/writing off the end of malloc'd blocks |
| 30 | Reading/writing inappropriate areas on the stack |
| 31 | Memory leaks -- where pointers to malloc'd blocks are lost forever |
| 32 | Passing of uninitialised and/or unaddressible memory to system calls |
| 33 | Mismatched use of malloc/new/new [] vs free/delete/delete [] |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 34 | Some abuses of the POSIX pthread API |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 35 | |
| 36 | Problems like these can be difficult to find by other means, often |
| 37 | lying undetected for long periods, then causing occasional, |
| 38 | difficult-to-diagnose crashes. |
| 39 | |
| 40 | When Valgrind detects such a problem, it can, if you like, attach GDB |
| 41 | to your program, so you can poke around and see what's going on. |
| 42 | |
| 43 | Valgrind is closely tied to details of the CPU, operating system and |
| 44 | to a less extent, compiler and basic C libraries. This makes it |
| 45 | difficult to make it portable, so I have chosen at the outset to |
| 46 | concentrate on what I believe to be a widely used platform: Red Hat |
| 47 | Linux 7.2, on x86s. I believe that it will work without significant |
| 48 | difficulty on other x86 GNU/Linux systems which use the 2.4 kernel and |
sewardj | 365a851 | 2002-07-01 08:30:05 +0000 | [diff] [blame] | 49 | GNU libc 2.2.X, for example SuSE 7.1 and Mandrake 8.0. This version |
| 50 | 1.0 release is known to work on Red Hats 6.2, 7.2 and 7.3, at the very |
| 51 | least. |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 52 | |
| 53 | Valgrind is licensed under the GNU General Public License, version 2. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 54 | Read the file COPYING in the source distribution for details. |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 55 | |
| 56 | |
| 57 | Documentation |
| 58 | ~~~~~~~~~~~~~ |
| 59 | A comprehensive user guide is supplied. Point your browser at |
| 60 | docs/index.html. If your browser doesn't like frames, point it |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 61 | instead at docs/manual.html. There's also detailed, although somewhat |
| 62 | out of date, documentation of how valgrind works, in |
| 63 | docs/techdocs.html. |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 64 | |
| 65 | |
| 66 | Building and installing it |
| 67 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 68 | If you install from CVS : |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 69 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 70 | 0. cd into the source directory |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 71 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 72 | 1. Run ./autogen.sh to setup the environment (you need the standard |
| 73 | autoconf tools to do so) |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 74 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 75 | If you install from a tar.gz archive: |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 76 | |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 77 | 2. Run ./configure, with some options if you wish. The standard |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 78 | options are documented in the INSTALL file. The only interesting |
| 79 | one is the usual --prefix=/where/you/want/it/installed |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 80 | |
| 81 | 3. Do "make" |
| 82 | |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 83 | 4. Do "make install", possibly as root if the destination permissions |
| 84 | require that. |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 85 | |
| 86 | 5. See if it works. Try "valgrind ls -l". Either this works, |
| 87 | or it bombs out complaining it can't find argc/argv/envp. |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 88 | In that case, mail me a bug report. |
gobry | e721a52 | 2002-03-22 13:38:30 +0000 | [diff] [blame] | 89 | |
sewardj | 4018392 | 2002-06-19 20:52:32 +0000 | [diff] [blame] | 90 | Important! Do not move the valgrind installation into a place |
| 91 | different from that specified by --prefix at build time. This will |
| 92 | cause things to break in subtle ways, mostly when Valgrind handles |
| 93 | fork/exec calls. |
gobry | 69896d5 | 2002-04-05 06:56:07 +0000 | [diff] [blame] | 94 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 95 | |
sewardj | de4a1d0 | 2002-03-22 01:27:54 +0000 | [diff] [blame] | 96 | Julian Seward (jseward@acm.org) |
sewardj | 365a851 | 2002-07-01 08:30:05 +0000 | [diff] [blame] | 97 | 1 July 2002 |