【mac】配置sublime开发C
1、sublime text3,Tools/Build System/New Build system创建一个新配置文件。
{
"cmd": ["gcc", "${file}", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"cmd" : ["${file_path}/${file_base_name}"]
}
]
}
2、将这一段复制粘贴,保存成C.sublime-build。
再创建一个新的.c文件,如helloworld.c,cmd+b编译,shift+cmd+b运行,即可。
附:直接使用终端写C
1、创建hello.c文件;
2、gcc hello.c编译;
3、编译完成后,会生成a.out文件,为可执行文件,./a.out 即可运行。