Variable: native-comp-bootstrap-deny-list
native-comp-bootstrap-deny-list is a customizable variable defined in
comp.el.gz.
Value
nil
Documentation
List of regexps to exclude files from native compilation during bootstrap.
Files whose names match any regexp are excluded from native compilation during bootstrap.
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defcustom native-comp-bootstrap-deny-list
'()
"List of regexps to exclude files from native compilation during bootstrap.
Files whose names match any regexp are excluded from native compilation
during bootstrap."
:type '(repeat regexp)
:version "28.1")