Hi there. I’m new to Sublime Text 2. I want to edit and compile some C++ files, but it fails.
When I opening .cpp file and press “Build” (or Ctrl+B), there are message “Building” appearing for 3-5 seconds. But nothing else happens. Same thing with “Run” command.
Currently my Build System is
[code]{
“cmd”: “C:\MinGW\bin\mingw32-g++.exe”, “-o”, “$file_base_name”, “$file”],
"variants":
{
"cmd": "start", "cmd", "/k", "$file_base_name"],
"shell": true,
"name": "Run"
}
]
}[/code]
But I tried many other configurations and they all failed same way.
May be the reason is I had already installed MinGW in ProgramFiles for DevCpp? Then which of them and how I need to delete?