]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
boost: module context affected by GCC bug 64735
authorJörg Krause <joerg.krause@embedded.rocks>
Thu, 15 Jun 2017 09:40:00 +0000 (11:40 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thu, 15 Jun 2017 20:27:00 +0000 (22:27 +0200)
commitb139cb5dbef065e8769c35607245b5a795d808ca
treed39efc3489dccce923bab0012b2a5c3efae1371f
parentb39e6dbed1536cb5dbd91724cc25df050d8dd54d
boost: module context affected by GCC bug 64735

Building boosts module context is affected by GCC bug 64735 [1]:

```
./boost/context/execution_context_v2.hpp:298:31: error: 'exception_ptr' is not a member of 'std'
     auto p = std::make_tuple( std::exception_ptr{}, std::move( data) );
```

This is because `exception_ptr` from libstdc++ is not available for
architectures not supporting always lock-free atomic ints.

Note, that this bug is fixed in GCC 7.

Fixes:
http://autobuild.buildroot.net/results/f4e/f4e8a3727f19f7df4a1c45efe3603422fafd4af5/

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64735

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/boost/Config.in