首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

用Sublime Text 三编译C源文件

2013-11-03 
用Sublime Text 3编译C源文件Tools-New Build System{shell_cmd: gcc \${file}\ -o \${file_path}/

用Sublime Text 3编译C源文件

Tools->New Build System

{"shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\" -std=c11 -O2 -Wall -lm --static","file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$","working_dir": "${file_path}","selector": "source.c, source.c++","variants":[{"name": "Run","shell_cmd": "gcc -std=c11 -O2 -Wall -lm --static \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""}]}

保存为GCC.sublime-build即可。

热点排行