blob: 4a987da899761becdf8b22188fd9c88db0e64b02 (
plain)
1
2
3
4
5
6
7
8
9
10
|
if test "$GCC" = yes ; then
CFLAGS='-O2 -pipe'
else # not GCC
CFLAGS='-O2 -qmaxmem=16384 -qsrcmsg -qlonglong'
case $host_os in
aix3.2.5 | aix4.1*)
CFLAGS='-qmaxmem=16384 -qsrcmsg' ;;
esac
CCC=xlC
fi # not GCC
|