2014-07-07 33 views

回答

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 "

相关问题