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