diff options
author | 2020-09-09 12:32:40 +0300 | |
---|---|---|
committer | 2020-09-09 22:42:01 +0200 | |
commit | 9f22c8165eb6966fd4bfd600cb40da65ceec058b (patch) | |
tree | b2561fd16231941cbfb32aea2482575a168c64f8 /package/boost/boost.mk | |
parent | 3daacfa65bf1e5bf861736b45e3112c8cd2c3f00 (diff) | |
download | buildroot-9f22c8165eb6966fd4bfd600cb40da65ceec058b.tar.gz buildroot-9f22c8165eb6966fd4bfd600cb40da65ceec058b.tar.bz2 |
package/boost: bump to version 1.74.0 to fix C++20
GCC 10 with -std=c++20 breaks boost library due to allocator changes.
https://github.com/boostorg/bimap/issues/23
We need boost 1.74.0 to fix build with gcc-10 -std=c++20. Note that none
of the Buildroot packages that use boost set -std=c++20, so no in-tree
failures.
Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
Reviewed-by: Michael Nosthoff <buildroot@heine.tech>
Tested-by: Michael Nosthoff <buildroot@heine.tech> for arm
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/boost/boost.mk')
-rw-r--r-- | package/boost/boost.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 323802488d..82fe42d6b2 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -4,7 +4,7 @@ # ################################################################################ -BOOST_VERSION = 1.73.0 +BOOST_VERSION = 1.74.0 BOOST_SOURCE = boost_$(subst .,_,$(BOOST_VERSION)).tar.bz2 BOOST_SITE = https://dl.bintray.com/boostorg/release/$(BOOST_VERSION)/source BOOST_INSTALL_STAGING = YES |