配置文件

Windows下Sublime配置C语言编译环境并去除Dos窗口

2019-08-01  本文已影响4人  __倔强的贝吉塔

网上Sublime配置C语言编译环境的教程很多,一般都没有什么大问题,大体流程就是拷贝mingw到C盘根目录,然后添加环境变量,最后新建编译环境就可以了。
但是我试了许多教程,不是在Dos窗口下运行,就是Dos窗口一闪而过。后来我发现只要加上一句命令:"shell":true就可以去除Dos窗口。下面附上C语言配置的json代码:

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

如果需要交互,选择RunInCommand,此时会在Dos窗口上运行;如果不需要交互,选择Run,此时会在Sublime控制台运行。

上一篇下一篇

猜你喜欢

热点阅读