Commit d2b52ceb authored by Vicente Olivert Riera's avatar Vicente Olivert Riera Committed by Peter Korsgaard
Browse files

clapack: Disable for MIPS platforms

Disable this package for MIPS because it needs IRIX headers and
libraries.

Fixes:
   http://autobuild.buildroot.net/results/370/370f964441722675820c644403dde7fbc683a315/



Signed-off-by: default avatarVicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: default avatarMarkos Chandras <Markos.Chandras@imgtec.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 9542bd41
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
comment "armadillo needs a toolchain w/ C++, largefile"
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack

config BR2_PACKAGE_ARMADILLO
	bool "armadillo"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_LARGEFILE # clapack
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack
	select BR2_PACKAGE_CLAPACK
	help
	  Armadillo: An Open Source C++ Linear Algebra Library for
+2 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_CLAPACK
	bool "cblas/clapack"
	depends on BR2_LARGEFILE
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el)
	help
	  BLAS and LAPACK C implementation (f2c'ed version of).

@@ -20,3 +21,4 @@ config BR2_PACKAGE_CLAPACK_ARITH_H

comment "cblas/clapack needs a toolchain w/ largefile"
	depends on !BR2_LARGEFILE
	depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el)