A simple memory visiting log tool based on valgrind
This tool follows the instruction of Valgrind Technical Documentation. So it should co-work with Valgrind Core. It is developed with Valgrind 3.8.1.
- Check out the valgrind repository --
svn co svn://svn.valgrind.org/valgrind/trunk valgrindor using a release version if you like - Go to the valgrind directory --
cd valgrindand Check out the memlog repo --git clone https://github.com/weichaoguo/memlog.git - Editing --
Makefile.am, adding the new directorymemlogto the TOOLS or EXP_TOOLS variables - Editing --
configure.in, addingmemlog/Makefileandmemlog/tests/Makefileto theAC_CONFIG_FILESlist - Then following the 'GNU automake style' --
autogen.sh && ./configure --prefix=\pwd`/inst && make && make install`
- Tracing memory address visiting
Valgrind : http://valgrind.org
Author: Weichao Guo [guoweichao@mail.com]