Config.in 705 B

12345678910111213141516171819202122
  1. comment "lapack/blas needs a toolchain w/ fortran"
  2. depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC)
  3. depends on !BR2_TOOLCHAIN_HAS_FORTRAN
  4. config BR2_PACKAGE_LAPACK
  5. bool "lapack/blas"
  6. depends on BR2_TOOLCHAIN_HAS_FORTRAN
  7. depends on !BR2_PACKAGE_CLAPACK
  8. # _fpu_control is used on PowerPC, but not available with uClibc
  9. depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC)
  10. help
  11. LAPACK and BLAS FORTRAN implementation. This package
  12. installs two libraries: libblas and liblapack.
  13. http://www.netlib.org/lapack/
  14. config BR2_PACKAGE_LAPACK_COMPLEX
  15. bool "Complex/Complex16 support"
  16. default y
  17. depends on BR2_PACKAGE_LAPACK
  18. help
  19. Builds support for COMPLEX and COMPLEX16 data types.