2012-05-18 05:07:47 +08:00
|
|
|
config.suffixes = ['.ll', '.c', '.cpp']
|
|
|
|
|
|
|
|
def getRoot(config):
|
|
|
|
if not config.parent:
|
|
|
|
return config
|
|
|
|
return getRoot(config.parent)
|
|
|
|
|
|
|
|
root = getRoot(config)
|
|
|
|
|
|
|
|
targets = set(root.targets_to_build.split())
|
2012-11-20 01:57:07 +08:00
|
|
|
if ('X86' in targets) | ('ARM' in targets) | ('Mips' in targets) | \
|
|
|
|
('PowerPC' in targets):
|
2012-05-18 05:07:47 +08:00
|
|
|
config.unsupported = False
|
|
|
|
else:
|
|
|
|
config.unsupported = True
|
|
|
|
|
2013-04-30 01:24:34 +08:00
|
|
|
if root.host_arch not in ['i386', 'x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
|
2012-05-18 05:07:47 +08:00
|
|
|
config.unsupported = True
|
2012-11-20 18:49:01 +08:00
|
|
|
|
|
|
|
if 'powerpc' in root.target_triple and not 'powerpc64' in root.target_triple:
|
|
|
|
config.unsupported = True
|