qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	Wolfgang Mauerer <wolfgang.mauerer@siemens.com>,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 1/7] vhost build fix for i386
Date: Wed, 27 Jul 2011 10:17:26 +0100	[thread overview]
Message-ID: <1311758252-10072-2-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1311758252-10072-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Wolfgang Mauerer <wolfgang.mauerer@siemens.com>

vhost.c uses __sync_fetch_and_and(), which is only
available for -march=i486 and above (see
https://bugzilla.redhat.com/show_bug.cgi?id=624279).

Signed-off-by: Wolfgang Mauerer <wolfgang.mauerer@siemens.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 configure |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/configure b/configure
index 38e3724..9bfe917 100755
--- a/configure
+++ b/configure
@@ -2510,6 +2510,29 @@ if test "$trace_backend" = "dtrace"; then
 fi
 
 ##########################################
+# __sync_fetch_and_and requires at least -march=i486. Many toolchains
+# use i686 as default anyway, but for those that don't, an explicit
+# specification is necessary
+if test $vhost_net = "yes" && test $cpu = "i386"; then
+  cat > $TMPC << EOF
+int sfaa(unsigned *ptr)
+{
+  return __sync_fetch_and_and(ptr, 0);
+}
+
+int main(int argc, char **argv)
+{
+  int val = 42;
+  sfaa(&val);
+  return val;
+}
+EOF
+  if ! compile_prog "" "" ; then
+    CFLAGS+="-march=i486"
+  fi
+fi
+
+##########################################
 # End of CC checks
 # After here, no more $cc or $ld runs
 
-- 
1.7.5.4

  reply	other threads:[~2011-07-27  9:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-27  9:17 [Qemu-devel] [PULL 0/7] Trivial patches for June 25 to July 27 2011 Stefan Hajnoczi
2011-07-27  9:17 ` Stefan Hajnoczi [this message]
2011-07-27  9:17 ` [Qemu-devel] [PATCH 2/7] Makefile: Minor cscope fixups Stefan Hajnoczi
2011-07-27  9:17 ` [Qemu-devel] [PATCH 3/7] slirp: Fix unusual "comments" in unused code Stefan Hajnoczi
2011-07-27  9:17 ` [Qemu-devel] [PATCH 4/7] Makefile: fix out-of-tree builds Stefan Hajnoczi
2011-07-27 14:18   ` Alexandre Raymond
2011-07-27 14:57   ` Stefan Hajnoczi
2011-07-27  9:17 ` [Qemu-devel] [PATCH 5/7] qmp: fix efect -> effect typo in qmp-commands.hx Stefan Hajnoczi
2011-07-27  9:17 ` [Qemu-devel] [PATCH 6/7] Makefile: add missing deps on $(GENERATED_HEADERS) Stefan Hajnoczi
2011-07-27  9:17 ` [Qemu-devel] [PATCH 7/7] xen_mapcache: remove unused variable Stefan Hajnoczi

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=1311758252-10072-2-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wolfgang.mauerer@siemens.com \
    /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).