mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
24814a0958
lapack and clapack generate the same libraries liblapack.so and libblas.so. So those two packages can't be selected at the same time. This is a temporary fix waiting for a solution[2]. So: - add !BR2_PACKAGE_CLAPACK to lapack/Config.in. [1]: http://autobuild.buildroot.org/results/375/375078ed8f965ecf92eb9674bd071a518c3ef894// [2]: http://lists.busybox.net/pipermail/buildroot/2019-August/255894.html Signed-off-by: Alexandre PAYEN <alexandre.payen@smile.fr> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Romain Naour <romain.naour@smile.fr> Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com> Reviewed-by: Romain Naour <romain.naour@smile.fr> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
23 lines
705 B
Plaintext
23 lines
705 B
Plaintext
comment "lapack/blas needs a toolchain w/ fortran"
|
|
depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC)
|
|
depends on !BR2_TOOLCHAIN_HAS_FORTRAN
|
|
|
|
config BR2_PACKAGE_LAPACK
|
|
bool "lapack/blas"
|
|
depends on BR2_TOOLCHAIN_HAS_FORTRAN
|
|
depends on !BR2_PACKAGE_CLAPACK
|
|
# _fpu_control is used on PowerPC, but not available with uClibc
|
|
depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC)
|
|
help
|
|
LAPACK and BLAS FORTRAN implementation. This package
|
|
installs two libraries: libblas and liblapack.
|
|
|
|
http://www.netlib.org/lapack/
|
|
|
|
config BR2_PACKAGE_LAPACK_COMPLEX
|
|
bool "Complex/Complex16 support"
|
|
default y
|
|
depends on BR2_PACKAGE_LAPACK
|
|
help
|
|
Builds support for COMPLEX and COMPLEX16 data types.
|