1ba26756d8
lapack is a fortran-based linear algebra math library. Signed-off-by: Benjamin Kamath <bkamath@spaceflight.com> [Samuel: - Update to use BR2_TOOLCHAIN_HAS_FORTRAN symbol + add comment when the toolchain does not meet the requirements. - Update powerpc/uclibc dependencies to allow build with musl. - Bump to 3.6.1.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> [Thomas: move comment about installed libraries from .mk file to Config.in help text.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
613 B
Makefile
22 lines
613 B
Makefile
################################################################################
|
|
#
|
|
# lapack
|
|
#
|
|
################################################################################
|
|
|
|
LAPACK_VERSION = 3.6.1
|
|
LAPACK_SOURCE = lapack-$(LAPACK_VERSION).tgz
|
|
LAPACK_LICENSE = BSD-3c
|
|
LAPACK_LICENSE_FILES = LICENSE
|
|
LAPACK_SITE = http://www.netlib.org/lapack
|
|
LAPACK_INSTALL_STAGING = YES
|
|
LAPACK_CONF_OPTS = -DLAPACKE=ON -DCBLAS=ON
|
|
|
|
ifeq ($(BR2_PACKAGE_LAPACK_COMPLEX),y)
|
|
LAPACK_CONF_OPTS += -DBUILD_COMPLEX=ON -DBUILD_COMPLEX16=ON
|
|
else
|
|
LAPACK_CONF_OPTS += -DBUILD_COMPLEX=OFF -DBUILD_COMPLEX16=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|