Disable remote MCJIT on pre-v6 ARM

llvm-svn: 182235
This commit is contained in:
Renato Golin 2013-05-20 07:46:06 +00:00
parent 3469375e4f
commit 9e18922d67
1 changed files with 11 additions and 0 deletions

View 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