summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch')
-rw-r--r--meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch b/meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch
new file mode 100644
index 0000000000..46c706931b
--- /dev/null
+++ b/meta/recipes-support/boost/boost/0001-Fix-Wsign-compare-warning-with-glibc-2.34-on-Linux-p.patch
@@ -0,0 +1,32 @@
1From f9d0e594d43afcb4ab0043117249feb266ba4515 Mon Sep 17 00:00:00 2001
2From: Romain Geissler <romain.geissler@amadeus.com>
3Date: Tue, 10 Aug 2021 14:22:28 +0000
4Subject: [PATCH] Fix -Wsign-compare warning with glibc 2.34 on Linux
5 platforms.
6
7In file included from /data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/thread_only.hpp:17,
8 from /data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/thread.hpp:12,
9 from src/GetTest.cpp:12:
10/data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/pthread/thread_data.hpp: In member function 'void boost::thread_attributes::set_stack_size(std::size_t)':
11/data/mwrep/res/osp/Boost/21-0-0-0/include/boost/thread/pthread/thread_data.hpp:61:19: error: comparison of integer expressions of different signedness: 'std::size_t' {aka 'long unsigned int'} and 'long int' [-Werror=sign-compare]
12 61 | if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
13 | ^
14
15Upstream-Status: Backport [1.78.0 https://github.com/boostorg/thread/commit/f9d0e594d43afcb4ab0043117249feb266ba4515]
16---
17 boost/thread/pthread/thread_data.hpp | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/boost/thread/pthread/thread_data.hpp b/boost/thread/pthread/thread_data.hpp
21index bc9b1367..c43b276d 100644
22--- a/boost/thread/pthread/thread_data.hpp
23+++ b/boost/thread/pthread/thread_data.hpp
24@@ -58,7 +58,7 @@ namespace boost
25 std::size_t page_size = ::sysconf( _SC_PAGESIZE);
26 #endif
27 #ifdef PTHREAD_STACK_MIN
28- if (size<PTHREAD_STACK_MIN) size=PTHREAD_STACK_MIN;
29+ if (size<static_cast<std::size_t>(PTHREAD_STACK_MIN)) size=PTHREAD_STACK_MIN;
30 #endif
31 size = ((size+page_size-1)/page_size)*page_size;
32 int res = pthread_attr_setstacksize(&val_, size);