From e770021d499364a6168b2e380de08e1c5ebaaf25 Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Wed, 24 May 2023 17:28:00 +0200 Subject: [PATCH] Add instructions to compile from source in the readme --- README.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.org b/README.org index 44c3a1a..5fd6df5 100644 --- a/README.org +++ b/README.org @@ -1,2 +1,11 @@ * Emacs config +** Compiling Emacs from source + +#+begin_src sh +./autogen.sh +./configure --prefix=$HOME/.local --with-native-compilation=aot --with-modules --with-pgtk --with-json --with-rsvg CFLAGS='-O3 -march=native -mtune=native' +make -j +src/emacs -Q +make install +#+end_src