]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - all
./all: drop into gdb if a crash happened and gdb is available (otherwise keep using...
[xonotic/xonotic.git] / all
diff --git a/all b/all
index fc1b8f2e58372fcee6e1d00890f04e627c0111c7..6b19347bb4e098367ebd43ca8a2796354efff388 100755 (executable)
--- a/all
+++ b/all
@@ -118,7 +118,7 @@ netradiant                    |
 div0-gittools                 |                                                   | master      | no
 data/xonotic-maps.pk3dir      |                                                   | master      |
 mediasource                   |                                                   | master      | no
-fteqcc                        | git://github.com/Blub/qclib.git                   | master      |
+fteqcc                        | http://github.com/Blub/qclib.git                  | master      |
 "
 # todo: in darkplaces, change repobranch to div0-stable
 
@@ -666,12 +666,21 @@ case "$cmd" in
                        fi
                fi
 
+               binary=$1
+
                if [ -n "$USE_GDB" ]; then
                        set -- gdb --args "$@"
-               elif which catchsegv >/dev/null 2>&1/; then
+               elif which gdb >/dev/null 2>&1; then
+                       set -- gdb --batch -x savecore.gdb --args "$@"
+               elif which catchsegv >/dev/null 2>&1; then
                        set -- catchsegv "$@"
                fi
+               rm -f xonotic.core
                "$@"
+               if [ -f xonotic.core ]; then
+                       echo "The program has CRASHED. Please examine the core dump in the debugger."
+                       gdb "$binary" xonotic.core
+               fi
                ;;
        each|foreach)
                keep_going=false