sublime text在linux下一键编译c和c++程序的配置文件

能实现直接双击出错信息定位到代码的功能,已经加入了-lm -Wall选项,我把c和c++分开来了。运行完之后会出现Press any key to continue...需要按回车键关闭窗口
 
1)对于kde桌面环境
C.sublime-build:
{
    "shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\" -lm -Wall",
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c",
 
    "variants":
    [
        {
            "name": "Run",
            "shell_cmd": "konsole -e bash -c \"\"${file_path}/${file_base_name}\" ; read -p 'Press any key to continue...'\""
        }
    ]
}
 
 
 
C++.sublime-build:
{
    "shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" -lm -Wall",
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c, source.c++",
 
    "variants":
    [
        {
            "name": "Run",
            "shell_cmd": "konsole -e bash -c \"\"${file_path}/${file_base_name}\" ; read -p 'Press any key to continue...'\""
        }
    ]
}
 
 
 
2)对于gnome桌面环境:
C.sublime-build:
{
    "shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\" -lm -Wall",
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c",
 
    "variants":
    [
        {
            "name": "Run",
            "shell_cmd": "x-terminal-emulator -e bash -c \"\"${file_path}/${file_base_name}\" ; read -p 'Press any key to continue...'\""
        }
    ]
}
 
 
 
C++.sublime-build:
{
    "shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" -lm -Wall",
    "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
    "working_dir": "${file_path}",
    "selector": "source.c, source.c++",
 
    "variants":
    [
        {
            "name": "Run",
            "shell_cmd": "x-terminal-emulator -e bash -c \"\"${file_path}/${file_base_name}\" ; read -p 'Press any key to continue...'\""
        }
    ]
}





posted @   cmicat  阅读(2632)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 提示词工程——AI应用必不可少的技术
· 地球OL攻略 —— 某应届生求职总结
· 字符编码:从基础到乱码解决
· SpringCloud带你走进微服务的世界
点击右上角即可分享
微信分享提示