1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-24 14:22:24 +03:00
Files
postgres/src/template/osf
Peter Eisentraut dc0f5cb090 Determine CXXFLAGS after the C++ compiler was detected. Also honor
--enable-debug and environment variable override.
2000-10-31 18:16:20 +00:00

9 lines
110 B
Plaintext

if test "$GCC" = yes ; then
CFLAGS=
CCC=g++
else
CC="$CC -std"
CFLAGS='-O4 -Olimit 2000'
CCC=cxx
fi