mirror of
https://github.com/gunchev/home_bin.git
synced 2025-11-20 12:15:46 +00:00
7 lines
363 B
Bash
Executable file
7 lines
363 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# track-origins=yes is veeeery slow
|
|
|
|
G_SLICE=always-malloc G_DEBUG=gc-friendly \
|
|
/usr/bin/valgrind --tool=memcheck --trace-children=no --leak-check=full --leak-resolution=high --num-callers=32 --max-stackframe=20982960 \
|
|
--track-fds=yes --track-origins=no --db-command="cgdb -nw %f %p" --error-exitcode=1 --show-reachable=no --db-attach=yes "$@"
|