1.MinGW下载
2.设置MinGW环境变量
- Path C:\MinGW\bin
3.在sublime工具栏中,选择“工具“->“编译系统“->“新建编译系统“,会打开文件名称为“Untitled.sublime-build“文件。
{ "shell_cmd": "g++ -Wall \"$file\" -o \"$file_base_name\"", "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$", "working_dir": "${file_path}", "encoding":"gbk", "selector": "source.c++,source.c", "variants": [ { "name": "Run", "shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" && start cmd /c \"\"${file_path}/${file_base_name}\" & pause\"" } ] }
对其进行编辑,加入下面的代码,保存为“myC.sublime-build“,路径为默认路径就可以了。