You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2021. It is now read-only.
/home/nowaker/projekty/dreamhost/ndn/bin/ndn-dev/home/ndn/bin/ndn-devThis is what happens when I hit the first breakpoint:
Config:
{ "version": "0.2.0", "configurations": [ { "type": "perl", "request": "launch", "name": "Perl-Debug", "console": "remote", "port": 9000, "root": "${workspaceFolder}", "program": "${workspaceFolder}/${relativeFile}", "stopOnEntry": true, "reloadModules": false } ] }We need a way to define directory mappings, for example:
{ "version": "0.2.0", "configurations": [ { "type": "perl", "request": "launch", "name": "Perl-Debug", "console": "remote", "port": 9000, "root": "${workspaceFolder}", "dirMapping": [ {"/home/ndn": "${workspaceFolder}"}, {"/some/remote/path": "/some/local/path"} ], "program": "${workspaceFolder}/${relativeFile}", "stopOnEntry": true, "reloadModules": false } ] }