forked from OSchip/llvm-project
14 lines
342 B
INI
14 lines
342 B
INI
|
import os
|
||
|
|
||
|
config.suffixes = ['.ll', '.mir', '.test', '.txt']
|
||
|
|
||
|
extract_section_path = os.path.join(config.llvm_src_root,
|
||
|
'utils', 'extract-section.py')
|
||
|
|
||
|
config.substitutions.append(('extract-section',
|
||
|
extract_section_path + ' --byte-indicator --hex-width=2'))
|
||
|
|
||
|
if not 'M68k' in config.root.targets:
|
||
|
config.unsupported = True
|
||
|
|