Почему мой CompilerPath не работает, c_cpp_properties.jsonC++

Программы на C++. Форум разработчиков
Anonymous
Почему мой CompilerPath не работает, c_cpp_properties.json

Сообщение Anonymous »

Код: Выделить всё

> {
>   "configurations": [
>     {
>       "name": "Linux",
>       "includePath": ["${workspaceFolder}/**"],
>       "defines": [],
>       "compilerPath": "/usr/bin/gcc",
>       "cStandard": "c11",
>       "cppStandard": "c++17",
>       "intelliSenseMode": "clang-x64"
>     }
>   ],
>   "version": 4
> }
Кажется, мой путь компилятора не работает (/usr/bin/gcc), даже если он один. Кто -нибудь из вас, ребята, может помочь мне в этом? Спасибо.

Код: Выделить всё

{
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/**"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}



Подробнее здесь: https://stackoverflow.com/questions/796 ... rties-json

Вернуться в «C++»