VScode在没有找到exe的windows上编译C ++

时间:2016-12-12 14:57:03

标签: debugging compiler-errors g++ exe visual-studio-code

我想问一下如何从C ++文件调试一个简单的hello world输出,在启动文件我必须放入可执行文件但是我只创建了一个C ++文件,如何编译它,我已经尝试了一切,请帮助。

{
    "version": "0.1.0",
    "command": "g++",
    "isShellCommand": true,
    // compiles and links with debugger information
    "args": ["-g", "-o", "main.exe", "main.cpp"],
    // without debugger information
    // "args": ["-o", "hello.exe", "hello.cpp"],
    "showOutput": "always"
}

0 个答案:

没有答案