0

有时我希望将构建目录与源目录分开(例如,我使用安装到多个不同构建环境的相同源 NFS)。在此配置中,我无法使用 flymake,因为它找不到 Makefile。谁能推荐一个让flymake找到正确的构建目录并运行make -C check-syntax的好方法?我觉得这一定是一个常见问题,但谷歌在这里让我失望了。

4

1 回答 1

0

为了记录,我最终这样做了(欢迎改进):

(defadvice flymake-find-buildfile
  (around advice-find-makefile-separate-obj-dir
          activate compile)
  "Look for buildfile in a separate build directory"
  (let* ((source-dir (ad-get-arg 1))
     (bld-dir (ac-build-dir source-dir)))
    (ad-set-arg 1 bld-dir)
    ad-do-it))

(defun ac-find-configure (source-dir)
  (locate-dominating-file source-dir "configure"))

(defvar project-build-root nil
  "top build directory of the project")

(defun ac-build-dir (source-dir)
  "find the build directory for the given source directory"
  (condition-case nil
      (let* ((topdir (ac-find-configure source-dir))
         (subdir (file-relative-name (file-name-directory source-dir) topdir))
         (blddir (concat (file-name-as-directory project-build-root) subdir)))
        blddir)
    (error source-dir)))

并设置project-build-root到我的顶级源目录中的构建目录.dir-locals.el

于 2013-06-12T19:41:36.520 回答