[General] LLVM-9 -> LLVM-10

This commit is contained in:
Philippe Tillet
2020-11-07 22:35:23 -05:00
committed by Philippe Tillet
parent 8f3ee53f24
commit 50587bbf4b
9 changed files with 21 additions and 31 deletions

View File

@@ -16,7 +16,7 @@ import torch
def find_llvm():
versions = ['-9.0', '-9', '-90', '-8.0', '-8', '-80', '']
versions = ['-10', '-9.0', '-9', '-90', '-8.0', '-8', '-80', '']
supported = ['llvm-config{v}'.format(v=v) for v in versions]
paths = [distutils.spawn.find_executable(cfg) for cfg in supported]
paths = [p for p in paths if p is not None]