1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Add support for Solaris x86_64 using Sun's compiler.

Pierre Girard
This commit is contained in:
Bruce Momjian
2005-12-30 21:43:41 +00:00
parent c876d965f5
commit 12af9cdff4
4 changed files with 49 additions and 6 deletions

View File

@ -17,8 +17,15 @@ case $host in
;;
i?86-*-solaris*)
if test "$GCC" != yes ; then
need_tas=yes
tas_file=solaris_i386.s
soarch=`isainfo`
if isainfo | grep amd64
then
need_tas=yes
tas_file=solaris_x86_64.s
else
need_tas=yes
tas_file=solaris_i386.s
fi
fi
;;
esac