commandline session utilities

This commit is contained in:
Robin Gareus
2015-12-16 00:25:07 +01:00
parent f05afd973b
commit b228c11311
10 changed files with 625 additions and 0 deletions

14
session_utils/debug Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
TOP=`dirname "$0"`/..
. "$TOP/build/gtk2_ardour/ardev_common_waf.sh"
SELF=$1
shift
export ARDOUR_INSIDE_GDB=1
if test -n "`which gdb`"; then
exec gdb --args "$TOP/build/session_utils/$SELF" "$@"
fi
if test -n "`which lldb`"; then
exec lldb -- "$TOP/build/session_utils/$SELF" "$@"
fi