如何在Sublime Text 2中运行C程序

时间:2012-08-10 04:14:06

标签: c sublimetext2

在这个问题中,我学会了如何使用Sublime Text 2编译C程序:

How to compile and run a simple C program with Sublime Text 2?

如何在Sublime Text 2中运行程序?

1 个答案:

答案 0 :(得分:3)

编辑构建文件以添加运行该程序的命令。您可以通过点击 ctrl + 在ST控制台中查看程序的输出。

    {
      "cmd" : ["gcc", "$file_name", "-o", "${file_base_name}.exe", "&&", "${file_base_name}.exe"],
      "selector" : "source.c",
      "shell" : true,
      "working_dir" : "$file_path"
    }

作为替代方案,您可以创建一个shell脚本或Makefile来编译和运行该文件,然后从ST构建命令调用脚本或make。