clapack: Disable for MIPS platforms
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>
Tue, 6 May 2014 12:47:31 +0000 (13:47 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 6 May 2014 15:13:20 +0000 (17:13 +0200)
Disable this package for MIPS because it needs IRIX headers and
libraries.

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

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: Markos Chandras <Markos.Chandras@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/armadillo/Config.in
package/clapack/Config.in

index 2251d912f0a2a967fb2a29f33ea5d68e695f0188..b3ba2fc72d919594ca09ac56b038f9ec9eea172a 100644 (file)
@@ -1,10 +1,12 @@
 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
index a77094fc7631167a56aa7af4e8ae6823cc026ed8..68a6dde695ba69b9f07c6e60e2227dda48303bcb 100644 (file)
@@ -1,6 +1,7 @@
 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)