diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-15 12:57:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-15 12:57:53 +0100 |
| commit | c62f2251c71e1eabf94f3b1ee291b91543228819 (patch) | |
| tree | 055a8255e89bcc0b175d2fdc36df1d57aa741b7e /run | |
| parent | 181bc4775a198446e2e68828b48199f26c2ea0b6 (diff) | |
Add dcpsignerthumb files.
Diffstat (limited to 'run')
| -rwxr-xr-x | run/tools/dcpsignerthumb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/run/tools/dcpsignerthumb b/run/tools/dcpsignerthumb new file mode 100755 index 00000000..2ee06fe2 --- /dev/null +++ b/run/tools/dcpsignerthumb @@ -0,0 +1,12 @@ +#!/bin/bash + +export LD_LIBRARY_PATH=build/src:build/asdcplib/src:/home/c.hetherington/lib:$LD_LIBRARY_PATH +if [ "$1" == "--debug" ]; then + shift + gdb --args build/tools/dcpsignerthumb "$@" +elif [ "$1" == "--valgrind" ]; then + shift + valgrind --tool="memcheck" --leak-check=full --show-reachable=yes build/tools/dcpsignerthumb "$@" +else + build/tools/dcpsignerthumb "$@" +fi |
