Using ssh gdb(13.1), triggering break point ok but with a wrong path
launch.json:
I add a break point at IDE side(by click at line number)
The popup file's path:
\cygdrive\f\project\build\Cygwin_RelWithDebInfo\src\func\F:\project\src\func\main.cpp
It should be:
F:\project\src\func\main.cpp


{ "version": "0.2.0", "configurations": [ { "type": "gdb", "request": "launch", "name": "Launch (SSH)", "target": "func", "cwd": "${workspaceFolder}", "ssh": { "host": "192.168.1.1", "cwd": "/home/debug/", "password": "root", "user": "root", "sourceFileMap": { "${workspaceFolder}": "${workspaceFolder}" } } } ] }