about summary refs log tree commit diff
path: root/src/rt/vg
AgeCommit message (Collapse)AuthorLines
2014-05-11make sure jemalloc valgrind support is enabledDaniel Micay-4353/+0
This requires pointing it at the valgrind headers we carry in-tree.
2013-08-26rt: Make valgrind Win64-compatibleklutzy-6/+12
2012-03-21Upgrade valgrind headers to 3.7, silencing build breakage on FreeBSD.Graydon Hoare-1557/+835
2011-12-06Make valgrind usage more consistent and less error prone.Austin Seipp-0/+5069
I was still having issues with the build system somehow getting confused as to which set of valgrind headers to use when compiling rt. This commit moves all the valgrind headers into their own directory under rt and makes the usage more consistent. The compiler is now passed the -DNVALGRIND flag when valgrind is not installed, as opposed to passing -DHAVE_VALGRIND. We also pass -I src/rt to the compiler when building rt so you can more easily import what you want. I also cleaned up some erroneous #includes along the way. It should be safe to always just import the local valgrind headers and use them without question. NVALGRIND turns the operations to no-ops when it is active, and the build and tests run cleanly with or without.