如何在emacs中指定make程序?

时间:2014-07-07 20:27:01

标签: emacs

Vim有makeprg变量。此变量采用程序名称,如果输入make,将执行该程序名称。 emacs中有类似内容吗?

感谢。

2 个答案:

答案 0 :(得分:1)

变量compile-command指定编译器程序,您可以根据需要自定义该程序。以下是M-x compile和家人的手册页。

答案 1 :(得分:1)

我在Emacs中不知道make命令,但有compile

Compile the program including the current buffer.  Default: run `make'.
Runs COMMAND, a shell command, in a separate process asynchronously
with output going to the buffer `*compilation*'.

compile运行的命令由变量compile-command定义,可以这样设置:

(setq compile-command "some command")

compile-command的默认值为"make -k "