我最近安装了Visual Studio Code并添加了C / C ++扩展。我正在尝试使用Visual Studio Code处理用C ++编写的项目,但我收到的错误是读取"包含在browse.path中找不到的文件"对于诸如" stdlib.h"," stdarg.h"," stdio.h"," iomanip","等文件。 sstream"和" math.h"。我觉得C / C ++扩展可能会被破坏,因为其中所有六个都是C和C ++的内置部分。
答案 0 :(得分:1)
您必须创建c_cpp_properties.json
(使用 Ctrl + Shift + P 和C/Cpp: Edit Configurations
命令)。您还必须安装MinGW。
将包含路径添加为:
{
"configurations": [
{
"name": "Win32",
"includePath": [
"path-to-your/MinGW/lib/gcc/mingw32/4.8.1/include/c++"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
}
}
]
}