Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easybuild/easyblocks/l/llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ def configure_step(self):

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