[2023/9/21 16:14:36] 无法使用 compilerPath“c:\Users\56518\Desktop\新建文件夹\main.c”解析配置。 请改用“F:\C语言资料\vscode mingw64\bin\gcc.exe”。
时间: 2023-10-03 18:09:08 浏览: 171
根据您提供的引用内容,您在使用VS Code时遇到了一个错误,错误消息是“无法使用compilerPath“c:\Users\56518\Desktop\新建文件夹\main.c”解析配置。请改用“F:\C语言资料\vscode mingw64\bin\gcc.exe”。这个错误通常是由于编译器路径配置不正确导致的。
为了解决这个问题,您需要在.vscode文件夹中的launch.json文件中更改compilerPath的路径。将原来的路径 “c:\Users\56518\Desktop\新建文件夹\main.c” 修改为“F:\C语言资料\vscode mingw64\bin\gcc.exe”。
修改后的launch.json文件应该如下所示:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "C Launch (GDB)",
"type": "cppdbg",
"request": "launch",
"targetArchitecture": "x86",
"program": "${workspaceRoot}/main",
"miDebuggerPath":"D:/TDM-GCC-64/bin/gdb64.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"externalConsole": true,
"preLaunchTask": "g",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
```
请确保保存并重新加载VS Code,然后再次尝试运行您的代码,这个错误应该就会被解决了。
阅读全文