mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Disable remote MCJIT on pre-v6 ARM
llvm-svn: 182235
This commit is contained in:
parent
de1f36eea4
commit
4bb213831c
11
test/ExecutionEngine/MCJIT/remote/lit.local.cfg
Normal file
11
test/ExecutionEngine/MCJIT/remote/lit.local.cfg
Normal file
@ -0,0 +1,11 @@
|
||||
config.suffixes = ['.ll', '.c', '.cpp']
|
||||
|
||||
def getRoot(config):
|
||||
if not config.parent:
|
||||
return config
|
||||
return getRoot(config.parent)
|
||||
|
||||
root = getRoot(config)
|
||||
|
||||
if 'armv4' in root.target_triple or 'armv5' in root.target_triple:
|
||||
config.unsupported = True
|
Loading…
Reference in New Issue
Block a user