mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 12:32:12 +02:00
boost: upgrade 1.78.0 -> 1.79.0
0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch de657e01635306085488290ea83de541ec393f8b.patch removed since they're included in 1.79.0 Changelog: https://www.boost.org/users/history/version_1_79_0.html (From OE-Core rev: 091d73e893081bf15afa19a71203e941ac46b306) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -12,7 +12,7 @@ BOOST_MAJ = "${@"_".join(d.getVar("PV").split(".")[0:2])}"
|
||||
BOOST_P = "boost_${BOOST_VER}"
|
||||
|
||||
SRC_URI = "https://boostorg.jfrog.io/artifactory/main/release/${PV}/source/${BOOST_P}.tar.bz2"
|
||||
SRC_URI[sha256sum] = "8681f175d4bdb26c52222665793eef08490d7758529330f98d3b29dd0735bccc"
|
||||
SRC_URI[sha256sum] = "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39"
|
||||
|
||||
UPSTREAM_CHECK_URI = "http://www.boost.org/users/download/"
|
||||
UPSTREAM_CHECK_REGEX = "release/(?P<pver>.*)/source/"
|
||||
@@ -1,36 +0,0 @@
|
||||
From b15d8d0754bb545ba10d0cfba8bbfdfb22a62c38 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sun, 20 Feb 2022 22:03:14 -0800
|
||||
Subject: [PATCH] futex: fix build on 32-bit architectures using 64-bit time_t
|
||||
|
||||
Fix the following build failure on 32-bit architectures using 64-bit
|
||||
time_t (e.g. riscv32):
|
||||
| ./boost/fiber/detail/futex.hpp:31:23: error: use of undeclared identifier 'SYS_futex'
|
||||
| return ::syscall( SYS_futex, addr, op, x, nullptr, nullptr, 0);
|
||||
| ^
|
||||
| 1 error generated.
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/boostorg/fiber/pull/292]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
boost/fiber/detail/futex.hpp | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/boost/fiber/detail/futex.hpp b/boost/fiber/detail/futex.hpp
|
||||
index e64bd5990..d0353e9e5 100644
|
||||
--- a/boost/fiber/detail/futex.hpp
|
||||
+++ b/boost/fiber/detail/futex.hpp
|
||||
@@ -12,6 +12,10 @@
|
||||
|
||||
#include <boost/fiber/detail/config.hpp>
|
||||
|
||||
+#ifndef SYS_futex
|
||||
+#define SYS_futex SYS_futex_time64
|
||||
+#endif
|
||||
+
|
||||
#if BOOST_OS_LINUX
|
||||
extern "C" {
|
||||
#include <linux/futex.h>
|
||||
--
|
||||
2.35.1
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
From de657e01635306085488290ea83de541ec393f8b Mon Sep 17 00:00:00 2001
|
||||
From: Leonardo Neumann <leonardo@neumann.dev.br>
|
||||
Date: Mon, 13 Dec 2021 01:07:20 -0300
|
||||
Subject: [PATCH] Fix missing sys/stat.h include on musl-based systems
|
||||
|
||||
Boost 1.78.0 fails to build on musl-based systems because musl does
|
||||
not include sys/stat.h by default.
|
||||
|
||||
Fixes #161 ("Boost compiler error")
|
||||
Upstream-Status: Submitted [https://github.com/boostorg/interprocess/pull/162]
|
||||
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
---
|
||||
include/boost/interprocess/permissions.hpp | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/boost/interprocess/permissions.hpp b/boost/interprocess/permissions.hpp
|
||||
index ab55411e..0b21a685 100644
|
||||
--- a/boost/interprocess/permissions.hpp
|
||||
+++ b/boost/interprocess/permissions.hpp
|
||||
@@ -29,6 +29,10 @@
|
||||
|
||||
#include <boost/interprocess/detail/win32_api.hpp>
|
||||
|
||||
+#else
|
||||
+
|
||||
+#include <sys/stat.h>
|
||||
+
|
||||
#endif
|
||||
|
||||
#endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
|
||||
@@ -5,6 +5,4 @@ SRC_URI += "file://boost-CVE-2012-2677.patch \
|
||||
file://boost-math-disable-pch-for-gcc.patch \
|
||||
file://0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch \
|
||||
file://0001-dont-setup-compiler-flags-m32-m64.patch \
|
||||
file://de657e01635306085488290ea83de541ec393f8b.patch \
|
||||
file://0001-futex-fix-build-on-32-bit-architectures-using-64-bit.patch \
|
||||
"
|
||||
Reference in New Issue
Block a user