We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e95fd commit 8d169f3Copy full SHA for 8d169f3
.devcontainer/launch.json
@@ -2,11 +2,16 @@
2
"version": "0.2.0",
3
"configurations": [
4
{
5
- "name": "(lldb) Attach to R",
6
- "type": "lldb",
7
- "request": "attach",
8
- "pid": "${command:pickMyProcess}",
9
- "stopOnEntry": false
+ "name": "Debug R (C debugging)",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "/workspaces/r-dev-env/scripts/launch_r.sh",
+ "args": ["/workspaces/r-dev-env/build/r-devel/bin/R"],
10
+ "stopAtEntry": false,
11
+ "cwd": "${workspaceFolder}",
12
+ "environment": [],
13
+ "externalConsole": false,
14
+ "MIMode": "lldb"
15
}
16
]
17
0 commit comments