diff options
| author | Patrick Storz <eduard.braun2@gmx.de> | 2019-06-15 20:39:13 +0000 |
|---|---|---|
| committer | Patrick Storz <eduard.braun2@gmx.de> | 2019-06-15 22:07:20 +0000 |
| commit | 89093e949368f5fee353ae4c4b7fa909ec4db6df (patch) | |
| tree | be03857480b1284aaff4f61697e38b20cc003d62 /packaging | |
| parent | PageSizer: Avoid writing terminating NULL to pages.csv (diff) | |
| download | inkscape-89093e949368f5fee353ae4c4b7fa909ec4db6df.tar.gz inkscape-89093e949368f5fee353ae4c4b7fa909ec4db6df.zip | |
CMake/MSYS2: Include gdb into distribution
Also include a batch script that should make it easy to collect a
backtrace with relevant info for most users.
Fixes https://gitlab.com/inkscape/inkscape/issues/81
Diffstat (limited to 'packaging')
| -rw-r--r-- | packaging/win32/gdb_create_backtrace.bat | 32 |
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 000000000..b0a4f69f7 --- /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 sytem info... + +echo --- INKSCAPE VERSION --- > %TRACEFILE% +inkscape.com -V >> %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" -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 |
