From 0017e46f90eaa7652ad3d5768dd6cae65dd16255 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 2 Sep 2023 15:25:01 -0600 Subject: [PATCH] [Emacs] Disable native compilation for now --- dotfiles/emacs.d/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 01692a62..5c0103d2 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -12,6 +12,8 @@ (load bootstrap-file nil 'nomessage)) (setq native-comp-deferred-compilation-deny-list nil) +(setq native-comp-always-compile t) +(setq load-no-native t) (setq warning-minimum-level :emergency) ;; This is a workaround for an issue in emacs28 with symlinks. See https://github.com/radian-software/straight.el/issues/701