Top "Valgrind" questions

Valgrind is a dynamic analysis tool for Linux, OS X, Android, and Solaris systems.

make fails while installing Valgrind

I'm trying to install Valgrind on a Mac with Snow Leopard but am getting an error. This is what I'm …

macos makefile valgrind darwin
Unable to build and install Valgrind on macOS High Sierra

I cannot install Valgrind on macOS High Sierra. It's not available through brew. I've tried with 3.10. After make install, I …

macos valgrind macos-high-sierra
Android valgrind build fails

Hello I'm trying to build valgrind for android-arm. On Linux Mint 13 it fails with: $ make echo "# This is a generated …

android macos android-ndk valgrind configure
Make valgrind stop immediately after first error

my program processes large errors and during development in produces large amount of output on the console. It suffers from …

debugging valgrind
Valgrind Unrecognised instruction

I have the following code: #include <iostream> #include <random> int main() { std::mt19937_64 rng(std::random_…

c++ valgrind libstdc++ gcc5
Valgrind for ARM with Linaro Toolchain requiring libc6-dbg with Buildroot

I cross compiled Valgrind (http://valgrind.org/downloads/valgrind-3.8.1.tar.bz2) for ARM using the following commands with the Linaro …

arm valgrind cross-compiling glibc buildroot
Difference between gdb, valgrind, strace, ltrace and apport

I'm looking for the difference between the following debugging tools. What are those? E: On the off chance that somebody …

debugging gdb valgrind strace ltrace
multiple threads writing to std::cout or std::cerr

I have OpenMP threads that write to the console via cout and cerr. This of course is not safe, since …

c++ multithreading openmp valgrind
Using valgrind to spot error in mpi code

I have a code which works perfect in serial but with mpirun -n 2 ./out it gives the following error: ./out': …

mpi valgrind
How to make Qt GUI apps in C++ without memory leaks

I haven't been able to create a Qt GUI app that didn't have over 1K 'definitely lost' bytes in valgrind. …

c++ qt memory-leaks valgrind suppress-warnings