mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
8 lines
220 B
Plaintext
8 lines
220 B
Plaintext
if test "$GCC" != yes ; then
|
|
CC="$CC -Xa" # relaxed ISO C mode
|
|
CFLAGS="-v -DSUNOS4_CC" # -v is like gcc -Wall
|
|
if test "$enable_debug" != yes; then
|
|
CFLAGS="$CFLAGS -O" # any optimization breaks debug
|
|
fi
|
|
fi
|