1
0
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:
Renato Golin 2013-05-20 07:46:06 +00:00
parent de1f36eea4
commit 4bb213831c

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