Config.in 836 B

12345678910111213141516171819202122232425262728
  1. comment "clapack needs a glibc toolchain"
  2. depends on BR2_powerpc
  3. depends on !BR2_TOOLCHAIN_USES_GLIBC
  4. config BR2_PACKAGE_CLAPACK
  5. bool "cblas/clapack"
  6. # _fpu_control is used on PowerPC, but not available with
  7. # uClibc or musl
  8. depends on !BR2_powerpc || BR2_TOOLCHAIN_USES_GLIBC
  9. # assembler: Error: value out of range
  10. depends on !BR2_m68k_cf
  11. help
  12. BLAS and LAPACK C implementation (f2c'ed version of).
  13. http://www.netlib.org/clapack/
  14. config BR2_PACKAGE_CLAPACK_ARITH_H
  15. string "Custom BLAS arith.h"
  16. depends on BR2_PACKAGE_CLAPACK
  17. help
  18. To optimize BLAS library for the hardware, an 'arith.h' header
  19. should be provided.
  20. If empty, the library will not be optimized by the compiler.
  21. In any case an 'arithchk' program is built
  22. (but not installed), to be run on the target to generate this
  23. arith.h header.