diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-11-16 21:50:56 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-11-16 21:50:56 +0100 |
| commit | 648956a137949e0388536688fff3ae4f7bb298a8 (patch) | |
| tree | 86181e7538c57969c383cf1ea30daa0f992aa9b4 | |
| parent | 9a730a92a3691a7c2bafcc6373a96d47e3d687bc (diff) | |
| download | buildroot-648956a137949e0388536688fff3ae4f7bb298a8.tar.gz buildroot-648956a137949e0388536688fff3ae4f7bb298a8.zip | |
boost: do not allow context module on sparc
The boost context module does not build on sparc, even if sparc is
advertised as a supported architecture by the boost documentation. So
let's disallow this module for the time being.
Fixes:
http://autobuild.buildroot.org/results/206/2060e6e31c4d739947097faf6587e0a06681fee2/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/boost/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in index edffd7e351..cffaf6e0e9 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -67,11 +67,12 @@ config BR2_PACKAGE_BOOST_CONTAINER # see # http://www.boost.org/doc/libs/1_59_0/libs/context/doc/html/context/architectures.html -# for the list of supported architectures. +# for the list of supported architectures. Sparc pretends to be +# supported, but it doesn't build. config BR2_PACKAGE_BOOST_CONTEXT bool "boost-context" depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel \ - || BR2_powerpc || BR2_sparc || BR2_x86_64) + || BR2_powerpc || BR2_x86_64) config BR2_PACKAGE_BOOST_COROUTINE bool "boost-coroutine" |

