diff options
| author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-16 22:12:39 +0000 |
|---|---|---|
| committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-16 22:12:39 +0000 |
| commit | ef18c8839e85341cc63467f92c35f981858a6fe5 (patch) | |
| tree | e3de988cfd1a1cb528f5d91fd45e7cdc1cf346dd | |
| parent | ec36ba14748e140dda237ba22ad3135e360b0d9f (diff) | |
| download | focaccia-qemu-ef18c8839e85341cc63467f92c35f981858a6fe5.tar.gz focaccia-qemu-ef18c8839e85341cc63467f92c35f981858a6fe5.zip | |
Solaris x86_64 configure patch, by Ben Taylor.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3176 c046a42c-6fe2-441c-8c8c-71466251a162
| -rwxr-xr-x | configure | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure b/configure index 49bf8b6fcf..7b8ac31dcb 100755 --- a/configure +++ b/configure @@ -155,6 +155,12 @@ SunOS) install="ginstall" needs_libsunmath="no" solarisrev=`uname -r | cut -f2 -d.` + # have to select again, because `uname -m` returns i86pc + # even on an x86_64 box. + solariscpu=`isainfo -k` + if test "${solariscpu}" = "amd64" ; then + cpu="x86_64" + fi if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then if test "$solarisrev" -le 9 ; then if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then @@ -333,6 +339,16 @@ case $cpu in ;; esac +if [ "$solaris" = "yes" -a "$cpu" = "x86_64" ] ; then + CFLAGS="${CFLAGS} -m64" + OS_CFLAGS="${OS_CFLAGS} -m64" +fi + +if [ "$solaris" = "yes" -a "$cpu" = "i386" ] ; then + CFLAGS="${CFLAGS} -m32" + OS_CFLAGS="${OS_CFLAGS} -m32" +fi + if test x"$show_help" = x"yes" ; then cat << EOF |