sublime text2下配置c++
2020-11-27 22:12
标签:blog ext 2014 http 文件 com 今天安装了sublime text2,真是编辑神器,不再用notepad了。 笔记本上没有c++运行环境,用编辑器既轻巧,又方便,VS太臃肿了。 要在sublime text2 下运行c++程序,需要安装dev
c++编译器。 注意,这两个软件最好在官网上下载。 从其他网上下载的不全。。。 然后,就是配置c++的环境变量, 比如,我的是:F:\Dev-Cpp\MinGW64\bin 接着在 运行里输入命令gcc或g++
出现上图,说明c++编译环境配置好了,接着在sublime里写c++代码,但是当编译运行时出现错误, 这时打开sublime-tools-build system-new build
system 输入下面的文件: {
"cmd": ["g++", "${file}", "-o",
"${file_path}/${file_base_name}"],
"variants":
保存后缀名为.sublime-build的文件,注意这个是在data文件下,如果没有这个文件,说明下载的sublime不完整。 重新编译运行文件,现在就可以了。 sublime text2下配置c++,搜素材,soscw.com sublime text2下配置c++ 标签:blog ext 2014 http 文件 com 原文地址:http://www.cnblogs.com/xshang/p/3703736.html
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir":
"${file_path}",
"selector": "source.c, source.c++",
[
{
"name":
"Run",
"cmd" :
["${file_path}/${file_base_name}"]
}
]
}
文章标题:sublime text2下配置c++
文章链接:http://soscw.com/index.php/essay/22974.html