aboutsummaryrefslogtreecommitdiff
path: root/src/template/aix
blob: 7d6d580a26c7e6a9b2e7c02e87814f0bd16e09c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if test "$GCC" = yes ; then
  CFLAGS=-pipe
else # not GCC
  case $host_os in
    aix3.2.5)
      CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg'
      ;;
    aix4.1)
      CFLAGS='-qchars=signed -qmaxmem=8192 -qhalt=w -qsrcmsg -qcheck=divzero'
      ;;
    aix4.2 | aix4.3)
      CFLAGS='-qmaxmem=16384 -qhalt=w -qsrcmsg -qlanglvl=extended -qlonglong'
      ;;
  esac
fi # not GCC