【发布时间】:2022-01-18 08:59:34
【问题描述】:
vscode在编译c程序时报错。错误信息如下。
Cannot build and debug because the active file is not a C or C++ source file.
The terminal process failed to launch (exit code: -1).
任务配置文件如下。
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
"/home/xxx/tmp/test/main.c"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
我在 /home/xxx/tmp/test 文件夹下有一个名为 main.c 的 c 文件,它是工作区文件夹。问题的原因可能是什么?
【问题讨论】: