I cross compile from linux to windows using mingw32 tools. I need to generate pdb files for debugging in windows. Is there any way to do this?
this project gives you the ability to generate pdb, it works in most cases for debugging:
https://github.com/rainers/cv2pdb
More details can help with this post mortem debug post.
http://blog.morlad.at/blah/mingw_postmortem
GCC / MinGW creates debugging information in the native format used by GNU GDB Debugger, Microsoft PDB format is not supported. So you can:
create a Windows application with MSVC
use the Windows version of GNU GDB
Source: https://habr.com/ru/post/955560/More articles:How to save data coming from "sudo dpkg -l" in an Ubuntu terminal using python - pythonDecent implementation of DAG in PHP? - php"Unable to create process ... \ project1.exe" while debugging Win64 applications in Windows 8 - debuggingCoreData: Ubiquity: using local storage: 1 never becomes 0 - iosHow can I get output from the command line to state in a script? - pythonRandom "starting point" for CSS keyframes animation - javascriptHow to create a profile in Firefox using Selenium WebDriver - seleniumWindows 7 environment variable for System32 or SysWOW64 - c #Firefox error: "Your connection is not secure" when starting the driver with Selenium 3.0.1 using Java - javaposition of MediaController inside fragment - androidAll Articles