Невозможно интегрировать компилятор C ++ в VSC - PullRequest
2 голосов
/ 07 июля 2019

Всякий раз, когда я использую терминал в VSC, я не могу запустить код, но когда я использую cmd вне VSC, он работает

Я попытался отредактировать свой c_cpp_properties.json

{
"configurations": [
    {
        "name": "Win32",
        "includePath": [
            "${workspaceFolder}/**"
        ],
        "defines": [
            "_DEBUG",
            "UNICODE",
            "_UNICODE"
        ],
        "intelliSenseMode": "msvc-x64",
        "browse": {
            "path": [
               "${workspaceRoot}",
               "C:\\MinGW\\lib\\gcc\\mingw32\\6.3.0\\include\\c++"
            ], 
                "limitSymbolsToIncludedHeaders": true,
                "databaseFilename": ""
        }

       }
   ],
     "version": 4
 }

Сообщение об ошибке:

g++ : The term 'g++' is not recognized as the name of a cmdlet, function, script file, or operable program. Check 
the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ g++ primary.cpp
+ ~~~
    + CategoryInfo          : ObjectNotFound: (g++:String) [],     CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...