Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 529 Bytes

Valgrind.md

File metadata and controls

16 lines (13 loc) · 529 Bytes

Usar o Valgrind

Executar Valgrind com mais opções

valgrind --leak-check=full --track-origins=yes name-of-your-program

Executar Valgrind com mais opções ainda e com salvamento do log em txt

valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt ./executable

Para mostrar a linha correta do erro

valgrind --tool=memcheck --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt ./executable