Thread: postgresql 8.0.0 make check fails

postgresql 8.0.0 make check fails

From
"Alexander Nolting"
Date:
Hello all,

i'm new to this list and I have some problems with the actual postgresql 8.
I'm decided to setup my new open-xchange box on debian sarge testing with
the postgresql 8.0.0 release. After configuring and make i wanted to check
the build and got the following error:

Running in noclean mode.  Mistakes will not be cleaned up.
The files belonging to this database system will be owned by user "alex".
This user must also own the server process.

The database cluster will be initialized with locale C.

creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data ... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/global
... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/pg_xlog
... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/pg_xlog/
archive_status ... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/pg_clog
... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/pg_subtr
ans ... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/base ...
ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/base/1
... ok
creating directory
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/pg_tblsp
c ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 1000
creating configuration files ... ok
creating template1 database in
/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data/base/1
... ok
initializing pg_shadow ... ok
enabling unlimited row size for system tables ... child process exited with
exit code 132
initdb: data directory
"/root/postgresql/postgresql-8.0.0/src/test/regress/./tmp_check/data" not
removed at user's request


I configured with standard options and with CFLAGS="-march=athlon -O3
-malign-double -funroll-loops -pipe -fomit-frame-pointer -msse
-mfpmath=sse,387". Both make give the same error. If anyone wonder about
-mfpmath..., i want to run additional software on the database.
My look to the make messages gives me another question i don't understand:
tsort says "input contains a loop" <-- This message is in german if you want
to have a look at the attached files. At the end of make it says "All of
PostgreSQL successfully made. Ready to install.". So i did as a normal user
the above $> make check . Anyone knows the error number 132 to interpret?

With regards
Alex

Attachment

Re: postgresql 8.0.0 make check fails

From
Peter Eisentraut
Date:
Alexander Nolting wrote:
> enabling unlimited row size for system tables ... child process
> exited with exit code 132

This means the process was aborted by the SIGILL signal, which means
that the executable is corrupted or there is a bug in the code or the
compiler.  Try to find the core file and get a backtrace.

--
Peter Eisentraut
http://developer.postgresql.org/~petere/