Add tree-sitter to compilation instructions

This commit is contained in:
Dimitri Lozeve 2023-05-26 13:54:11 +02:00
parent e770021d49
commit e3a19e236c
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View file

@ -20,6 +20,7 @@ snippets/
straight
tramp
transient/
tree-sitter/
url
custom.el

View file

@ -4,8 +4,13 @@
#+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'
./configure --prefix=$HOME/.local \
--with-native-compilation=aot \
--with-modules --with-tree-sitter \
--with-pgtk --with-json --with-rsvg \
CFLAGS='-O3 -march=native -mtune=native'
make -j
make check
src/emacs -Q
make install
#+end_src