Home>Article>Development Tools> vscode configures c language development environment

vscode configures c language development environment

王林
王林 Original
2019-12-30 16:25:31 3291browse

vscode configures c language development environment

Get C/C extension

Open vscode, use the ctrl shift x shortcut key to open the store, search for C/C, install the plug-in and restart vscode

vscode configures c language development environment

Install GCC

Download MinGW, open the installation program, install to the D drive (you need to create the MinGW folder), the installation is complete Then generate the MinGW installation manager. The manager opens automatically (please do it manually if not), click All Packages, select gcc.bin, g .bin, gdb.bin, click Installation, select Apply Changes, and click Apply to submit for installation.

vscode configures c language development environment

win R, enter control to enter the control panel, click System and Installation->System->Advanced System Settings->Environment Variables, find Path-> Edit->New, paste the bin folder path of the installed MinGW into it.

vscode configures c language development environment

Configure smart prompts

Write a test file demo.c, click on the "prompt light" under the imported standard library, Generate c_cpp_properties.json file

Edit c_cpp_properties.json

vscode configures c language development environment

##c_cpp_properties.json modification content is as follows:

vscode configures c language development environment

Enable debugging

F5 or Ctrl F5 enables debugging, select C (GDB/LLDB) to generate the launch.json file, modify it as follows:


vscode configures c language development environment

Ctrl Shift P Enter Tasks:Configure Task to configure the task, choose to use the module to create the task.json file, select the Others template, generate the task.json file, modify it as follows:

vscode configures c language development environment

If an error occurs: process terminated, exit code: 1, it may be that gcc has not been loaded by the editor (test method: open the console, enter gcc, and see the prompt message), just restart the editor.

Recommended related articles and tutorials:

vscode tutorial

The above is the detailed content of vscode configures c language development environment. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn