vscode配置c 环境mac
时间: 2023-10-22 21:04:45 浏览: 80
好的,针对你的问题,我可以给你提供以下步骤:
1. 安装 Xcode Command Line Tools
在终端中输入以下命令:
```
xcode-select --install
```
2. 安装 Homebrew
在终端中输入以下命令:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
3. 安装 gcc
在终端中输入以下命令:
```
brew install gcc
```
4. 配置 VS Code
打开 VS Code,按下 `Command + Shift + P`,输入 `C/C++: Edit Configurations (JSON)`,选择 `C/C++: Edit Configurations (JSON)`,在打开的文件中添加以下内容:
```
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/System/Library/Frameworks"
],
"compilerPath": "/usr/local/bin/gcc-11",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
```
其中 `"compilerPath": "/usr/local/bin/gcc-11"` 是 gcc 的安装路径,如果你安装的是其他版本的 gcc,需要相应地修改。
5. 创建 C 文件
在 VS Code 中创建一个新的文件,将以下代码复制到文件中:
```
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
```
6. 编译运行
在终端中进入到文件所在的目录,输入以下命令:
```
gcc-11 -o hello hello.c
./hello
```
输出结果应该为:
```
Hello, World!
```
阅读全文