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:
@ -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
|
||||
|
Reference in New Issue
Block a user