diff options
| -rw-r--r-- | CMakeScripts/InstallMSYS2.cmake | 12 | ||||
| -rw-r--r-- | packaging/win32/gdb_create_backtrace.bat | 32 |
2 files changed, 44 insertions, 0 deletions
diff --git a/CMakeScripts/InstallMSYS2.cmake b/CMakeScripts/InstallMSYS2.cmake index 74135d250..ba3ec6309 100644 --- a/CMakeScripts/InstallMSYS2.cmake +++ b/CMakeScripts/InstallMSYS2.cmake @@ -270,4 +270,16 @@ if(WIN32) EXCLUDE "^\\.\\.\\/" # exclude content in parent directories (notably scripts installed to /bin)
)
endforeach()
+
+ # gdb
+ install(FILES
+ ${MINGW_BIN}/gdb.exe
+ ${MINGW_BIN}/libreadline8.dll
+ DESTINATION bin)
+ install(DIRECTORY
+ ${MINGW_PATH}/share/gdb
+ DESTINATION share)
+ install(FILES
+ packaging/win32/gdb_create_backtrace.bat
+ DESTINATION bin)
endif()
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 |
