From e3a19e236c95d4975ac0de754b1687ca63273dba Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Fri, 26 May 2023 13:54:11 +0200 Subject: [PATCH] Add tree-sitter to compilation instructions --- .gitignore | 1 + README.org | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 188561f..f7fc98c 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ snippets/ straight tramp transient/ +tree-sitter/ url custom.el diff --git a/README.org b/README.org index 5fd6df5..c3cc8db 100644 --- a/README.org +++ b/README.org @@ -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