blob: 2608e139e9083667f1928abc97ecd77e17aead79 (
plain)
1
2
3
4
5
6
7
8
|
config.suffixes = ['.ll', '.c', '.cpp']
targets = set(config.root.targets_to_build.split())
if not 'PowerPC' in targets:
config.unsupported = True
if not config.root.enable_assertions:
config.unsupported = True
|