Config.in 881 B

12345678910111213141516171819202122232425262728293031
  1. config 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. comment "lapack/blas needs a glibc toolchain"
  8. depends on BR2_powerpc
  9. depends on !BR2_TOOLCHAIN_USES_GLIBC
  10. comment "lapack/blas needs a toolchain w/ fortran"
  11. depends on BR2_PACKAGE_LAPACK_ARCH_SUPPORTS
  12. depends on !BR2_TOOLCHAIN_HAS_FORTRAN
  13. config BR2_PACKAGE_LAPACK
  14. bool "lapack/blas"
  15. depends on BR2_PACKAGE_LAPACK_ARCH_SUPPORTS
  16. depends on BR2_TOOLCHAIN_HAS_FORTRAN
  17. help
  18. LAPACK and BLAS FORTRAN implementation. This package
  19. installs two libraries: libblas and liblapack.
  20. http://www.netlib.org/lapack/
  21. config BR2_PACKAGE_LAPACK_COMPLEX
  22. bool "Complex/Complex16 support"
  23. default y
  24. depends on BR2_PACKAGE_LAPACK
  25. help
  26. Builds support for COMPLEX and COMPLEX16 data types.