Home > Enterprise >  Vscode can't find the compiler, but I've already install it
Vscode can't find the compiler, but I've already install it

Time:07-26

I'm new to vscode,just gonna try it out until I bump into this problem Can't find compiler

According to the pic, it said I didn't have any compiler, while I've already install c extension, which shouldn't be the case. c extension installed

CodePudding user response:

You need to also install a c compiler for vscode to compiler your code, along with the c compiler.

Mingw-x64 is one framework which will allow you to compile c/c code

CPP instructions on VSCode site

MinGW instructions on VSCode site

  • Related