-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
debuggerexternalmore info neededThe issue report is not actionable in its current stateThe issue report is not actionable in its current state
Description
hello
I have a problem with debugging my cpp code with vscode that when I try to I get an error said "Unable to start debugging. Program path 'c:\Users\Moh3n\Desktop\New folder\tst.cpp' is missing or invalid"
my launch.jason file:
`{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/tst.cpp",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:/mingw/bin/gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}`
Metadata
Metadata
Assignees
Labels
debuggerexternalmore info neededThe issue report is not actionable in its current stateThe issue report is not actionable in its current state