我使用 mingw 安装了 Codeblocks,选择了默认编译器,并且可以构建和运行一个简单的 hello 程序而不会出错。
我安装了 Sublime Text 2,复制粘贴了相同的 hello world 程序:
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
构建后,我收到错误消息:
[Error 2] The system cannot find the file specified
[cmd: [u'bash', u'-c', u"g++ '' -o '/' && '/'"]]
[dir: C:\Windows\system32]
[path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\]
[Finished]
为了使用 Sublime Text 2 构建和运行一个简单的程序,我需要做什么?