Merged
Conversation
With the dict silent_cfg_extras, you can now add additional options to the silent.cfg file.
Closed
Member
|
I have tried this fix to install imkl-11.1.2.144.eb with EB-1.11.0 and now I get these libraries which were not present before in /imkl-install-folder/mkl/lib/intel64: libmkl_scalapack_lp64.so |
Member
There was a problem hiding this comment.
better check that the value passed to silent_cfg_extras is a dict before calling iteritems on it?
if isinstance(silent_cfg_extras, dict):
...
else:
self.log.error("...")
Member
There was a problem hiding this comment.
oneliner (too much double code now):
libnames += [lib % {'suff': suff} for lib in libnames_extra for suff in ['lp64', 'ilp64']]and I prefer suff over lpver ;-)
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes the bug easybuilders/easybuild-framework#883