Skip to content

Commit

Permalink
Fix issue with missing symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar van Leeuwen committed Sep 25, 2024
1 parent eebd184 commit 61c6123
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def parse_hook_casacore_disable_vectorize(ec, eprefix):
):
cpu_target = get_eessi_envvar('EESSI_SOFTWARE_SUBDIR')
if cpu_target == CPU_TARGET_NEOVERSE_V1:
if not hasattr(ec, 'toolchainopts'):
if 'toolchainopts' not in ec:
ec['toolchainopts'] = {}
ec['toolchainopts']['vectorize'] = False
print_msg("Changed toochainopts for %s: %s", ec.name, ec['toolchainopts'])
Expand Down Expand Up @@ -307,8 +307,10 @@ def parse_hook_freeimage_aarch64(ec, *args, **kwargs):
if 'toolchainopts' not in ec:
ec['toolchainopts'] = {}
ec['toolchainopts']['pic'] = True
ec['toolchainopts']['extracflags'] = '-DPNG_ARM_NEON_OPT=0'
print_msg("Changed toolchainopts for %s: %s", ec.name, ec['toolchainopts'])


def parse_hook_lammps_remove_deps_for_CI_aarch64(ec, *args, **kwargs):
"""
Remove x86_64 specific dependencies for the CI to pass on aarch64
Expand Down

0 comments on commit 61c6123

Please sign in to comment.