forked from OSchip/llvm-project
Fix check for supported targets in llvm-c lit.local.cfg
llvm-svn: 193235
This commit is contained in:
parent
2346c7a511
commit
49416cf126
|
@ -1,3 +1,5 @@
|
|||
targets = set(config.root.targets_to_build.split())
|
||||
if not (targets & set(["X86", "ARM"])):
|
||||
if not "X86" in targets:
|
||||
config.unsupported = True
|
||||
if not "ARM" in targets:
|
||||
config.unsupported = True
|
||||
|
|
Loading…
Reference in New Issue