We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9658ade + 9763839 commit ad4370eCopy full SHA for ad4370e
tc_build/tools.py
@@ -117,9 +117,10 @@ def from_env(self, key):
117
def generate_versioned_binaries(self):
118
try:
119
cmakelists_txt = tc_build.utils.curl(
120
- 'https://raw.githubusercontent.com/llvm/llvm-project/main/llvm/CMakeLists.txt')
+ 'https://raw.githubusercontent.com/llvm/llvm-project/main/cmake/Modules/LLVMVersion.cmake'
121
+ )
122
except subprocess.CalledProcessError:
- llvm_tot_ver = 16
123
+ llvm_tot_ver = 19
124
else:
125
if not (match := re.search(r'set\(LLVM_VERSION_MAJOR\s+(\d+)', cmakelists_txt)):
126
raise RuntimeError('Could not find LLVM_VERSION_MAJOR in CMakeLists.txt?')
0 commit comments