]> git.eshelyaron.com Git - emacs.git/commitdiff
* Add new customize `comp-async-env-modifier-form' (Bug#40838)
authorAndrea Corallo <akrl@sdf.org>
Mon, 18 May 2020 19:45:29 +0000 (20:45 +0100)
committerAndrea Corallo <akrl@sdf.org>
Mon, 18 May 2020 20:04:36 +0000 (21:04 +0100)
* lisp/emacs-lisp/comp.el (comp-async-env-modifier-form): New
customize.
(comp-run-async-workers): Make use of `comp-async-env-modifier-form'.

lisp/emacs-lisp/comp.el

index cd1e4dbd92e75530742a683fb69389e79828afa3..f23a0b29afc13ce387add4ba33ee9228a9856175 100644 (file)
@@ -133,6 +133,12 @@ finishes compiling all input files."
   :type 'hook
   :group 'comp)
 
+(defcustom comp-async-env-modifier-form nil
+  "Form to be evaluated by each asyncronous compilation worker
+before compilation.  Usable to modify the compiler environment."
+  :type 'list
+  :group 'comp)
+
 (defvar comp-dry-run nil
   "When non nil run everything but the C back-end.")
 
@@ -2324,6 +2330,7 @@ display a message."
                                   comp-debug ,comp-debug
                                   comp-verbose ,comp-verbose
                                   load-path ',load-path)
+                            ,comp-async-env-modifier-form
                             (message "Compiling %s..." ,source-file)
                             (native-compile ,source-file ,(and load t))))
                    (source-file1 source-file) ;; Make the closure works :/