1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Use AArch64 instead of now removed ARM64 in test configs

llvm-svn: 210229
This commit is contained in:
Alexey Samsonov 2014-06-05 00:25:30 +00:00
parent 2f413e8bd2
commit fd0b788d88
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
if not 'AArch64' in targets:
config.unsupported = True

View File

@ -1,4 +1,4 @@
if config.root.host_arch in ['PowerPC', 'AArch64', 'ARM64', 'SystemZ']:
if config.root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
config.unsupported = True
# CMake and autoconf diverge in naming or host_arch

View File

@ -1,6 +1,6 @@
config.suffixes = ['.ll']
targets = set(config.root.targets_to_build.split())
if not 'ARM64' in targets:
if not 'AArch64' in targets:
config.unsupported = True