DouDou
Upload data2/step22/build.py with huggingface_hub
9db41d1 verified
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",
]
)