Skip to content
Open
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
4 changes: 4 additions & 0 deletions easybuild/easyblocks/l/lapack.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ def configure_step(self):
self.log.info('No BLAS library provided, so only building LAPACK library (no testing).')
self.cfg.update('buildopts', 'lib')


if os.path.exists(os.path.join(self.cfg['start_dir'], 'lapacke')):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about just checking the version? this should be there in LAPACK 3.4.0 and up

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see https://github.com/DirkdeDraak/easybuild-easyblocks/pull/1, if you merge my PR to your branch, it'll be included here

self.cfg.update('buildopts', 'lapackelib')

# don't create a module if we're only testing
def build_step(self):
"""
Expand Down