diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-08-27 18:54:04 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-08-28 00:01:00 +0200 |
commit | 68fe6d7d00ad5c998ee05d48cf1dbb6450621966 (patch) | |
tree | c2d83783d58a522df286e6eabe8c7b0b59f9717e | |
parent | 46481878fe8943f67555d531aaaac84db618d9d6 (diff) | |
download | buildroot-68fe6d7d00ad5c998ee05d48cf1dbb6450621966.tar.gz buildroot-68fe6d7d00ad5c998ee05d48cf1dbb6450621966.zip |
cutelyst: depends on C++11
thread-local storage is a C++11 feature available since gcc 4.8:
https://gcc.gnu.org/projects/cxx-status.html#cxx11
Fixes:
- http://autobuild.buildroot.net/results/2963bd55cd7c33ded3e5a75fc86079acfae844c1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/cutelyst/Config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/cutelyst/Config.in b/package/cutelyst/Config.in index 5a3974a454..91b559bd18 100644 --- a/package/cutelyst/Config.in +++ b/package/cutelyst/Config.in @@ -1,6 +1,8 @@ config BR2_PACKAGE_CUTELYST bool "cutelyst" depends on BR2_PACKAGE_QT5 + depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 select BR2_PACKAGE_OPENSSL select BR2_PACKAGE_QT5BASE_GUI help @@ -8,3 +10,7 @@ config BR2_PACKAGE_CUTELYST the simple approach of Catalyst (Perl) framework. https://cutelyst.org + +comment "cutelyst needs a toolchain w/ C++, gcc >= 4.8" + depends on BR2_PACKAGE_QT5 + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 |