summaryrefslogtreecommitdiffstats
path: root/packaging/win32/gdb_create_backtrace.bat
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
commitc853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch)
tree7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /packaging/win32/gdb_create_backtrace.bat
parentInitial commit. (diff)
downloadinkscape-upstream.tar.xz
inkscape-upstream.zip
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--packaging/win32/gdb_create_backtrace.bat32
1 files changed, 32 insertions, 0 deletions
diff --git a/packaging/win32/gdb_create_backtrace.bat b/packaging/win32/gdb_create_backtrace.bat
new file mode 100644
index 0000000..220c990
--- /dev/null
+++ b/packaging/win32/gdb_create_backtrace.bat
@@ -0,0 +1,32 @@
+@echo off
+rem Execute this to create a debug backtrace of an Inkscape crash.
+
+set TRACEFILE="%USERPROFILE%\inkscape_backtrace.txt"
+
+echo Thanks for creating a debug backtrace!
+echo.
+echo After Inkscape starts, try to force the crash.
+echo The backtrace will be recorded automatically.
+echo.
+echo Gathering system info...
+
+echo --- INKSCAPE VERSION --- > %TRACEFILE%
+inkscape.com --debug-info >> %TRACEFILE%
+echo. >> %TRACEFILE%
+echo --- SYSTEM INFO --- >> %TRACEFILE%
+systeminfo >> %TRACEFILE%
+
+echo.
+echo Launching Inkscape, please wait...
+
+echo. >> %TRACEFILE%
+echo --- BACKTRACE --- >> %TRACEFILE%
+gdb.exe -batch -ex "run --app-id-tag gdbbt" -ex "bt" inkscape.exe >> %TRACEFILE%
+
+echo.
+echo Backtrace written to %TRACEFILE%
+echo Please attach this file when reporting the issue at https://inkscape.org/report
+echo (remove personal information you do not want to share, e.g. your user name)
+echo.
+
+pause