Как заставить VSCode игнорировать / usr / include, чтобы VSCode / intellisense не думал, что у меня есть доступ к обычной стандартной библиотеке?
Мой текущий файл "c_cpp_properties.json" выглядит так:
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/opt/intel/sgxsdk/include"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}