How to debug windows executable in Linux

debugging, gdb, linux

Solution

I don't have much experience with this but, I think, what you're looking for is winedbg. Initially, it should allow you to debug Win32 applications in Linux.

Problem

I am using Ubuntu 13.10. Is it possible to debug a windows executable under Linux? I've tried gdb, but it always throw me this error message. ``` /bin/bash: line 0: exec: /some.exe: cannot execute: Permission denied ```

Original source