一、sublime text3,Tools/Build System/New Build system建立一個新配置文件。c++
{
"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}"]
}
]
}ui
二、將這一段複製粘貼,保存成C.sublime-build。cmd
再建立一個新的.c文件,如helloworld.c,cmd+b編譯,shift+cmd+b運行,便可。編譯
附:直接使用終端寫Cgcc
一、建立hello.c文件;配置
二、gcc hello.c編譯;file
三、編譯完成後,會生成a.out文件,爲可執行文件,./a.out 便可運行。select