Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
easyconfigs:
- LLVM-20.1.7-GCCcore-14.2.0.eb
4 changes: 4 additions & 0 deletions eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,7 @@ def pre_configure_hook_llvm(self, *args, **kwargs):
for software in ('zlib', 'ncurses'):
var_name = get_software_root_env_var_name(software)
env.setvar(var_name, os.path.join(eprefix, 'usr'))
self.deps.append(software)
else:
raise EasyBuildError("LLVM-specific hook triggered for non-LLVM easyconfig?!")

Expand Down Expand Up @@ -1707,6 +1708,9 @@ def set_maximum(parallel, max_value):
'*': (divide_by_factor, 2),
CPU_TARGET_A64FX: (set_maximum, 12),
},
'LLVM': {
'*': (divide_by_factor, 2),
},
'MBX': {
'*': (divide_by_factor, 2),
CPU_TARGET_A64FX: (set_maximum, 1),
Expand Down
Loading