sublime运行出现问题解决

点击工具 == 》 编译系统 == 》新建编译系统

输入一下内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"encoding": "utf-8",
"working_dir": "$file_path",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \"$file_name\" -o \"$file_base_name\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.c++",

"variants":
[
{
"name": "Run",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \"$file\" -o \"$file_base_name\" && start cmd /c \"\"${file_path}/${file_base_name}\" & pause\""
}
]
}

命名为G++.sublime-build,后缀不要改。

然后点击工具 ,选择编译系统中自己刚刚新建的那个系统,重新运行即可。