mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
8dc3b4847f
llvm-svn: 177896
15 lines
311 B
INI
15 lines
311 B
INI
config.suffixes = ['.ll', '.c', '.cpp']
|
|
|
|
def getRoot(config):
|
|
if not config.parent:
|
|
return config
|
|
return getRoot(config.parent)
|
|
|
|
root = getRoot(config)
|
|
|
|
if root.host_arch in ['PowerPC', 'AArch64']:
|
|
config.unsupported = True
|
|
|
|
if 'hexagon' in root.target_triple:
|
|
config.unsupported = True
|