From: Felipe Sateler Date: Sat, 4 Oct 2014 16:19:47 +0000 (+0100) Subject: Apparently there is some bug in gcc that makes it output too large sections X-Git-Tag: archive/raspbian/1%3.10.4+repack-1+rpi1^2^2^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=acc0cfa617d2614dc8c255e06cfb9d4ba48139ac;p=supercollider.git 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 --- 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);