From 05740ce9e18fd731318f6f3e18266f14031f3dbc Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sun, 18 Aug 2024 09:15:20 -0400 Subject: [PATCH] Add native-comp-jit-compilation --- early-init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/early-init.el b/early-init.el index 1de76be..0e0d893 100644 --- a/early-init.el +++ b/early-init.el @@ -189,7 +189,8 @@ (fboundp 'native-comp-available-p) (native-comp-available-p)) ;; Activate `native-compile' - (setq native-comp-deferred-compilation t + (setq native-comp-jit-compilation t + native-comp-deferred-compilation t ; Obsolete since Emacs 29.1 package-native-compile t) ;; Deactivate the `native-compile' feature if it is not available (setq features (delq 'native-compile features)))