summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-07-12 13:12:31 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-07-12 13:12:57 -0400
commitcd7dd6322445cd3126c4e5c736f583b17b0e2337 (patch)
tree7d41d1df73b4ad3e8a626bea82aef5e98efd25d5
parentc032244a8a87cefdedf2d25c9b1f1d2b578d613a (diff)
downloademacs.d-cd7dd6322445cd3126c4e5c736f583b17b0e2337.tar.gz
add native-compile-target-directory to native-comp-eln-load-path
-rw-r--r--early-init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el
index da48e00..30e8037 100644
--- a/early-init.el
+++ b/early-init.el
@@ -1,2 +1,4 @@
(setq native-comp-async-jobs-number (string-to-number (shell-command-to-string "nproc"))
- native-compile-target-directory (file-name-concat (getenv "HOME") ".cache/emacs-native-comp"))
+ native-compile-target-directory (file-name-concat (getenv "HOME") ".cache/emacs-native-comp")
+ native-comp-eln-load-path (cons native-compile-target-directory native-comp-eln-load-path)
+ gc-cons-threshold (* 64 (expt 1024 2)))