blob: 48af100698b6eebf14fd887f10c3f535a783ea21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import re
config.suffixes = ['.ll', '.c', '.cpp']
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
config.unsupported = True
# For now we don't test arm64-win32.
if re.search(r'cygwin|mingw32|win32', config.target_triple):
config.unsupported = True
|