From acc0cfa617d2614dc8c255e06cfb9d4ba48139ac Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Sat, 4 Oct 2014 17:19:47 +0100 Subject: [PATCH] Apparently there is some bug in gcc that makes it output too large sections Avoiding inlining this function works around the issue Gbp-Pq: Name no-inline-ppc-ftbfs.patch --- .../boost-lockfree/boost/atomic/detail/gcc-ppc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp b/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp index c05ac85..10edf7c 100644 --- a/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp +++ b/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp @@ -247,7 +247,7 @@ public: value_type & expected, value_type desired, memory_order success_order, - memory_order failure_order) volatile + memory_order failure_order) volatile __attribute__((noinline)) { int success; ppc_fence_before(success_order); -- 2.30.2