From: | Luis Amigo <lamigo(at)atc(dot)unican(dot)es> |
---|---|
To: | ADMIN <pgsql-admin(at)postgresql(dot)org> |
Subject: | installing 7.2b3 on IRIX 6.5.13 |
Date: | 2001-11-26 10:35:13 |
Message-ID: | 3C021AE1.DCB15AF4@bonito.atc.unican.es |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-hackers |
We needed to install 7.2b3 on Irix 6.5.13 with MIPSpro Compilers:
Version 7.30
when installing as we installed 7.1.3, it is with-template=irix5 adding
to irix5 these lines:
CC=cc
CFLAGS='-n32 -O2 -r12000'
LDFLAGS='-n32 -O2 -r12000'
where -o2:
Turns on extensive optimization. The
optimizations at
this level are generally conservative, in the
sense that
they are virtually always beneficial, provide
improvements commensurate to the compile time
spent to
achieve them, and avoid changes which affect such
things
as floating point accuracy.
-r12000 specifies the processor.
and -n32: Generates a (new) 32-bit object.
it is necessary to use cc because gcc gives assembler errors
When installing 7.2b3 we receive after gmake:
len = offsetof(PgStat_MsgTabpurge, m_tableid[msg.m_nentries])
must have a constant value
I think it's because definition in stddef.h is incompatible with usage
stdef.h:
#if defined(_COMPILER_VERSION) && (_COMPILER_VERSION >= 400)
#define offsetof(t, memb) ((size_t)__INTADDR__(&(((t
*)0)->memb)))
#else
#define offsetof(s, m) (size_t)(&(((s *)0)->m))
#endif
we managed to install forcing postgres to redefine offsetof, it is
removing #ifndef offsetof
after that it installed of course giving warning in all redefinition,
but it already works.
Hope it helps
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew G. Hammond | 2001-11-26 14:52:19 | Re: table permissions |
Previous Message | Andre Schubert | 2001-11-26 09:56:51 | Re: [Fwd: [Zope-dev] Authentication Problem with Postgres] |
From | Date | Subject | |
---|---|---|---|
Next Message | Sergio Pili | 2001-11-26 10:53:48 | Re: Change in rule behavior? |
Previous Message | Tatsuo Ishii | 2001-11-26 08:45:48 | Re: OCTET_LENGTH is wrong |