From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Mark Round <mark(at)markround(dot)com> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: Bug report on Solaris 8/x86 |
Date: | 2004-08-13 20:01:02 |
Message-ID: | 26500.1092427262@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Mark Round <mark(at)markround(dot)com> writes:
> I am trying to compile Postgres-8.0.0beta1 on Solaris 8/x86, using Sun's
> C compiler, and get the following error which told me to contact you :-
> "../../../../src/include/storage/s_lock.h", line 654: #error: PostgreSQL
> does not have native spinlock support on this platform. To continue the
> compilation, rerun configure using --disable-spinlocks. However,
> performance will be poor. Please report this to pgsql-bugs(at)postgresql(dot)org(dot)
Hmm. There does not seem to be any support for non-gcc Solaris/86 in
src/include/storage/s_lock.h. I am not sure why not, since we do have
a src/backend/port/tas/solaris_i386.s file, which should work as an
external implementation of TAS(). Perhaps it got lost in the recent
reorganization of the spinlock code. Can you test a suitable addition?
It probably doesn't need to be any more complicated than the entry
for old SunOS:
#if defined(sun3)
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;
#endif
but I'm unsure what's an appropriate #if to recognize Solaris/x86.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2004-08-13 20:03:10 | Re: typo in postgresql.conf |
Previous Message | Tom Lane | 2004-08-13 19:46:08 | Re: regression test failure on 8.0.0beta1 |