Properly revert FormatSpec changes on "cancel"
[ardour.git] / gtk2_ardour / ardbg
index ab99296f450df07b6ac4559aee8cff20654e72e9..abec22e22fcb7d0591067d257cf91f32ba45df5b 100755 (executable)
@@ -1,5 +1,13 @@
 #!/bin/sh
-dir=`dirname "$0"`
-. $dir/ardev_common.sh
-LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
-exec gdb $EXECUTABLE $*
+TOP=`dirname "$0"`/..
+. $TOP/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 $TOP/$EXECUTABLE $@
+fi
+if test -n "`which lldb`"; then
+       exec lldb -- $TOP/$EXECUTABLE $@
+fi
+echo "neither gdb nor lldb was found."