File size: 437 Bytes
9db41d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import os
from tree_sitter import Language
# os.environ["CFLAGS"] = "-fPIC"
# os.environ["LDFLAGS"] = "-lstdc++"
Language.build_library(
"build/my-languages.so",
[
"grammars/tree-sitter-python",
"grammars/tree-sitter-c",
"grammars/tree-sitter-cpp",
"grammars/tree-sitter-java",
"grammars/tree-sitter-go",
"grammars/tree-sitter-rust",
"grammars/tree-sitter-julia",
]
) |