选择Tools->Build System->New Build System.
新打开的文件下添加如下代码,并保存为C.sublime-build.

点击(此处)折叠或打开

  1. "cmd": ["gcc", "${file}", "-o", "${file_path}/${file_base_name}"],
  2.   "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
  3.   "working_dir": "${file_path}",
  4.   "selector": "source.c",

  5.   "variants":
  6.   [
  7.     {
  8.       "name": "Run",
  9.       "cmd": ["bash", "-c", "gcc '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}'"]
  10.     }
  11.   ]关于在mac环境下配置sublime text3 C语言环境-LMLPHP
  12. 在编写程序时记得选择C语言选项如图
  13. 关于在mac环境下配置sublime text3 C语言环境-LMLPHP
09-06 00:54