Skip to content

Commit

Permalink
Merge pull request easybuilders#3495 from Thyre/intel-oneapi-2025-rem…
Browse files Browse the repository at this point in the history
…oval-of-ifort

Fix oneAPI sanity check for ifort removal in 2025.0 and newer
  • Loading branch information
boegel authored Nov 6, 2024
2 parents a1add70 + 9c4fa5e commit 85d4f97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion easybuild/easyblocks/i/intel_compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ def sanity_check_step(self):
]
bindir = os.path.join(self.compilers_subdir, 'bin')
oneapi_compiler_paths = [os.path.join(bindir, x) for x in oneapi_compiler_cmds]
if LooseVersion(self.version) >= LooseVersion('2024'):
if LooseVersion(self.version) >= LooseVersion('2025'):
classic_compiler_cmds = []
elif LooseVersion(self.version) >= LooseVersion('2024'):
classic_compiler_cmds = ['ifort']
classic_bindir = bindir
else:
Expand Down

0 comments on commit 85d4f97

Please sign in to comment.