diff options
Diffstat (limited to 'package')
| -rwxr-xr-x | package/linux/dfhack | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/linux/dfhack b/package/linux/dfhack index 35e9cfeb..3b6708f9 100755 --- a/package/linux/dfhack +++ b/package/linux/dfhack @@ -18,6 +18,16 @@ case "$1" in gdb ./libs/Dwarf_Fortress $* ret=$? ;; + -h | --helgrind) + shift + valgrind --tool=helgrind --log-file=helgrind.log ./libs/Dwarf_Fortress $* + ret=$? + ;; + -v | --valgrind) + shift + valgrind --log-file=valgrind.log ./libs/Dwarf_Fortress $* + ret=$? + ;; *) ./libs/Dwarf_Fortress $* ret=$? |
