We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2de3b68 commit e8c7ae8Copy full SHA for e8c7ae8
1 file changed
.vscode/launch.json
@@ -48,6 +48,33 @@
48
}
49
]
50
},
51
+ {
52
+ "type": "cppdbg",
53
+ "request": "launch",
54
+ "name": "Debug (gdb) threaded",
55
+ "program": "${workspaceFolder}/build/bin/local/radiusd",
56
+ "args": [
57
+ "-fxxl",
58
+ "stdout",
59
+ "-D",
60
+ "${workspaceFolder}/share",
61
+ "-d",
62
+ "${input:raddb}"
63
+ ],
64
+ "cwd": "${workspaceFolder}",
65
+ "environment": [
66
+ { "name": "FR_LIBRARY_PATH", "value": "${workspaceFolder}/build/lib/local/.libs" },
67
+ { "name": "LD_LIBRARY_PATH", "value": "${workspaceFolder}/build/lib/local/.libs" },
68
+ { "name": "DEBUGGER_ATTACHED", "value": "yes" }
69
70
+ "MIMode": "gdb",
71
+ "setupCommands": [
72
73
+ "description": "Set solib",
74
+ "text": "set solib-search-path ${workspaceFolder}"
75
+ }
76
+ ]
77
+ },
78
{
79
"type": "cppdbg",
80
"request": "launch",
0 commit comments