diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-07-02 23:18:45 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-03 21:42:50 +0200 |
commit | 74bbe20356b846b52a0fbb712c39f8170a0a1f7e (patch) | |
tree | 0707ac5c9113ad37cc122ea2ae792f25a54a6b17 | |
parent | 8ae70adc52f1d01d04a68ad62df8e66168ac4af8 (diff) | |
download | buildroot-74bbe20356b846b52a0fbb712c39f8170a0a1f7e.tar.gz buildroot-74bbe20356b846b52a0fbb712c39f8170a0a1f7e.zip |
boost: add selects for wave
wave needs filesystem, thread, date_time, chrono and system
output/host/usr/bin/arm-buildroot-linux-uclibcgnueabihf-readelf -d output/staging/usr/lib/libboost_wave.so
Dynamic section at offset 0x143edc contains 32 entries:
Tag Type Name/Value
0x00000001 (NEEDED) Shared library: [libboost_filesystem.so.1.67.0]
0x00000001 (NEEDED) Shared library: [libboost_thread.so.1.67.0]
0x00000001 (NEEDED) Shared library: [libboost_date_time.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 <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/boost/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in index cfad03f55a..bacefacab1 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -319,6 +319,11 @@ config BR2_PACKAGE_BOOST_WAVE # limitation of assembler for coldfire # error: Tried to convert PC relative branch to absolute jump depends on !BR2_m68k_cf + select BR2_PACKAGE_BOOST_CHRONO + select BR2_PACKAGE_BOOST_DATE_TIME + select BR2_PACKAGE_BOOST_FILESYSTEM + select BR2_PACKAGE_BOOST_SYSTEM + select BR2_PACKAGE_BOOST_THREAD help The Boost.Wave library is a Standards conformant, and highly configurable implementation of the mandated C99/C++ |