How can i set up VS Code Ubuntu clang?

Viewed 28

I am trying to setup vs code with clang compiler. I installed the compiler via the Ubuntu terminal. Now I'm trying to run my first application, but I get the following error: "Unable to start debugging. The value of miDebugger is invalid. What needs to be done?

1 Answers

I'm using C C++ and Code runnner ext. Here is my launch.json

{
    // 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": []
}
Related