We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With recent versions of tree-sitter, make ends with the following error:
make
src/parser.c:1:10: fatal error: tree_sitter/parser.h: No such file or directory 1 | #include <tree_sitter/parser.h> | ^~~~~~~~~~~~~~~~~~~~~~ compilation terminated. make: *** [<builtin>: src/parser.o] Error 1
This appears to do the trick:
rm Makefile tree-sitter generate sed -i 's/^VERSION := 0\.0\.1$/VERSION := 0.1.2/' Makefile
The text was updated successfully, but these errors were encountered:
Fixed! Thanks for the report.
Sorry, something went wrong.
Thanks, but now it fails with:
install: cannot stat 'bindings/c/tree-sitter-dockerfile.h': No such file or directory make: *** [Makefile:91: install] Error 1
This file is created by tree-sitter generate, but this is obscured by the following .gitignore rule:
tree-sitter generate
.gitignore
/bindings/c/*.h
No branches or pull requests
With recent versions of tree-sitter,
make
ends with the following error:This appears to do the trick:
rm Makefile tree-sitter generate sed -i 's/^VERSION := 0\.0\.1$/VERSION := 0.1.2/' Makefile
The text was updated successfully, but these errors were encountered: