brintos

brintos / llvm-project-archived public Read only

0
0
Text · 402 B · bc630db Raw
17 lines · plain
1import os2 3config.suffixes = [".ll", ".mir", ".test", ".txt"]4 5extract_section_path = os.path.join(config.llvm_src_root, "utils", "extract-section.py")6 7config.substitutions.append(8    (9        "extract-section",10        "'%s' %s %s"11        % (config.python_executable, extract_section_path, "--bits-endian little"),12    )13)14 15if not "LoongArch" in config.root.targets:16    config.unsupported = True17