1import os 2 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 % ( 12 config.python_executable, 13 extract_section_path, 14 "--byte-indicator --hex-width=2", 15 ), 16 ) 17) 18 19if not "M68k" in config.root.targets: 20 config.unsupported = True 21