diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-06-26 00:02:36 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-06-30 22:24:59 +0200 |
commit | cb3dc94501415220c52c87843b908658d700968c (patch) | |
tree | 7e6074c24300988e2960ce99b54148ff73d30c8f | |
parent | 8360fb0150fcc65d75cdbfeaa3da811cd17c2ea5 (diff) | |
download | buildroot-cb3dc94501415220c52c87843b908658d700968c.tar.gz buildroot-cb3dc94501415220c52c87843b908658d700968c.zip |
boost: coroutine selects context
Replace the coroutine dependency on context by a select
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/boost/Config.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in index bb53adccdd..b390c6fce8 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -97,12 +97,18 @@ comment "boost-contract needs a toolchain w/ NPTL" config BR2_PACKAGE_BOOST_COROUTINE bool "boost-coroutine" - depends on BR2_PACKAGE_BOOST_CONTEXT + depends on BR2_PACKAGE_BOOST_CONTEXT_ARCH_SUPPORTS + depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # boost-context + select BR2_PACKAGE_BOOST_CONTEXT help deprecated coroutine library, the non-depricated coroutine2 library is a header-only library and does not need to be selected. +comment "boost-coroutine needs a toolchain not affected by GCC bug 64735" + depends on BR2_PACKAGE_BOOST_CONTEXT_ARCH_SUPPORTS + depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 + config BR2_PACKAGE_BOOST_DATE_TIME bool "boost-date_time" help |