add a script to read core files in gdb/lldb

This commit is contained in:
Robin Gareus 2016-03-26 15:51:56 +01:00
parent d5c1ea11c3
commit 9228b3e00b
1 changed files with 14 additions and 0 deletions

14
gtk2_ardour/ardbg-core Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
COREFILE=core
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 --core $COREFILE --args $TOP/$EXECUTABLE $@
fi
if test -n "`which lldb`"; then
exec lldb -c $COREFILE -- $TOP/$EXECUTABLE $@
fi
echo "neither gdb nor lldb was found."