1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +03:00

Get Tru64/cc to compile. Need to add -ieee so that it doesn't choke on

0.0/0.0.  That option appears to affect the regression test result as well.
The compiler documentation doesn't recommend -O4 for universal use, so
let's stick to the conservative -O (== -O2) by default.
This commit is contained in:
Peter Eisentraut
2003-10-25 20:18:53 +00:00
parent 8e8816c777
commit e9cd1c771f
3 changed files with 1 additions and 300 deletions

View File

@ -1,6 +1,6 @@
if test "$GCC" != yes ; then
CC="$CC -std"
CFLAGS="-O4 -Olimit 2000"
CFLAGS="-O -ieee"
fi
THREAD_SUPPORT=yes