PostgreSQL v7.4 Release Candidate 1 compile errors

Started by Martín Marquésover 22 years ago4 messagesgeneral
Jump to latest
#1Martín Marqués
martin@bugs.unl.edu.ar

I tried compuiling RC1 and got this on make:

make[4]: Entering directory
`/space/home/martin/basura/postgresql-7.4RC1/src/backend/access/common'
/usr/bin/ld -r -o SUBSYS.o heaptuple.o indextuple.o indexvalid.o printtup.o
scankey.o tupdesc.o
/usr/bin/ld: Relocatable linking with relocations from format elf64-sparc
(heaptuple.o) to format elf32-sparc (SUBSYS.o) is not supported
make[4]: *** [SUBSYS.o] Error 1

Looks like I'm missing something in my instalation, but couldn't find out what
it was. Any ideas those of you working on 64 bit?

--
select 'mmarques' || '@' || 'unl.edu.ar' AS email;
-----------------------------------------------------------------
Martín Marqués | mmarques@unl.edu.ar
Programador, Administrador, DBA | Centro de Telemática
Universidad Nacional
del Litoral
-----------------------------------------------------------------

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Martín Marqués (#1)
Re: PostgreSQL v7.4 Release Candidate 1 compile errors

Martin Marques <martin@bugs.unl.edu.ar> writes:

I tried compuiling RC1 and got this on make:

On what platform?

regards, tom lane

#3Peter Eisentraut
peter_e@gmx.net
In reply to: Martín Marqués (#1)
Re: PostgreSQL v7.4 Release Candidate 1 compile errors

Martin Marques writes:

I tried compuiling RC1 and got this on make:

make[4]: Entering directory
`/space/home/martin/basura/postgresql-7.4RC1/src/backend/access/common'
/usr/bin/ld -r -o SUBSYS.o heaptuple.o indextuple.o indexvalid.o printtup.o
scankey.o tupdesc.o
/usr/bin/ld: Relocatable linking with relocations from format elf64-sparc
(heaptuple.o) to format elf32-sparc (SUBSYS.o) is not supported
make[4]: *** [SUBSYS.o] Error 1

Looks like I'm missing something in my instalation, but couldn't find out what
it was. Any ideas those of you working on 64 bit?

That's the same result I had. The machine doesn't have a 64-bit userland
and compiler tools. You need to run

sparc32 ./configure
sparc32 make
sparc32 make all

At least on Debian. I don't think we're in a position to support 64-bit
Sparcs on Linux at this point.

--
Peter Eisentraut peter_e@gmx.net

#4Martín Marqués
martin@bugs.unl.edu.ar
In reply to: Tom Lane (#2)
Re: PostgreSQL v7.4 Release Candidate 1 compile errors

El Jue 06 Nov 2003 00:39, Tom Lane escribió:

Martin Marques <martin@bugs.unl.edu.ar> writes:

I tried compuiling RC1 and got this on make:

On what platform?

Sorry, was in a hurry and forgot to put that info. :-(

SPARC Ultra5, trying to get it to compile at 64 bit.

--
08:23:02 up 15 days, 15:45, 5 users, load average: 0.29, 0.35, 0.29
-----------------------------------------------------------------
Martín Marqués | select 'mmarques' || '@' || 'unl.edu.ar'
Centro de Telematica | DBA, Programador, Administrador
Universidad Nacional
del Litoral
-----------------------------------------------------------------