16 lines
351 B
Org Mode
16 lines
351 B
Org Mode
* Emacs config
|
|
|
|
** Compiling Emacs from source
|
|
|
|
#+begin_src sh
|
|
./autogen.sh
|
|
./configure --prefix=$HOME/.local \
|
|
--with-native-compilation=aot \
|
|
--with-modules --with-tree-sitter --with-mailutils \
|
|
--with-pgtk --with-json --with-rsvg \
|
|
CFLAGS='-O3 -march=native -mtune=native'
|
|
make -j
|
|
make check
|
|
src/emacs -Q
|
|
make install
|
|
#+end_src
|