Replies: 2 comments 8 replies
-
Your debug info says that your source file is at |
Beta Was this translation helpful? Give feedback.
-
@vadimcn funny observation: When I change my compilation task to using g++, the
The compile task: {
"label": "G++Compile",
"command": "g++.exe",
"args": [
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.exe",
"-g",
"-m64",
"-Wall",
"-Wextra",
"-static-libgcc",
"-xc++",
"-std=c++14",
],
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared"
},
}, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Environment:
14.0.3
v1.7.0
Symptom:
Seems lldb is not correctly configured (see the 5th line of the output info of debug console below), but I have no idea what to do next :(
Tried:
I modified my
launch.json
according to our Q&A. But it's still not working:my
ClangCompile
Task is:Beta Was this translation helpful? Give feedback.
All reactions