linux配置vscode c环境
时间: 2023-11-15 17:00:47 浏览: 80
Visual Studio Code中关于C语言环境的配置
要在VS Code中配置Linux C环境,需要进行以下步骤:
1. 安装C/C++插件:在VS Code中搜索并安装C/C++插件。
2. 安装gcc编译器:在Linux系统中安装gcc编译器。
3. 配置includePath:按下Ctrl+Shift+P,选择“C/C++:编辑配置(JSON)”,在打开的文件中添加以下内容:
```
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}
```
其中,includePath是头文件的路径,可以根据实际情况进行修改。
4. 配置tasks.json:按下Ctrl+Shift+P,选择“Tasks: Configure Task”,选择“Create tasks.json file from template”,选择“Others”,在打开的文件中添加以下内容:
```
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
```
其中,command是编译命令,args是编译参数。
5. 编译代码:按下Ctrl+Shift+B,选择“build”任务进行编译。
阅读全文