Bug#762656: marked as done (tbb fails to build on powerpc)

2014-11-03 Thread Debian Bug Tracking System
Your message dated Mon, 03 Nov 2014 22:05:22 + with message-id and subject line Bug#762656: fixed in tbb 4.2~20140122-4 has caused the Debian Bug report #762656, regarding tbb fails to build on powerpc to be marked as done. This means that you claim that the problem has been dealt with. If

Bug#762656: patch

2014-09-30 Thread Steven Capper
On 30 September 2014 11:04, Mathieu Malaterre wrote: > Control: tags -1 patch > > Here is a patch which solve the symptoms. The underlying bug is within > gcc internals where atomics operations are not implementation for > ppc32 targets. > Many thanks Mathieu, This looks good to me. I'm about to

Bug#762656: patch

2014-09-30 Thread Mathieu Malaterre
Control: tags -1 patch Here is a patch which solve the symptoms. The underlying bug is within gcc internals where atomics operations are not implementation for ppc32 targets. Description: Make the test suite compile on ppc32 where atomics implementation are missing The code simply check ppc32 vs

Bug#762656: Remove test using gcc missing functionality on ppc32

2014-09-25 Thread Mathieu Malaterre
As reported upstream ppc32 does not support those atomic operation natively and the software implementation is not present either (as of 4.9.1). Since the implementation is only needed to run a particular test of the test suite, it should be ok to simply remove compilation of this test. Comments

Bug#762656: Test case

2014-09-25 Thread Mathieu Malaterre
I have reduced the issue to the following. Simply compile it from a Debian/PowerPC based computer: $ cat t.c #include int main() { int64_t x = 0, y = 1; y = __sync_val_compare_and_swap(&x, x, y); return 0; } $ gcc t.c /tmp/ccAS9Llh.o: In function `main': t.c:(.text+0x64): undefined refere

Bug#762656:

2014-09-24 Thread Mathieu Malaterre
Seems like it was fixed already: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705495#25 -- To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Bug#762656: tbb fails to build on powerpc

2014-09-24 Thread Mathieu Malaterre
Package: tbb Version: 4.2~20140122-3 Severity: grave Something broke recently since tbb FTBFS on powerpc, but succeed on ppc64: https://buildd.debian.org/status/fetch.php?pkg=tbb&arch=powerpc&ver=4.2~20140122-3&stamp=1411249201 This is a regression since tbb (community) used to build and run fin