This commit updates boost to version 1.76.0 There are no new libraries in this version More info about Boost 1.76.0 can be found at the usual place [1]. Note: This package update includes a fix merged to Boost.Fiber in [2] which did not make into this version but it will be present in the next one. For now, the patch is needed, but it will be removed in version 1.77.0 [1]: https://www.boost.org/users/history/version_1_76_0.html [2]: https://github.com/boostorg/fiber/pull/276 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
11 lines
554 B
Diff
11 lines
554 B
Diff
--- a/boost/fiber/detail/cpu_relax.hpp
|
|
+++ b/boost/fiber/detail/cpu_relax.hpp
|
|
@@ -47,7 +47,7 @@ namespace detail {
|
|
# else
|
|
# define cpu_relax() asm volatile ("nop" ::: "memory");
|
|
# endif
|
|
-#elif BOOST_ARCH_MIPS && (__mips_isa_rev > 1) && !defined(_MIPS_ARCH_OCTEONP)
|
|
+#elif BOOST_ARCH_MIPS && (((__mips_isa_rev > 1) && defined(__mips32)) || ((__mips_isa_rev > 2) && defined(__mips64)))
|
|
# define cpu_relax() asm volatile ("pause" ::: "memory");
|
|
#elif BOOST_ARCH_PPC
|
|
// http://code.metager.de/source/xref/gnu/glibc/sysdeps/powerpc/sys/platform/ppc.h
|