Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used
Дата
Msg-id 15202.1323736986@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used  (Craig Ringer <ringerc@ringerc.id.au>)
Ответы Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used  (Craig Ringer <ringerc@ringerc.id.au>)
Список pgsql-bugs
Craig Ringer <ringerc@ringerc.id.au> writes:
> On 12/12/2011 5:09 PM, vbberdin@yahoo.com wrote:
>> arm-linux-gnueabi-gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith
>> -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv
>> -I../../../../src/include -D_GNU_SOURCE   -c -o xlog.o xlog.c
>> /tmp/cclQLJ69.s: Assembler messages:
>> /tmp/cclQLJ69.s:645: Error: selected processor does not support Thumb mode
>> `swpb r3,r3,[r0]'
>> /tmp/cclQLJ69.s:6821: Error: selected processor does not support Thumb mode
>> `swpb r2,r2,[r0]'

> Are you sure you're using the correct assembler?

> Try tweaking your PATH so that symlinked names for the ARM toolchain are
> all on your PATH before your host toolchain.

> If that's not the issue then its presumably an issue with Pg's configure
> script/Makefiles invoking the wrong tool in a cross-compile situation,
> because AFAIK there's no ARM asm code or ARM gcc intrinsics hidden away
> in Pg, and that'd be the only other way to get those kinds of errors.

No, you're mistaken about that: we do have inline assembly code in
s_lock.h, and this message does look to be complaining about that code,
because "swpb %0, %0, [%2]" is exactly what the TAS() macro generates
for ARM.

However, unless the OP is prepared to offer some other inline TAS
implementation that is portable to more flavors of ARM than this one is,
we're unlikely to change it.  --disable-spinlocks is exactly what you're
supposed to do if you don't have a supported processor, and his machine
evidently isn't, even if it calls itself an ARM.

It's also possible that his target processor actually can do swpb, but
he needs to use some other gcc flags to persuade gcc of that.

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used
Следующее
От: Craig Ringer
Дата:
Сообщение: Re: BUG #6331: Cross compile error/aborts. Works if '--disable-spinlock' is used