Skip to content
25 changes: 25 additions & 0 deletions easybuild/easyconfigs/f/FlexiBLAS/FlexiBLAS-3.0.4-GCC-10.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = 'FlexiBLAS'
version = '3.0.4'

homepage = 'https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release'
description = """FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation
used by a program without recompiling or relinking it."""

toolchain = {'name': 'GCC', 'version': '10.2.0'}

source_urls = ['https://csc.mpi-magdeburg.mpg.de/mpcsc/software/flexiblas/']
sources = [SOURCELOWER_TAR_GZ]
checksums = ['50a88f2e88994dda91b2a2621850afd9654b3b84820e737e335687a46751be5c']

builddependencies = [
('CMake', '3.18.4'),
Copy link
Member

Choose a reason for hiding this comment

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

Just a note that FlexiBLAS autodetection with CMake did not appear until CMake 3.19

Copy link
Member Author

Choose a reason for hiding this comment

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

I'll bump this to GCC/10.3.0 + OpenBLAS/0.3.15 + CMake/3.20.1 for 2021a, it doesn't make much sense to have this for 2020b anyway...

('Python', '3.8.6'), # required for running the tests
]

# note: first listed library will be used as default by FlexiBLAS,
# unless otherwise specified via -DFLEXIBLAS_DEFAULT in configopts
dependencies = [
('OpenBLAS', '0.3.12'),
]

moduleclass = 'lib'