-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
debuggermore info neededThe issue report is not actionable in its current stateThe issue report is not actionable in its current state
Description
Describe the bug
- OS and Version: Windows 10 1803. 17134.165
- VS Code Version: 1.26.0
- C/C++ Extension Version: 0.17.7
- Other extensions you installed (and if the issue persists after disabling them): None.
the error look like this
This is the launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "D:\\CodeBlocks\\MinGW\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
This is the tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "build hello world",
"type": "shell",
"command": "g++",
"args": [
"-g", "${fileBasenameNoExtension}.cpp"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
I have google the error, but I don't get helpful information.
And there are no the char "0x08", the launch.json
look like this in the notepad++ with show all characteres.
Any one can help?😀
Metadata
Metadata
Assignees
Labels
debuggermore info neededThe issue report is not actionable in its current stateThe issue report is not actionable in its current state