mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-next: Update to 31.0.50-1.9663c95.
* gnu/packages/emacs.scm (emacs-next): Update to 31.0.50-1.9663c95. * gnu/packages/patches/emacs-next-disable-jit-compilation.patch: New file. * gnu/local.mk: Register new patch. Change-Id: I2b13ce4c2ef030d8d7911ca524576d5b81e5db73 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
2e53bea35b
commit
a2ba096675
3 changed files with 24 additions and 4 deletions
|
@ -0,0 +1,19 @@
|
|||
Index: emacs-29.2/src/comp.c
|
||||
===================================================================
|
||||
--- emacs-29.2.orig/src/comp.c
|
||||
+++ emacs-29.2/src/comp.c
|
||||
@@ -5648,8 +5648,12 @@ For internal use. */);
|
||||
doc: /* If non-nil, compile loaded .elc files asynchronously.
|
||||
|
||||
After compilation, each function definition is updated to use the
|
||||
-natively compiled one. */);
|
||||
- native_comp_jit_compilation = true;
|
||||
+natively compiled one. This variable is enabled by default upstream,
|
||||
+but disabled in Guix to better make use of precompiled packages.
|
||||
+Notably, Guix removes the hashes that prevent inadvertent shadowing
|
||||
+from the file names of compiled libraries in order to facilitate grafts.
|
||||
+Enable at your own risk! */);
|
||||
+ native_comp_jit_compilation = false;
|
||||
|
||||
DEFSYM (Qnative_comp_speed, "native-comp-speed");
|
||||
DEFSYM (Qnative_comp_debug, "native-comp-debug");
|
Loading…
Add table
Add a link
Reference in a new issue