diff options
author | 2017-10-23 14:48:24 -0400 | |
---|---|---|
committer | 2017-10-23 21:51:37 +0200 | |
commit | 657dbfa00af724c2539a08eaaf0c8044dd4051d7 (patch) | |
tree | 97c04e5b3c39b97a2beebfb268bc46f3f76205bb /package/boost/boost.mk | |
parent | f574a8eba67a38d1e0e681ace57b44acff36310f (diff) | |
download | buildroot-657dbfa00af724c2539a08eaaf0c8044dd4051d7.tar.gz buildroot-657dbfa00af724c2539a08eaaf0c8044dd4051d7.tar.bz2 |
boost: add fiber module
This module requires NPTL. Without support for the module, it is built
unconditionally, which was causing the following build errors:
http://autobuild.buildroot.net/results/029/0298038fc126d15733d81c54e0bb7cb00be48b92/build-end.log
http://autobuild.buildroot.net/results/6f3/6f3a218c47204e431100799482a3ed0ec159fa15/build-end.log
http://autobuild.buildroot.net/results/63e/63e5569a90d3ace97cb6102509cbd04aeab6f5f7/build-end.log
Signed-off-by: Adam Duskett <aduskett@gmail.com>
[Arnout: add empty line in Config.in, reword commit message]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/boost/boost.mk')
-rw-r--r-- | package/boost/boost.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 598ffbe10e..0fd6c4d0de 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -26,6 +26,7 @@ BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_CONTEXT),,context) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_COROUTINE),,coroutine) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_DATE_TIME),,date_time) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_EXCEPTION),,exception) +BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_FILESYSTEM),,fiber) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_FILESYSTEM),,filesystem) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_GRAPH),,graph) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_GRAPH_PARALLEL),,graph_parallel) |