package/boost: bump version to 1.64.0
Removed patches applied upstream. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
88adc94297
commit
9cc51dc494
@ -1,65 +0,0 @@
|
||||
From a67cc1b055cf09f371e2eca544884634a1ccc886 Mon Sep 17 00:00:00 2001
|
||||
From: Andrey Semashev <andrey.semashev@gmail.com>
|
||||
Date: Sun, 8 Jan 2017 18:09:12 +0300
|
||||
Subject: [PATCH] Corrected register usage in x86 DCAS asm blocks.
|
||||
|
||||
In some of the asm blocks eax was modified as a result of cmpxchg8b but that
|
||||
was not reflected in the register constraints. This could cause incorrect code
|
||||
being generated.
|
||||
|
||||
Fetch from:
|
||||
https://github.com/boostorg/atomic/commit/a67cc1b055cf09f371e2eca544884634a1ccc886
|
||||
|
||||
[Adjust github patch to tarball release]
|
||||
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
|
||||
---
|
||||
boost/atomic/detail/ops_gcc_x86_dcas.hpp | 14 ++++++++------
|
||||
1 file changed, 8 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/boost/atomic/detail/ops_gcc_x86_dcas.hpp b/boost/atomic/detail/ops_gcc_x86_dcas.hpp
|
||||
index 2f51182..e356e8c 100644
|
||||
--- a/boost/atomic/detail/ops_gcc_x86_dcas.hpp
|
||||
+++ b/boost/atomic/detail/ops_gcc_x86_dcas.hpp
|
||||
@@ -73,6 +73,7 @@ struct gcc_dcas_x86
|
||||
{
|
||||
#if !defined(BOOST_ATOMIC_DETAIL_NO_ASM_IMPLIED_ZERO_DISPLACEMENTS)
|
||||
#if defined(__PIC__)
|
||||
+ uint32_t v_lo = (uint32_t)v;
|
||||
uint32_t scratch;
|
||||
__asm__ __volatile__
|
||||
(
|
||||
@@ -84,8 +85,8 @@ struct gcc_dcas_x86
|
||||
"1: lock; cmpxchg8b %[dest]\n\t"
|
||||
"jne 1b\n\t"
|
||||
"movl %[scratch], %%ebx\n\t"
|
||||
- : [scratch] "=m" (scratch), [dest] "=o" (storage)
|
||||
- : [value_lo] "a" ((uint32_t)v), "c" ((uint32_t)(v >> 32))
|
||||
+ : [scratch] "=m" (scratch), [dest] "=o" (storage), [value_lo] "+a" (v_lo)
|
||||
+ : "c" ((uint32_t)(v >> 32))
|
||||
: BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA "edx", "memory"
|
||||
);
|
||||
#else // defined(__PIC__)
|
||||
@@ -103,6 +104,7 @@ struct gcc_dcas_x86
|
||||
#endif // defined(__PIC__)
|
||||
#else // !defined(BOOST_ATOMIC_DETAIL_NO_ASM_IMPLIED_ZERO_DISPLACEMENTS)
|
||||
#if defined(__PIC__)
|
||||
+ uint32_t v_lo = (uint32_t)v;
|
||||
uint32_t scratch;
|
||||
__asm__ __volatile__
|
||||
(
|
||||
@@ -115,11 +117,11 @@ struct gcc_dcas_x86
|
||||
"jne 1b\n\t"
|
||||
"movl %[scratch], %%ebx\n\t"
|
||||
#if !defined(BOOST_ATOMIC_DETAIL_NO_ASM_CONSTRAINT_ALTERNATIVES)
|
||||
- : [scratch] "=m,m" (scratch)
|
||||
- : [value_lo] "a,a" ((uint32_t)v), "c,c" ((uint32_t)(v >> 32)), [dest] "D,S" (&storage)
|
||||
+ : [scratch] "=m,m" (scratch), [value_lo] "+a,a" (v_lo)
|
||||
+ : "c,c" ((uint32_t)(v >> 32)), [dest] "D,S" (&storage)
|
||||
#else
|
||||
- : [scratch] "=m" (scratch)
|
||||
- : [value_lo] "a" ((uint32_t)v), "c" ((uint32_t)(v >> 32)), [dest] "D" (&storage)
|
||||
+ : [scratch] "=m" (scratch), [value_lo] "+a" (v_lo)
|
||||
+ : "c" ((uint32_t)(v >> 32)), [dest] "D" (&storage)
|
||||
#endif
|
||||
: BOOST_ATOMIC_DETAIL_ASM_CLOBBER_CC_COMMA "edx", "memory"
|
||||
);
|
@ -1,119 +0,0 @@
|
||||
From 066e28ccecb4bad5c0477606a138591f1da1963e Mon Sep 17 00:00:00 2001
|
||||
From: Raffi Enficiaud <raffi.enficiaud@free.fr>
|
||||
Date: Mon, 30 Jan 2017 22:09:12 +0100
|
||||
Subject: [PATCH] Preventing the compilation of floating points with GCC when
|
||||
glibc is not in use
|
||||
|
||||
- Gathering the support of FPE in one place/several macros and using those in both
|
||||
execution_monitor.hpp and execution_monitor.ipp in a more coherent way
|
||||
- Updating the support of the floating point exceptions: fenableexcept/fdisableexcept are
|
||||
GLIBC extensions and the definition of FENV does not imply the existance of those functions
|
||||
|
||||
Fetch from:
|
||||
https://github.com/boostorg/test/commit/066e28ccecb4bad5c0477606a138591f1da1963e
|
||||
|
||||
[Adjust github patch to tarball release]
|
||||
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
|
||||
---
|
||||
boost/test/execution_monitor.hpp | 17 +++++++++++++++--
|
||||
boost/test/impl/execution_monitor.ipp | 21 +++++++--------------
|
||||
2 files changed, 22 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/boost/test/execution_monitor.hpp b/boost/test/execution_monitor.hpp
|
||||
index f53348a..12c5644 100644
|
||||
--- a/boost/test/execution_monitor.hpp
|
||||
+++ b/boost/test/execution_monitor.hpp
|
||||
@@ -66,6 +66,19 @@
|
||||
|
||||
#endif
|
||||
|
||||
+#if defined(BOOST_SEH_BASED_SIGNAL_HANDLING) && !defined(UNDER_CE)
|
||||
+ //! Indicates tha the floating point exception handling is supported
|
||||
+ //! through SEH
|
||||
+ #define BOOST_TEST_FPE_SUPPORT_WITH_SEH__
|
||||
+#elif !defined(BOOST_SEH_BASED_SIGNAL_HANDLING) && !defined(UNDER_CE)
|
||||
+ #if !defined(BOOST_NO_FENV_H) && !defined(BOOST_CLANG) && \
|
||||
+ (defined(__GLIBC__) && defined(__USE_GNU))
|
||||
+ //! Indicates that floating point exception handling is supported for the
|
||||
+ //! non SEH version of it, for the GLIBC extensions only
|
||||
+ #define BOOST_TEST_FPE_SUPPORT_WITH_GLIBC_EXTENSIONS__
|
||||
+ #endif
|
||||
+#endif
|
||||
+
|
||||
|
||||
// Additional macro documentations not being generated without this hack
|
||||
#ifdef BOOST_TEST_DOXYGEN_DOC__
|
||||
@@ -489,7 +502,7 @@ namespace fpe {
|
||||
enum masks {
|
||||
BOOST_FPE_OFF = 0,
|
||||
|
||||
-#ifdef BOOST_SEH_BASED_SIGNAL_HANDLING /* *** */
|
||||
+#if defined(BOOST_TEST_FPE_SUPPORT_WITH_SEH__) /* *** */
|
||||
BOOST_FPE_DIVBYZERO = EM_ZERODIVIDE,
|
||||
BOOST_FPE_INEXACT = EM_INEXACT,
|
||||
BOOST_FPE_INVALID = EM_INVALID,
|
||||
@@ -498,7 +511,7 @@ enum masks {
|
||||
|
||||
BOOST_FPE_ALL = MCW_EM,
|
||||
|
||||
-#elif defined(BOOST_NO_FENV_H) || defined(BOOST_CLANG) /* *** */
|
||||
+#elif !defined(BOOST_TEST_FPE_SUPPORT_WITH_GLIBC_EXTENSIONS__)/* *** */
|
||||
BOOST_FPE_ALL = BOOST_FPE_OFF,
|
||||
|
||||
#else /* *** */
|
||||
diff --git a/boost/test/impl/execution_monitor.ipp b/boost/test/impl/execution_monitor.ipp
|
||||
index 416004d..0c5690c 100644
|
||||
--- a/boost/test/impl/execution_monitor.ipp
|
||||
+++ b/boost/test/impl/execution_monitor.ipp
|
||||
@@ -1354,11 +1354,7 @@ unsigned
|
||||
enable( unsigned mask )
|
||||
{
|
||||
boost::ignore_unused(mask);
|
||||
-
|
||||
-#if defined(UNDER_CE)
|
||||
- /* Not Implemented in Windows CE */
|
||||
- return BOOST_FPE_OFF;
|
||||
-#elif defined(BOOST_SEH_BASED_SIGNAL_HANDLING)
|
||||
+#if defined(BOOST_TEST_FPE_SUPPORT_WITH_SEH__)
|
||||
_clearfp();
|
||||
|
||||
#if BOOST_WORKAROUND( BOOST_MSVC, <= 1310)
|
||||
@@ -1373,9 +1369,10 @@ enable( unsigned mask )
|
||||
if( ::_controlfp_s( 0, old_cw & ~mask, BOOST_FPE_ALL ) != 0 )
|
||||
return BOOST_FPE_INV;
|
||||
#endif
|
||||
-
|
||||
return ~old_cw & BOOST_FPE_ALL;
|
||||
-#elif defined(__GLIBC__) && defined(__USE_GNU)
|
||||
+
|
||||
+#elif defined(BOOST_TEST_FPE_SUPPORT_WITH_GLIBC_EXTENSIONS__)
|
||||
+ // same macro definition as in execution_monitor.hpp
|
||||
if (BOOST_FPE_ALL == BOOST_FPE_OFF)
|
||||
/* Not Implemented */
|
||||
return BOOST_FPE_OFF;
|
||||
@@ -1395,12 +1392,8 @@ disable( unsigned mask )
|
||||
{
|
||||
boost::ignore_unused(mask);
|
||||
|
||||
-#if defined(UNDER_CE)
|
||||
- /* Not Implemented in Windows CE */
|
||||
- return BOOST_FPE_INV;
|
||||
-#elif defined(BOOST_SEH_BASED_SIGNAL_HANDLING)
|
||||
+#if defined(BOOST_TEST_FPE_SUPPORT_WITH_SEH__)
|
||||
_clearfp();
|
||||
-
|
||||
#if BOOST_WORKAROUND( BOOST_MSVC, <= 1310)
|
||||
unsigned old_cw = ::_controlfp( 0, 0 );
|
||||
::_controlfp( old_cw | mask, BOOST_FPE_ALL );
|
||||
@@ -1413,9 +1406,9 @@ disable( unsigned mask )
|
||||
if( ::_controlfp_s( 0, old_cw | mask, BOOST_FPE_ALL ) != 0 )
|
||||
return BOOST_FPE_INV;
|
||||
#endif
|
||||
-
|
||||
return ~old_cw & BOOST_FPE_ALL;
|
||||
-#elif defined(__GLIBC__) && defined(__USE_GNU)
|
||||
+
|
||||
+#elif defined(BOOST_TEST_FPE_SUPPORT_WITH_GLIBC_EXTENSIONS__)
|
||||
if (BOOST_FPE_ALL == BOOST_FPE_OFF)
|
||||
/* Not Implemented */
|
||||
return BOOST_FPE_INV;
|
@ -1,2 +1,2 @@
|
||||
# From http://www.boost.org/users/history/version_1_63_0.html
|
||||
sha256 beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0 boost_1_63_0.tar.bz2
|
||||
# From http://www.boost.org/users/history/version_1_64_0.html
|
||||
sha256 7bcc5caace97baa948931d712ea5f37038dbb1c5d89b43ad4def4ed7cb683332 boost_1_64_0.tar.bz2
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BOOST_VERSION = 1.63.0
|
||||
BOOST_VERSION = 1.64.0
|
||||
BOOST_SOURCE = boost_$(subst .,_,$(BOOST_VERSION)).tar.bz2
|
||||
BOOST_SITE = http://downloads.sourceforge.net/project/boost/boost/$(BOOST_VERSION)
|
||||
BOOST_INSTALL_STAGING = YES
|
||||
|
Loading…
Reference in New Issue
Block a user