qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Ben Taylor <sol10x86@cox.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] Solaris x86_64 configure patch
Date: Sat, 15 Sep 2007 8:49:13 -0400	[thread overview]
Message-ID: <22833083.1189860553344.JavaMail.root@eastrmwml11> (raw)


By default, uname -i returns i86pc on i386 or x86_64 system.  This patch makes
it possible to for Solaris systems to get the right hardware type.

--- qemu.ORIG/configure 2007-08-24 21:37:51.000000000 -0400
+++ qemu/configure      2007-09-15 08:53:34.288345000 -0400
@@ -155,6 +155,12 @@
     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

             reply	other threads:[~2007-09-15 12:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-15 12:49 Ben Taylor [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-09-15 13:00 [Qemu-devel] Solaris x86_64 configure patch Ben Taylor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=22833083.1189860553344.JavaMail.root@eastrmwml11 \
    --to=sol10x86@cox.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).