Add DYLD_LIBRARY_PATH to run/dcpomatic
[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 if [ "$1" == "--debug" ]; then
16     shift
17     gdb --args $binary $*
18 elif [ "$1" == "--valgrind" ]; then
19     shift
20     valgrind --tool="memcheck" --suppressions=suppressions --track-fds=yes --show-leak-kinds=all --leak-check=full $binary $*
21 elif [ "$1" == "--callgrind" ]; then
22     shift
23     valgrind --tool="callgrind" $binary $*
24 elif [ "$1" == "--massif" ]; then
25     shift
26     valgrind --tool="massif" $binary $*
27 elif [ "$1" == "--i18n" ]; then
28     shift
29     LANGUAGE=de_DE.UTF8 LANG=de_DE.UTF8 LC_ALL=de_DE.UTF8 $binary "$*"
30 elif [ "$1" == "--perf" ]; then
31     shift
32     perf record $binary $*
33 elif [ "$1" == "--scaled" ]; then
34     shift
35     ~/src/run_scaled/run_scaled --sleep=5 --scale=0.5 $binary $*
36 elif [ "$1" == "--screenshot" ]; then
37     shift
38     GTK_PATH=/usr/local/lib/gtk-3.0 GTK_MODULES=gtk-vector-screenshot $binary "$*"
39 else
40     $binary $* 2> >(grep -v Gtk-CRITICAL | grep -v Gtk-WARNING)
41 fi