Disable remote MCJIT on pre-v6 ARM

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Renato Golin 2013-05-20 07:46:06 +00:00
parent a4de3f2c85
commit 3a408fa878

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