python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / clapack / Config.in
blob7d1f9401aefc72e8a03446491f85d16168844939
1 comment "clapack needs a glibc toolchain"
2         depends on BR2_powerpc
3         depends on !BR2_TOOLCHAIN_USES_GLIBC
5 config BR2_PACKAGE_CLAPACK
6         bool "cblas/clapack"
7         depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el)
8         # _fpu_control is used on PowerPC, but not available with
9         # uClibc or musl
10         depends on !BR2_powerpc || BR2_TOOLCHAIN_USES_GLIBC
11         # disable clapack on blackfin, it triggers "undefined symbol" failure
12         # because of the "_" symbol prefix:
13         # http://autobuild.buildroot.net/results/a28df0ba10803e6e54c2f8160bbd8190cba4d690/
14         depends on !BR2_bfin
15         # assembler: Error: value out of range
16         depends on !BR2_m68k_cf
17         help
18           BLAS and LAPACK C implementation (f2c'ed version of).
20           http://www.netlib.org/clapack/
22 config BR2_PACKAGE_CLAPACK_ARITH_H
23         string "Custom BLAS arith.h"
24         depends on BR2_PACKAGE_CLAPACK
25         help
26           To optimize BLAS library for the hardware, an 'arith.h' header should
27           be provided.
29           If empty, the library will not be optimized by the compiler.
31           In any case an 'arithchk' program is built (but not installed), to be run
32           on the target to generate this arith.h header.