Skip to content
Snippets Groups Projects
Commit 78f6cf0d authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Start pike in gdb if --gdb is used as the first argument.

Rev: bin/pike.in:1.4
parent d41dde07
No related branches found
No related tags found
No related merge requests found
......@@ -14,4 +14,11 @@ case "$BUILDDIR" in
*) BUILDDIR="BASEDIR"/"$BUILDDIR";;
esac
exec "$BUILDDIR/pike" "-m$BUILDDIR/master.pike" "$@"
if test x"$1" = x--gdb; then
shift
echo set args -m$BUILDDIR/master.pike $@ > .gdbinit
gdb "$BUILDDIR/pike"
rm .gdbinit
else
exec "$BUILDDIR/pike" "-m$BUILDDIR/master.pike" "$@"
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment