mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Enable MCJIT tests on PowerPC.
Disable old JIT tests on PowerPC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168316 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9fb61cd15b
commit
948d9f743e
@ -8,12 +8,13 @@ def getRoot(config):
|
|||||||
root = getRoot(config)
|
root = getRoot(config)
|
||||||
|
|
||||||
targets = set(root.targets_to_build.split())
|
targets = set(root.targets_to_build.split())
|
||||||
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets):
|
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets) | \
|
||||||
|
('PowerPC' in targets):
|
||||||
config.unsupported = False
|
config.unsupported = False
|
||||||
else:
|
else:
|
||||||
config.unsupported = True
|
config.unsupported = True
|
||||||
|
|
||||||
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
|
if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
|
||||||
config.unsupported = True
|
config.unsupported = True
|
||||||
|
|
||||||
if root.host_os in ['Darwin']:
|
if root.host_os in ['Darwin']:
|
||||||
|
@ -1 +1,12 @@
|
|||||||
config.suffixes = ['.ll', '.c', '.cpp']
|
config.suffixes = ['.ll', '.c', '.cpp']
|
||||||
|
|
||||||
|
def getRoot(config):
|
||||||
|
if not config.parent:
|
||||||
|
return config
|
||||||
|
return getRoot(config.parent)
|
||||||
|
|
||||||
|
root = getRoot(config)
|
||||||
|
|
||||||
|
if root.host_arch in ['PowerPC']:
|
||||||
|
config.unsupported = True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user