Reputation: 2967
I am used to visual studio debugger(its really good) and I have to debug a program running on linux(in C++) from my windows machine. Can anyone suggest how to debug remote program running on linux from windows
Upvotes: 1
Views: 1540
Reputation: 7208
For console based programs, you're going to want to look into gbd. It's a command line utility, but with a bit of knowhow, it's every bit as capable as Visual Studio for tracking down a problem. You could start your program over a remote SSH session and debug it this way. This might even work for GUI based applications that you were viewing over a VNC connection.
Upvotes: 0
Reputation: 91260
ddd
on the linux machine - it'll display on your windows machineUpvotes: 2