1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Move CXX platform-specific stuff into template files.

This commit is contained in:
Bruce Momjian
2002-07-07 20:28:25 +00:00
parent 712f69ece8
commit 4f4753832e
5 changed files with 16 additions and 14 deletions

View File

@@ -2,5 +2,5 @@ CFLAGS='-pipe'
case $host_cpu in
alpha*) CFLAGS="$CFLAGS -O";;
CXXFLAGS="$CXXFLAGS -O"
GCC_CXXFLAGS="-O"
esac

View File

@@ -6,3 +6,4 @@ else
CFLAGS='-O4 -Olimit 2000'
CCC=cxx
fi
VENDOR_CXXFLAGS='-O4 -Olimit 2000'

View File

@@ -3,3 +3,4 @@ if test "$GCC" = yes; then
else
CFLAGS='-O -K inline'
fi
VENDOR_CXXFLAGS="-O"