vendredi 9 août 2019

Program 'main.exe' failed to run: The specified executable is not a valid application for this OS platform

“I’m setting up Visual Studio Code, and when I try to run my main.cpp (main.exe when executed), It is showing the error mentioned above.

From what I read about the issue online. I think it is because of wrong written in the c_cpp_properties.json file. But I can't figure out where to make the changes.

#Code:

#include <iostream>

int main()
{
    std::cout<<"Hello World"<<std::endl;
}

#c_cpp_properties.json :

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "compilerPath": "C:\\MinGW\\bin\\gcc.exe",
            "cStandard": "c11",
            "cppStandard": "c++17",
            "intelliSenseMode": "clang-x64",
            "browse": {
                "path": [
                    "${workspaceRoot}",
                    "C:\\MinGW\\lib\\gcc\\mingw32\\8.2.0\\include\\c++"
                ],
                "limitSymbolsToIncludedHeaders": true,
                "databaseFilename": ""
            }
        }
    ],
    "version": 4
}

Error Message:

Program 'main.exe' failed to run: The specified executable is not a valid application for this OS platform.At line:1 char:1 + .\main.exe+ ~~~~~~~~~~. + FullyQualifiedErrorId : NativeCommandFailed

Aucun commentaire:

Enregistrer un commentaire