mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
6f17e7033b
A new backend supporting AMD GPUs: Radeon HD2XXX - HD7XXX llvm-svn: 169915
14 lines
271 B
INI
14 lines
271 B
INI
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())
|
|
if not 'R600' in targets:
|
|
config.unsupported = True
|
|
|