码迷,mamicode.com
首页 > 其他好文 > 详细

sublime 编译运行C程序

时间:2016-08-11 22:17:34      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

{
	"cmd": ["gcc", "${file}", "-o","${file_path}/${file_base_name}"],
	"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$",
	"working_dir": "${file_path}",
	"encoding":"cp936",
	"selector": "source.c",
	"variants":
	[
		{
			"name": "Run",
			"cmd": ["cmd","/C","start","cmd","/c", "${file_path}/${file_base_name}.exe &pause"]
		}
	]
}

  环境变量添加gcc路径

linux

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

  

sublime 编译运行C程序

标签:

原文地址:http://www.cnblogs.com/yangxunwu1992/p/5762715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!