Added AIX.

This commit is contained in:
mainzelm 2000-10-19 08:24:02 +00:00
parent 830f323166
commit a5dd906406
1 changed files with 13 additions and 0 deletions

View File

@ -181,6 +181,19 @@ AC_INIT(c/scheme48vm.c)
AR=${AR-"ar cq"}
TMPDIR=${TMPDIR-"/usr/tmp"}
case "$host" in
## IBM AIX
rs6000-ibm-aix*|powerpc-ibm-aix* )
dir=aix
LDFLAGS="-O"
if test ${CC} = gcc; then
LDFLAGS_AIX="-Xlinker -bexport:exportlist.aix"
else
LDFLAGS_AIX="-bexport:exportlist.aix"
fi
CFLAGS="-O"
AIX_P="exportlist.aix"
;;
## Linux
*-*-linux* )
dir=linux