我如何在 Sublime 中使用 MinGW-w64?

How do I use MinGW-w64 with Sublime?

我正在尝试用 C++ 编写代码,我需要一个编译器。我得到了 Sublime 3 和 MinGW-64,并将 MinGW-w64.sublime-build 放入包中。当我按 ctrl+shift+b 时,控制台会给我这个错误: 'g++' is not recognized as an internal or external command, operable program or batch file. 'C:\Users\Rick\Desktop/test.exe' is not recognized as an internal or external command, operable program or batch file. [Finished in 0.1s with exit code 1] [cmd: ['g++', '-o', 'C:\Users\Rick\Desktop/test.exe', '-static-libgcc', '-static-libstdc++', '*.cpp', '&', 'C:\Users\Rick\Desktop/test.exe']] [dir: C:\Users\Rick\Desktop] [path: C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Skype\Phone\;C:\Users\Rick\AppData\Local\Microsoft\WindowsApps;]

这是我的代码:

#include <string>
#include <iostream> 
using namespace std;    

    int main()      
    {    
        std::cout << "Hello World! " << std::end1;    
        return 0;      
    }

将包含 g++.exe (.../bin) 的文件夹添加到您的 PATH

您可以使用以下 (Windows) 命令执行此操作:

setx path "%path%;FOLDER_CONTAINING_G++"