| 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", | |
| ] | |
| ) |