mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(native-comp): reduce warning by ignoring specific files which always fail to native-compile
This commit is contained in:
@@ -9,6 +9,13 @@
|
||||
;; Native-Comp
|
||||
(setq comp-speed 2)
|
||||
|
||||
(setq comp-deferred-compilation-deny-list
|
||||
'("\\(?:[/\\\\]\\.dir-locals\\.el$\\)"
|
||||
;; Don't native-compile *-authloads.el files as they all seem to produce
|
||||
;; errors during native-compile.
|
||||
"\\(?:[^z-a]*-autoloads\\.el$\\)"
|
||||
"\\(?:helm[/\\\\]helm-pkg\\.el$\\)"))
|
||||
|
||||
(when (boundp 'comp-eln-load-path)
|
||||
(let ((eln-cache-dir (expand-file-name "cache/eln-cache/"
|
||||
user-emacs-directory))
|
||||
|
||||
Reference in New Issue
Block a user