Visual studio code clang executable

12,757

Solution 1

It seems clang is not installed properly on your ubuntu. Install clang by:

sudo apt-get install clang

clang -v //Now see installed version

Now, error should be fixed.

Solution 2

I too had the same problem and resolved it with the following steps.

  1. Installed the llvm plus clang available with the following link http://releases.llvm.org/

  2. Installed the c/c++ lang adapter (choose this one from the list of extensions in the visual studio code.

https://marketplace.visualstudio.com/items?itemName=mitaki28.vscode-clang

  1. Configure the path of the llvm/bin folder installed in step 1 above in the visual studio code 'user settings', with the clang.executable: variable. Please refer to the 'configuration' section explained in the url in step 2.
Share:
12,757
Admin
Author by

Admin

Updated on June 15, 2022

Comments

  • Admin
    Admin almost 2 years

    I've installed visual studio code on my Ubuntu VM and am using c++. I keep getting the following error covering the pages tab at the top which is really frustrating:

    Please install clang or check configuration clang.executable

    I have installed clang using apt-get install llvm. I have installed the c++ support from the packages so I'm not trying to do anything complicated here.

    I have googled till I'm now blue in the face, has anyone else come across this and now how to get around this.

  • prabhakar
    prabhakar about 6 years
    @Oliver, hope the answer was helpful to you. If so, please accept click on the check mark (✓) beside the answer to toggle it from greyed out to filled in. Thanks