1config BR2_PACKAGE_LAPACK_ARCH_SUPPORTS 2 bool 3 default y 4 # _fpu_control is used on PowerPC, but not available with 5 # uClibc or musl 6 depends on !BR2_powerpc || BR2_TOOLCHAIN_USES_GLIBC 7 8comment "lapack/blas needs a glibc toolchain" 9 depends on BR2_powerpc 10 depends on !BR2_TOOLCHAIN_USES_GLIBC 11 12comment "lapack/blas needs a toolchain w/ fortran" 13 depends on BR2_PACKAGE_LAPACK_ARCH_SUPPORTS 14 depends on !BR2_TOOLCHAIN_HAS_FORTRAN 15 16config BR2_PACKAGE_LAPACK 17 bool "lapack/blas" 18 depends on BR2_PACKAGE_LAPACK_ARCH_SUPPORTS 19 depends on BR2_TOOLCHAIN_HAS_FORTRAN 20 help 21 LAPACK and BLAS FORTRAN implementation. This package 22 installs two libraries: libblas and liblapack. 23 24 http://www.netlib.org/lapack/ 25 26config BR2_PACKAGE_LAPACK_COMPLEX 27 bool "Complex/Complex16 support" 28 default y 29 depends on BR2_PACKAGE_LAPACK 30 help 31 Builds support for COMPLEX and COMPLEX16 data types. 32