我之前一直用vs作为c/c++的学习环境,现在由于vs已经删除,就想用mingw+sublime进行学习我按照网上的教程,安装了mingw和TheGNUCompilesuite,并对sublime进行了buildsystem的配置,配置如下,这一段我是复制了网上的配置文件的{"cmd":["g++","${file}","-o","${file_path}/${file_base_name}"],"file_regex":"^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$","working_dir":"${file_path}","selector":"source.c,source.c++","encoding":"cp936","shell":true,"variants":[{"name":"Run",//"cmd":["CMD","/U","/C","g++${file}-o${file_base_name}&&${file_base_name}"]"cmd":["start","${file_path}/${file_base_name}.exe"]}]}以下是我的测试代码#includeusingnamespacestd;intmain(intargc,charconst*argv[]){cout
2 回答
回首忆惘然
TA贡献1847条经验 获得超11个赞
编译指令要相应改变。第二行:"cmd":["g++","${file}","-o","${file_path}/${file_base_name}.exe"],
添加回答
举报
0/150
提交
取消