2012-02-16 06:28:33 +00:00
|
|
|
config.suffixes = ['.ll', '.c', '.cpp']
|
2012-11-19 17:57:07 +00:00
|
|
|
|
|
|
|
def getRoot(config):
|
|
|
|
if not config.parent:
|
|
|
|
return config
|
|
|
|
return getRoot(config.parent)
|
|
|
|
|
|
|
|
root = getRoot(config)
|
|
|
|
|
|
|
|
if root.host_arch in ['PowerPC']:
|
|
|
|
config.unsupported = True
|
|
|
|
|