From 462383278536475550640738bdda42dfb7c0c1c9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 29 Aug 2013 22:59:12 +0100 Subject: [PATCH] Add --callgrind option to dcpomatic run script. --- run/dcpomatic | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run/dcpomatic b/run/dcpomatic index 7ea08778c..cf3de165c 100755 --- a/run/dcpomatic +++ b/run/dcpomatic @@ -7,6 +7,9 @@ if [ "$1" == "--debug" ]; then elif [ "$1" == "--valgrind" ]; then shift valgrind --tool="memcheck" build/src/tools/dcpomatic $* +elif [ "$1" == "--callgrind" ]; then + shift + valgrind --tool="callgrind" build/src/tools/dcpomatic $* elif [ "$1" == "--i18n" ]; then shift LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 build/src/tools/dcpomatic "$*" -- 2.30.2