Skip to content

Commit 917cea3

Browse files
authored
Merge pull request #3937 from Thyre/20250919223841_new_pr_llvm
change LLVM EasyBlock to not apply concurrency workaround for pre-release LLVM 20
2 parents ec4df21 + 87ba2c7 commit 917cea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/easyblocks/l/llvm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ def configure_step(self):
937937

938938
# Avoid concurrency issue in tests, see https://github.com/llvm/llvm-project/pull/151313
939939
llvm_version = LooseVersion(self.version)
940-
if llvm_version < '20.1':
940+
if llvm_version < '20':
941941
regex_subs = [(r'cmake_policy\(SET CMP0114 OLD\)', 'cmake_policy(SET CMP0114 NEW)')]
942942
tgt_file = os.path.join('llvm', 'CMakeLists.txt')
943943
if llvm_version >= '16':

0 commit comments

Comments
 (0)