diff options
| author | Andrea Corallo | 2023-10-19 18:10:25 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2023-11-09 11:06:06 +0100 |
| commit | e6a955d2426875188f4ffdbc90d4861b917fd7bd (patch) | |
| tree | 46bf94e1e5458efb5eb165d53fbebe7949d2f2ca /src | |
| parent | 5416896d608b68a969977f91b8de1e613300421d (diff) | |
| download | emacs-e6a955d2426875188f4ffdbc90d4861b917fd7bd.tar.gz emacs-e6a955d2426875188f4ffdbc90d4861b917fd7bd.zip | |
comp: split code in comp-run.el
* lisp/emacs-lisp/comp-run.el : New file.
(comp-run)
(native-comp-jit-compilation-deny-list)
(native-comp-async-jobs-number)
(native-comp-async-report-warnings-errors)
(native-comp-always-compile)
(native-comp-async-cu-done-functions)
(native-comp-async-all-done-hook)
(native-comp-async-env-modifier-form)
(native-comp-async-query-on-exit, native-comp-verbose)
(comp-log-buffer-name, comp-async-buffer-name, comp-no-spawn)
(comp-async-compilations, native-comp-limple-mode)
(comp-ensure-native-compiler, native-compile-async-skip-p)
(comp-files-queue, comp-async-compilations, comp-async-runnings)
(comp-num-cpus, comp-effective-async-max-jobs)
(comp-last-scanned-async-output)
(comp-accept-and-process-async-output, comp-valid-source-re)
(comp-run-async-workers, native--compile-async)
(native-compile-async): Move these definitions here.
* lisp/Makefile.in (COMPILE_FIRST): Update.
* src/Makefile.in (elnlisp): Likewise.
* admin/MAINTAINERS: Likewise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index b14681f2537..963a0a14f4f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -943,6 +943,7 @@ elnlisp := \ | |||
| 943 | international/charscript.eln \ | 943 | international/charscript.eln \ |
| 944 | emacs-lisp/comp.eln \ | 944 | emacs-lisp/comp.eln \ |
| 945 | emacs-lisp/comp-cstr.eln \ | 945 | emacs-lisp/comp-cstr.eln \ |
| 946 | emacs-lisp/comp-run.eln \ | ||
| 946 | international/emoji-zwj.eln | 947 | international/emoji-zwj.eln |
| 947 | elnlisp := $(addprefix ${lispsource}/,${elnlisp}) $(lisp:.elc=.eln) | 948 | elnlisp := $(addprefix ${lispsource}/,${elnlisp}) $(lisp:.elc=.eln) |
| 948 | 949 | ||