reassign 432654 libatomic-ops-dev
title 432654 Causes pulseaudio ftbs on powerpc
thanks
On Wed, Jul 11, 2007 at 09:40:21AM +0200, Gerfried Fuchs wrote:
> pulseaudio fails to build on powerpc. You can look up the build logs
> on [1], the last parts of the failure are:
>
> #v+
> {standard input}: Assembler messages:
> {standard input}:167: Error: syntax error; found `,' but expected `('
> {standard input}:167: Error: junk at end of line: `,9'
> #v-
>
> Not too sure how to fix it, hopefully you have an idea.
This seems to be either an issue with libatomic-ops or gcc. I'm not sure whose
at fault here..
I've narrowed it down to a minimal testcase, which fails to compile with -O2
but compiles without
-------------------------------
#include <atomic_ops.h>
int
main(int argc, char **argv) {
AO_t *value;
unsigned long i;
i = AO_load_full(value);
AO_load_full(value + i);
return 0;
}
-------------------------------
$ gcc -O2 test.c -o test
/tmp/ccLMHlPF.s: Assembler messages:
/tmp/ccLMHlPF.s:19: Error: syntax error; found `,' but expected `('
/tmp/ccLMHlPF.s:19: Error: junk at end of line: `,0'
$ gcc test.c -o test
$
Sjoerd
--
Murphy's Law is recursive. Washing your car to make it rain doesn't work.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]