I have got a crash dump of a C++ application from Linux platform. How can I use that on Windows to look at the state of the program (call stack, variable values, thread info, etc.)?
Can I use Visual Studio/VSCode?
I have got a crash dump of a C++ application from Linux platform. How can I use that on Windows to look at the state of the program (call stack, variable values, thread info, etc.)?
Can I use Visual Studio/VSCode?
Right now you can't debug a Linux core dump just with Visual Studio running on Windows. But you can remote connect the Visual Studio debugger to a Linux machine following these instructions.
You can use GDB on Windows for that, if it was compiled with support for Linux targets. But you still need the binaries and symbols.
(Sorry, I don't know if VSCode comes with such a GDB)