macOS利用VSCode配置C语言开发环境

 

大体方法与macOS利用VSCode配置C++开发环境相同,只是配置task.json时不同,如下:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "myrsRun",
            "type": "shell",
            "command": "g++",
            "args": [
                "test.c"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }}
        }
    ]
}

 

你可能感兴趣的:(macOS利用VSCode配置C语言开发环境)