如何在Sublime Text 2,Windows 8中构建和运行c ++程序?

时间:2012-10-30 18:45:05

标签: c++ compiler-construction build-process sublimetext2

我使用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构建和运行简单程序需要做什么?

6 个答案:

答案 0 :(得分:6)

首先,在构建和运行之前,请确保保存您正在处理的文件,驱动器上的任何位置。

Sublime Text 2需要g ++,bash等才能编译。根据此页面上的说明,这些软件包需要安装在您的计算机上:

http://mjiang.com/mec/cs244/files/Installing%20c++_g++_on_Windows.pdf

答案 1 :(得分:4)

适用于WINDOWS:

如果您有Dev C ++(Bloodshed),那么,

打开 SUBLIME TEXT 2 并创建一个新文件来编写代码(通过Tools> Build System> C++将构建系统更改为c ++,因为 SublimeText2 没有附带{ {1}})

之后,将该文件保存到build-system for c文件夹中包含的bin文件夹,然后按Dev-Cpp

如果您的代码是正确的(没有错误),那么您将在同一目录中找到相应的文件(格式为ctrl+b),这将显示

  

Hello World!

请记住:SUBLIME TEXT 2是编辑,而不是编译器

答案 2 :(得分:4)

您可以使用我的工作C ++。用于Windows的sublime-build文件: https://gist.github.com/trietptm/4950038

答案 3 :(得分:1)

创建新的构建系统(工具 - &gt;构建系统 - &gt;新构建系统)

{
"windows":
{
"cmd": ["g++", "$file_name","-o", "${file_base_name}.exe", "-lm", "-Wall", "&","start", "${file_base_name}.exe"]
},
"selector": "source.c++",
"shell": true,
"working_dir": "${file_path}"
}

并将其保存为(name_you_can_provide).sublime-build并使用该构建系统。 :)

答案 4 :(得分:1)

(我假设您已经在计算机中安装了MingW。)

你需要去 偏好设置 - >浏览套餐 - &gt; C ++文件夹 - &gt; C ++。sublime-build; 将此 C ++。sublime build 文件带入sublime文本编辑器,现在粘贴此代码:

{ "cmd": ["g++", "$file", "-o", "$file_base_name"], "selector": "source.c++", "working_dir": "$file_path", "variants": [ { "name": "Run", "cmd": ["g++", "$file", "-o", "$file_base_name", "&&", "$file_path/$file_base_name"], "shell": true } ]
}

希望这会对你有所帮助。

答案 5 :(得分:-1)

您必须安装MinGW,然后将路径添加到MinGW到PATH变量。