730b89d5501dd3cd3b5ba181bc996a4f8135482e
[dcpomatic.git] / run / dcpomatic
1 #!/bin/bash
2
3 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
4 source $DIR/environment
5 binary=$build/src/tools/dcpomatic2
6
7 if [[ "$(uname -m)" == arm64 ]]; then
8     env=arm64/11.0
9 else
10     env=x86_64/10.10
11 fi
12
13 export DYLD_LIBRARY_PATH=/Users/cah/osx-environment/$env/lib:/usr/local/lib
14
15 # export ASAN_OPTIONS=verbosity=1:malloc_context_size=20:detect_leaks=1
16
17 if [ "$1" == "--debug" ]; then
18     shift
19     gdb --args $binary $*
20 elif [ "$1" == "--valgrind" ]; then
21     shift
22     valgrind --tool="memcheck" --suppressions=suppressions --track-fds=yes --show-leak-kinds=all --leak-check=full $binary $*
23 elif [ "$1" == "--callgrind" ]; then
24     shift
25     valgrind --tool="callgrind" $binary $*
26 elif [ "$1" == "--massif" ]; then
27     shift
28     valgrind --tool="massif" $binary $*
29 elif [ "$1" == "--i18n" ]; then
30     shift
31     LANGUAGE=de_DE.UTF8 LANG=de_DE.UTF8 LC_ALL=de_DE.UTF8 $binary "$*"
32 elif [ "$1" == "--perf" ]; then
33     shift
34     perf record $binary $*
35 elif [ "$1" == "--scaled" ]; then
36     shift
37     ~/src/run_scaled/run_scaled --sleep=5 --scale=0.5 $binary $*
38 elif [ "$1" == "--screenshot" ]; then
39     shift
40     GTK_PATH=/usr/local/lib/gtk-3.0 GTK_MODULES=gtk-vector-screenshot $binary "$*"
41 else
42     $binary $* 2> >(grep -v Gtk-CRITICAL | grep -v Gtk-WARNING)
43 fi