I am using a standalone (i.e. no) remote ubuntu x64 server to develop a C ++ application (without an interface).
I want to conveniently (like an IDE, not a command line) debug this program from windows (7/64), with Eclipse, if possible. I have window sharing between two and full root access on both machines.
So far I have heard of two solutions:
- Remote gdb
- Remote Server X
I worked on solution 1: built cross gdb, copied my program and libraries on windows. I can remove -gdb from the cygwin command line, but not from the eclipse (stuck in "start ... 85%" without error message or in the log)
I also worked on solution 2: installed xauth, installed forwarding X, installed xming in its windows, installed DISPLAY in the linux field. But no βcannot open DISPLAY xxxβ effect without easy troubleshooting.
When searching for these problems, I find outdated pages or various problems.
Has anyone done this? Can you share tips or fresh pointers on how to remove debugging Linux C ++ applications from Windows?
source share