From: Fabrice Fontaine Date: Tue, 3 Jul 2018 22:23:54 +0000 (+0200) Subject: boost: type_erasure needs chrono, system, thread X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=892e006d7f069c55ea6fe447141e629456db645a;p=buildroot.git boost: type_erasure needs chrono, system, thread output/host/usr/bin/arm-buildroot-linux-uclibcgnueabihf-readelf -d output/staging/usr/lib/libboost_type_erasure.so Dynamic section at offset 0xcef0 contains 30 entries: Tag Type Name/Value 0x00000001 (NEEDED) Shared library: [libboost_thread.so.1.67.0] 0x00000001 (NEEDED) Shared library: [libboost_chrono.so.1.67.0] 0x00000001 (NEEDED) Shared library: [libboost_system.so.1.67.0] Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- diff --git a/package/boost/Config.in b/package/boost/Config.in index 68b1128818..5977bba63d 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -323,6 +323,9 @@ config BR2_PACKAGE_BOOST_TIMER config BR2_PACKAGE_BOOST_TYPE_ERASURE bool "boost-type_erasure" + select BR2_PACKAGE_BOOST_CHRONO + select BR2_PACKAGE_BOOST_SYSTEM + select BR2_PACKAGE_BOOST_THREAD help Runtime polymorphism based on concepts.