1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Add Mips to the list of target architectures for the MCJIT tests.

Patch by Reed Kotler.

llvm-svn: 158933
This commit is contained in:
Akira Hatanaka 2012-06-21 20:23:32 +00:00
parent bc9be7c0e5
commit 0ce3a3b090

View File

@ -8,12 +8,12 @@ def getRoot(config):
root = getRoot(config)
targets = set(root.targets_to_build.split())
if ('X86' in targets) | ('ARM' in targets):
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets):
config.unsupported = False
else:
config.unsupported = True
if root.host_arch not in ['x86', 'x86_64', 'ARM']:
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
config.unsupported = True
if root.host_os in ['Win32', 'Cygwin', 'MingW', 'Windows', 'Darwin']: