X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=run%2Fdcpomatic_batch;h=6a8207c14a602710ec040cb245247c6ae832e16a;hp=78ee8f7be0a19a2e6ef5796af1d1e22057136a3d;hb=6d686ea45f5cd01a0d11f92a903ac77779ad8562;hpb=ed38aec53517fdeb5ecdd9a29bced1d92ef63d14 diff --git a/run/dcpomatic_batch b/run/dcpomatic_batch index 78ee8f7be..6a8207c14 100755 --- a/run/dcpomatic_batch +++ b/run/dcpomatic_batch @@ -3,16 +3,19 @@ export LD_LIBRARY_PATH=build/src/lib:build/src/wx:build/src/asdcplib/src:$LD_LIBRARY_PATH if [ "$1" == "--debug" ]; then shift - gdb --args build/src/tools/dcpomatic_batch $* + gdb --args build/src/tools/dcpomatic2_batch $* elif [ "$1" == "--valgrind" ]; then shift - valgrind --tool="memcheck" --suppressions=valgrind.supp --leak-check=full --show-reachable=yes build/src/tools/dcpomatic_batch $* + valgrind --tool="memcheck" --suppressions=valgrind.supp --leak-check=full --show-reachable=yes build/src/tools/dcpomatic2_batch $* +elif [ "$1" == "--massif" ]; then + shift + valgrind --tool="massif" build/src/tools/dcpomatic2_batch $* elif [ "$1" == "--callgrind" ]; then shift - valgrind --tool="callgrind" build/src/tools/dcpomatic_batch $* + valgrind --tool="callgrind" build/src/tools/dcpomatic2_batch $* elif [ "$1" == "--i18n" ]; then shift - LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic_batch "$*" + LANGUAGE=fr_FR.UTF8 LANG=fr_FR.UTF8 LC_ALL=fr_FR.UTF8 build/src/tools/dcpomatic2_batch "$*" else - build/src/tools/dcpomatic_batch $* + build/src/tools/dcpomatic2_batch $* fi