Last active
March 11, 2024 08:22
-
-
Save jasonm23/8f2a2491d4f9a51672f7ef1fd028bee1 to your computer and use it in GitHub Desktop.
Emacs v29 install from source on Ubuntu/Mint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt build-dep emacs | |
sudo apt install libgnutls28-dev \ | |
libgtk-3-dev libwebkit2gtk-4.1-dev gnutls \ | |
libgccjit0 libgccjit-10-dev libjansson4 libjansson-dev \ | |
gnutls-bin libtree-sitter-dev gcc-10 imagemagick libmagick++-dev \ | |
libwebp-dev webp libxft-dev libxft2 | |
export CC=/usr/bin/gcc-10 && export CXX=/usr/bin/gcc-10 && ./autogen.sh && ./configure --with-native-compilation=aot && \ | |
make -j$(proc) && / | |
sudo make install | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment