summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorPetr Mrázek2011-07-21 11:29:26 +0200
committerPetr Mrázek2011-07-21 11:29:26 +0200
commit262a5c9da3653b4cb6aef2172287b55886570702 (patch)
tree2c2829271a4d8da02ae6afa2aeb7647c01b496ce /package
parent9582af667bd8131d1e6916a488678a8afd05844f (diff)
downloaddfhack-262a5c9da3653b4cb6aef2172287b55886570702.tar.gz
dfhack-262a5c9da3653b4cb6aef2172287b55886570702.tar.bz2
dfhack-262a5c9da3653b4cb6aef2172287b55886570702.tar.xz
Callgrind in dfhack script, added an option for building stonesense.
Diffstat (limited to 'package')
-rwxr-xr-xpackage/linux/dfhack5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/linux/dfhack b/package/linux/dfhack
index 46d32f52..28ec21e9 100755
--- a/package/linux/dfhack
+++ b/package/linux/dfhack
@@ -53,6 +53,11 @@ case "$1" in
LD_PRELOAD=./libdfhack.so valgrind $DF_VALGRIND_OPTS --log-file=valgrind.log ./libs/Dwarf_Fortress $*
ret=$?
;;
+ -c | --callgrind)
+ shift
+ LD_PRELOAD=./libdfhack.so valgrind $DF_CALLGRIND_OPTS --tool=callgrind --separate-threads=yes --dump-instr=yes --instr-atstart=no --log-file=callgrind.log ./libs/Dwarf_Fortress $*
+ ret=$?
+ ;;
*)
LD_PRELOAD=./libdfhack.so ./libs/Dwarf_Fortress $*
ret=$?