13
0

Added DDD and LLDB to the start shell script

This commit is contained in:
Peter Kovář 2020-09-04 02:37:30 +02:00 committed by Robin Gareus
parent b3ff86aa98
commit 6e67eba5bb
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -61,8 +61,10 @@ export VAMP_PATH=@LIBDIR@/vamp${VAMP_PATH:+:$VAMP_PATH}
if [ $# -gt 0 ] ; then
case $1 in
-g|--gdb) GDB=gdb; shift ;;
--ddd) DEBUGGER=ddd; shift ;;
-g|--gdb) DEBUGGER=gdb; shift ;;
--lldb) DEBUGGER=lldb; shift ;;
esac
fi
exec $GDB @LIBDIR@/ardour-@VERSION@ "$@"
exec $DEBUGGER @LIBDIR@/ardour-@VERSION@ "$@"