I am a novice programmer. I have installed Codeblocks with mingw (dont really know what that means), chose default compiler, and could build and run fine.
I installed Sublime Text 2, copy pasted hello world program:
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
I then build, get error message:
[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]
What do I need to do in order to run a simple program using Sublime Text 2?
bashandg++are typically unix programs (I'm not 100% sure if MingW calls its versiongcc/g++. So it seems that you will need some configuring to make it work on windows. – Evan Teran Oct 30 '12 at 19:01C:\MinGw\msys\1.0\bin(wherebash.exeresides, if it's true for your installation) to system path (Control Panel -> System and Security -> System -> Advanced system settings -> Environmental Variables and add the bash path to %PATH% in System variables. – EarlGray Oct 30 '12 at 20:43