From 965e2506b44e66bb7ecc0119755fd0ca76dab2e9 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 12 Sep 2023 11:09:03 -0600 Subject: [PATCH] [Emacs] Try more disables of native compilation --- dotfiles/emacs.d/init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 83529815..424f4f54 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -12,9 +12,11 @@ (load bootstrap-file nil 'nomessage)) (setq native-comp-deferred-compilation-deny-list nil) -(setq native-comp-always-compile nil) +(setq native-comp-always-compile t) (setq load-no-native t) +(setq no-native-compile t) (setq warning-minimum-level :emergency) +(setq straight-disable-native-compile t) ;; This is a workaround for an issue in emacs28 with symlinks. See https://github.com/radian-software/straight.el/issues/701 (defun my-patch-package-find-file-visit-truename (oldfun &rest r)