0

在 Visual Studio Code 1.18.1 中,我有一个构建任务:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Build LedaAP",
            "type": "shell",
            "command": "c:/WindRiver/workbench-4/wrtool.bat -data c:/WindRiver/workspace_BR_SW_BFHW prj build LedaAP",
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        }
}

构建输出采用 gcc 样式。目前,所有文本均以黑色显示。如何将终端配置为以红色(或其他突出显示)显示错误?

4

0 回答 0