Archit Gupta
Archit Gupta
Ok so its definitely https://github.com/emacs-mirror/emacs/commit/ea9831bb3cb4878273f6f848051c9b8c3c76d5f1. In particular the second hunk. Current tip of master works fine with that hunk reverted. However even without that revert, running emacs without emacsWithPackages, and...
The build line that hits the error seems to be https://github.com/NixOS/nixpkgs/blob/b75b059c747da4e2cd213c23895f49db94b57290/pkgs/build-support/emacs/melpa.nix#L82-L86
For now, I'm patching emacs as seen here: https://github.com/accelbread/config-flake/commit/8e5e3add3eb23a07866b1704da7df5536c14634b Still don't have a root cause, but likely wont have time to investigate further for a bit. If someone else is...
Yes, packages successfully native compile when using `package.el` and calling `package-install` with `package-native-compile` enabled.
@Vonfry What CPU do you have? Maybe that can help narrow it down.
The cpu I am having the issue on is a 5950x. lscpu output: ``` Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Address sizes: 48 bits physical, 48 bits virtual Byte Order:...
Might be related to core count. Tried building with `--cores 1` and it works. Works: ```sh nix-collect-garbage nix build github:nix-community/emacs-overlay#emacsPgtk.pkgs.emacs --no-link --cores 1 nix build github:nix-community/emacs-overlay#emacsPgtk.pkgs.dash --no-link ``` Fails: ```sh...
So since it might be a core count thing, and I have 32 cores, I've tried building with all the values of the `--cores` flag from 1 to 32. The...
I ran into same issue. Removing `'("j" . "H-j")` and `'("k" . "H-k")` fixed it for me.