FlexiBLAS-3.0.3-GCC-11.2.0.eb 932 B

1234567891011121314151617181920212223242526
  1. name = 'FlexiBLAS'
  2. version = '3.0.3'
  3. homepage = 'https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release'
  4. description = """FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation
  5. used by a program without recompiling or relinking it."""
  6. toolchain = {'name': 'GCC', 'version': '11.2.0'}
  7. local_extra_flags = "-fstack-protector-strong -fstack-clash-protection"
  8. toolchainopts = {'pic': True, 'extra_cflags': local_extra_flags, 'extra_fflags': local_extra_flags}
  9. source_urls = ['https://csc.mpi-magdeburg.mpg.de/mpcsc/software/flexiblas/']
  10. sources = [SOURCELOWER_TAR_GZ]
  11. builddependencies = [
  12. ('CMake', '3.21.1'),
  13. ('Python', '3.8.6'), # required for running the tests
  14. ]
  15. # note: first listed library will be used as default by FlexiBLAS,
  16. # unless otherwise specified via easyconfig parameter flexiblas_default
  17. dependencies = [
  18. ('OpenBLAS', '0.3.17'),
  19. ]
  20. moduleclass = 'lib'