From: Samuel Martin Date: Sat, 18 Jan 2014 19:23:38 +0000 (+0100) Subject: eigen: add C++ toolchain dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76f02e371a3b9d73d62bd6a74a85437b9dec7f9a;p=buildroot.git eigen: add C++ toolchain dependency As said in its help text, eigen heavily uses C++ features. So, explicit this dependency in the Config.in. Signed-off-by: Samuel Martin Reviewed-by: Arnout Vandecappelle (Essensium/Mind) Reviewed-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/package/eigen/Config.in b/package/eigen/Config.in index c7fcde243c..e94f9a3e0b 100644 --- a/package/eigen/Config.in +++ b/package/eigen/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_EIGEN bool "eigen" + depends on BR2_INSTALL_LIBSTDCPP help Eigen is a C++ template library for linear algebra: vectors, matrices, and related algorithms. It is versatile, fast, elegant @@ -11,3 +12,6 @@ config BR2_PACKAGE_EIGEN template library defined in the headers. http://eigen.tuxfamily.org/ + +comment "eigen needs a toolchain w/ C++" + depends on !BR2_INSTALL_LIBSTDCPP