Hello,
I’m using visual GDB 5.1r5-trial (i’m registered)
I configured my project with remote compilation via ssh.
I choose to “import files to solution explorer” then “to copy the sources locally and upload modified during build”
My question is:
let’s say you add a breakpoint in http_socket.cpp.
The file on your disk is located in <your_project_path>/core/test for example.
When vc++ will stop on this line, it will show you a temporary file (<temp_dir>/<some_temp_path>/…) and not the real one.
So if you try to modify it, first it’s read-only and second, the changes won’t be uploaded to the server. I need to be careful to switch each time to the real file before doing any changes.
Is it possible to change this in the configuration and ask visual GDB to alway work on the real local files ?
Thanks.