1. 程式人生 > >Mac osx下sublime text3配置C語言環境

Mac osx下sublime text3配置C語言環境

在網上找了很久mac下C的配置,結果多少有點問題,今天終於解決了

分享出來供大家參考

開啟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}"]
}
]
}

將這一段複製貼上,儲存成C.sublime-build。

再建立一個新的.c檔案,如helloworld.c,cmd+b編譯,shift+cmd+b執行,即可。