2012-04-14 13:54:10 +00:00
|
|
|
config.suffixes = ['.ll', '.c', '.cpp']
|
2012-12-02 13:10:19 +00:00
|
|
|
|
|
|
|
def getRoot(config):
|
|
|
|
if not config.parent:
|
|
|
|
return config
|
|
|
|
return getRoot(config.parent)
|
|
|
|
|
|
|
|
root = getRoot(config)
|
|
|
|
|
2013-06-10 20:36:52 +00:00
|
|
|
if root.host_arch in ['PowerPC', 'AArch64', 'SystemZ']:
|
2012-12-02 13:10:19 +00:00
|
|
|
config.unsupported = True
|
|
|
|
|
2013-04-08 18:41:23 +00:00
|
|
|
if 'hexagon' in root.target_triple:
|
|
|
|
config.unsupported = True
|