summaryrefslogtreecommitdiff
path: root/package/armadillo
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2015-09-02 12:10:07 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-09-04 11:58:56 +0200
commitd58d667acaebdd8fac0d59f1d40e4a0a3bae5a58 (patch)
tree38a0ce52fca00e89e346e5b7fbf43c1315ba702c /package/armadillo
parentfc537892e63194439b916e523935152cc47428a1 (diff)
package/clapack: fix comments
Provide appropriate comments for the powerpc and !powerpc cases. Adapt armadillo's comments accordingly. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/armadillo')
-rw-r--r--package/armadillo/Config.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/package/armadillo/Config.in b/package/armadillo/Config.in
index e49997d88..18bf750eb 100644
--- a/package/armadillo/Config.in
+++ b/package/armadillo/Config.in
@@ -1,14 +1,18 @@
comment "armadillo needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
- depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack
- depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC) # clapack
- depends on !BR2_bfin # clapack
+ depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el)
+ depends on !BR2_powerpc
+ depends on !BR2_bfin
+
+comment "armadillo needs an (e)glibc toolchain w/ C++"
+ depends on BR2_powerpc
+ depends on !BR2_INSTALL_LIBSTDCPP || BR2_TOOLCHAIN_USES_UCLIBC
config BR2_PACKAGE_ARMADILLO
bool "armadillo"
depends on BR2_INSTALL_LIBSTDCPP
depends on !(BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) # clapack
- depends on !(BR2_powerpc && BR2_TOOLCHAIN_USES_UCLIBC) # clapack
+ depends on !BR2_powerpc || BR2_TOOLCHAIN_USES_GLIBC # clapack
depends on !BR2_bfin # clapack
select BR2_PACKAGE_CLAPACK
help