- Fix CVE-2021-4048: An out-of-bounds read flaw was found in the CLARRV,
DLARRV, SLARRV, and ZLARRV functions in lapack through version 3.10.0,
as also used in OpenBLAS before version 0.3.18. Specially crafted
inputs passed to these functions could cause an application using
lapack to crash or possibly disclose portions of its memory.
- Update license hash, year changed:
f67034373e
- Update indentation in hash file (two spaces)
http://netlib.org/lapack/lapack-3.10.0.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
22 lines
641 B
Makefile
22 lines
641 B
Makefile
################################################################################
|
|
#
|
|
# lapack
|
|
#
|
|
################################################################################
|
|
|
|
LAPACK_VERSION = 3.10.0
|
|
LAPACK_LICENSE = BSD-3-Clause
|
|
LAPACK_LICENSE_FILES = LICENSE
|
|
LAPACK_SITE = $(call github,Reference-LAPACK,lapack,v$(LAPACK_VERSION))
|
|
LAPACK_INSTALL_STAGING = YES
|
|
LAPACK_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
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))
|