2014-03-30 13:01:17 +08:00
|
|
|
import re
|
|
|
|
|
2014-05-13 03:57:31 +08:00
|
|
|
config.suffixes = ['.ll']
|
2014-03-29 18:18:08 +08:00
|
|
|
|
2014-06-10 06:42:55 +08:00
|
|
|
if not 'AArch64' in config.root.targets:
|
2014-03-29 18:18:08 +08:00
|
|
|
config.unsupported = True
|
|
|
|
|
2014-03-30 13:01:17 +08:00
|
|
|
# For now we don't test arm64-win32.
|
2015-04-25 01:14:16 +08:00
|
|
|
if re.search(r'cygwin|mingw32|win32|windows-gnu|windows-msvc', config.target_triple):
|
2014-03-30 13:01:17 +08:00
|
|
|
config.unsupported = True
|