13 lines
332 B
Bash
Executable File
13 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
. `dirname "$0"`/../build/gtk2_ardour/ardev_common_waf.sh
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH
|
|
export ARDOUR_INSIDE_GDB=1
|
|
|
|
if test -n "`which gdb`"; then
|
|
exec gdb --args $libs/fst/ardour-vst-scanner $@
|
|
fi
|
|
if test -n "`which lldb`"; then
|
|
exec lldb -- $libs/fst/ardour-vst-scanner $@
|
|
fi
|
|
echo "neither gdb nor lldb was found."
|