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