microsoft / microsoft/vscode-cpptools
error while processing request 'launch' (exception: libc.dylib) vscode
Open
@pieandcakes is already working on this.
Since Sep 26, 2018.
debugger
- Dominant language
- TypeScript
- Stars
- 6.2k
- Forks
- 1.7k
- Avg merge
- 14h 46m
- Merged PRs (30d)
- 61
Description
Type: Debugger
Input information below
This is not really debugger related but when I'm both attempting to debug or to run the program
Describe the bug
- OS and Version: OSX 0.13.5 (17F77)
- VS Code Version: Version 1.27.2 (1.27.2)
- C/C++ Extension Version: 0.18.1
I'm getting an window pop up saying error while processing request 'launch' (exception: libc.dylib) vscode
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "simple",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "lldb"
}
]
}
sample.cpp
#include <iostream>
using namespace std;
int main() {
string message = "Hello World";
cout << message << endl;
return 0;
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.