Skip to content

Commit

Permalink
Merge pull request #3875 from ocaisa/flexiblas_include
Browse files Browse the repository at this point in the history
Make sure correct include directory is used for FlexiBLAS
  • Loading branch information
boegel authored Oct 27, 2021
2 parents 0abef70 + 36f583a commit a136f57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions easybuild/toolchains/linalg/flexiblas.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
:author: Kenneth Hoste (Ghent University)
"""
import os
import re

from easybuild.tools.toolchain.linalg import LinAlg
Expand Down Expand Up @@ -67,10 +68,12 @@ class FlexiBLAS(LinAlg):
"""
BLAS_MODULE_NAME = ['FlexiBLAS']
BLAS_LIB = ['flexiblas']
BLAS_INCLUDE_DIR = [os.path.join('include', 'flexiblas')]
BLAS_FAMILY = TC_CONSTANT_FLEXIBLAS

LAPACK_MODULE_NAME = ['FlexiBLAS']
LAPACK_IS_BLAS = True
LAPACK_INCLUDE_DIR = [os.path.join('include', 'flexiblas')]
LAPACK_FAMILY = TC_CONSTANT_FLEXIBLAS

def banned_linked_shared_libs(self):
Expand Down

0 comments on commit a136f57

Please sign in to comment.