mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Add Mips to the list of target architectures for the MCJIT tests.
Patch by Reed Kotler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158933 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2bbc9193b4
commit
43d2ff1171
@ -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']:
|
||||
|
Loading…
x
Reference in New Issue
Block a user