Valgrind is a powerful open-source memory debugger. When valgrind is attached to a program, it intercepts calls to malloc/new/free/delete and all memory operations are checked for invalid read or write.
Valgrind is a powerful open-source memory debugger. When valgrind is attached to a program, it intercepts calls to malloc/new/free/delete and all memory operations are checked for invalid read or write.
To install valgrind, run the following command in macOS terminal (Applications->Utilities->Terminal)
sudo port install valgrind
To see what files were installed by valgrind, run:
port contents valgrind
To later upgrade valgrind, run:
sudo port selfupdate && sudo port upgrade valgrind
Reporting an issue on MacPorts Trac
The MacPorts Project uses a system called Trac to file tickets to report bugs and enhancement requests.
Though anyone may search Trac for tickets, you must have a GitHub account in order to login to Trac to create tickets.