diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:24:48 +0000 |
commit | cca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch) | |
tree | 146f39ded1c938019e1ed42d30923c2ac9e86789 /packaging/win32 | |
parent | Initial commit. (diff) | |
download | inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.tar.xz inkscape-cca66b9ec4e494c1d919bff0f71a820d8afab1fa.zip |
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/win32')
-rw-r--r-- | packaging/win32/Run Inkscape !.bat | 2 | ||||
-rw-r--r-- | packaging/win32/Run Inkscape and create debug trace.bat | 2 | ||||
-rw-r--r-- | packaging/win32/Run Inkscape with GTK Inspector.bat | 3 | ||||
-rw-r--r-- | packaging/win32/gdb_create_backtrace.bat | 32 |
4 files changed, 39 insertions, 0 deletions
diff --git a/packaging/win32/Run Inkscape !.bat b/packaging/win32/Run Inkscape !.bat new file mode 100644 index 0000000..7e251b7 --- /dev/null +++ b/packaging/win32/Run Inkscape !.bat @@ -0,0 +1,2 @@ +cd bin +start inkscape.exe diff --git a/packaging/win32/Run Inkscape and create debug trace.bat b/packaging/win32/Run Inkscape and create debug trace.bat new file mode 100644 index 0000000..3a01902 --- /dev/null +++ b/packaging/win32/Run Inkscape and create debug trace.bat @@ -0,0 +1,2 @@ +cd bin +start gdb_create_backtrace.bat diff --git a/packaging/win32/Run Inkscape with GTK Inspector.bat b/packaging/win32/Run Inkscape with GTK Inspector.bat new file mode 100644 index 0000000..85337e4 --- /dev/null +++ b/packaging/win32/Run Inkscape with GTK Inspector.bat @@ -0,0 +1,3 @@ +cd bin +set GTK_DEBUG=interactive +start inkscape.exe diff --git a/packaging/win32/gdb_create_backtrace.bat b/packaging/win32/gdb_create_backtrace.bat new file mode 100644 index 0000000..ebc2c00 --- /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 -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 |