mirror of
https://github.com/postgres/postgres.git
synced 2026-02-19 02:29:10 -05:00
7 lines
219 B
Text
7 lines
219 B
Text
if test "$GCC" != yes ; then
|
|
CC="$CC -Xa" # relaxed ISO C mode
|
|
CFLAGS="-v -DSUNOS_CC" # -v is like gcc -Wall
|
|
if test "$enable_debug" != yes; then
|
|
CFLAGS="$CFLAGS -O" # any optimization breaks debug
|
|
fi
|
|
fi
|